/**
 * Landing Page Styles — Pixel-perfect clone of reference design
 *
 * @package CARE-INF
 * @since 1.0.0
 */

/* =============================================
   LANDING PAGE SPECIFIC STYLES
   ============================================= */

/* Container is defined in global.css */

/* =============================================
   MAIN HEADER - Dark Modern Design
   ============================================= */

/* Prevent body scroll when mobile menu is open */
body.menu-open {
	overflow: hidden;
}

.site-header {
	width: 100%;
	background: transparent;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	position: relative;
	z-index: 1000;
	backdrop-filter: blur(10px);
}

.site-header.sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	box-shadow: 0 8px 32px rgba(0,0,0,0.1);
	animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(20px);
	border-bottom-color: rgba(0,0,0,0.1);
}

.site-header.sticky .nav-menu > li > a {
	color: var(--care-inf-text-color);
}

.site-header.sticky .logo-name {
	color: var(--care-inf-primary);
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 75px;
	gap: 2.5rem;
	position: relative;
}

.site-header .container {
	padding-left: 0;
	padding-right: 0;
}

/* Logo Section */
.site-branding {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.logo-link {
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	transition: opacity 0.3s ease;
}

.logo-link:hover {
	opacity: 0.9;
	text-decoration: none;
}

.logo-wrapper {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0;
	line-height: 1;
}

.logo-icon-box {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, var(--care-inf-accent) 0%, var(--care-inf-accent-dark) 100%);
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.logo-icon-box::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
	transform: rotate(45deg);
	transition: all 0.6s ease;
}

.logo-link:hover .logo-icon-box {
	transform: scale(1.08) rotate(5deg);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.logo-link:hover .logo-icon-box::before {
	left: 100%;
	top: 100%;
}

.logo-icon {
	font-size: 1.5rem;
	color: var(--care-inf-text-color);
	font-weight: 700;
	display: block;
}

.logo-name {
	font-size: 1.625rem;
	font-weight: 700;
	color: var(--care-inf-primary);
	letter-spacing: -0.5px;
	line-height: 1;
	transition: all 0.3s ease;
}

.logo-link:hover .logo-name {
	color: var(--care-inf-accent);
	transform: translateX(2px);
}

.custom-logo-link img,
.site-branding img {
	max-height: 100px;
	width: auto;
	height: auto;
	display: block;
}

/* Navigation */
.main-navigation {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-menu {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 1.25rem;
	margin: 0;
	padding: 0;
	align-items: center;
}

.nav-menu li {
	position: relative;
	margin: 0;
}

.nav-menu > li > a {
	display: block;
	padding: 10px 16px;
	color: var(--care-inf-bg-color);
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	white-space: nowrap;
	letter-spacing: 0.3px;
	position: relative;
	border-radius: 6px;
}

.nav-menu > li > a::before {
	content: '';
	position: absolute;
	bottom: 6px;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--care-inf-accent), var(--care-inf-accent-dark));
	border-radius: 2px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu > li > a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(212, 175, 55, 0.08);
	border-radius: 6px;
	opacity: 0;
	transform: scale(0.95);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
}

.nav-menu > li > a:hover {
	color: var(--care-inf-accent);
	text-decoration: none;
	transform: translateY(-2px);
}

.nav-menu > li > a:hover::before {
	width: calc(100% - 32px);
	transform: translateX(-50%) scaleX(1);
}

.nav-menu > li > a:hover::after {
	opacity: 1;
	transform: scale(1);
}

.nav-menu > li.current-menu-item > a,
.nav-menu > li.current_page_parent > a {
	color: var(--care-inf-accent);
	font-weight: 600;
	background: rgba(212, 175, 55, 0.15);
}

.nav-menu > li.current-menu-item > a::before,
.nav-menu > li.current_page_parent > a::before {
	width: calc(100% - 32px);
	transform: translateX(-50%) scaleX(1);
}

/* Submenu: hidden by default, show only on hover (desktop) */
.nav-menu .sub-menu {
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	list-style: none;
	margin: 0;
	padding: 0.5rem 0;
	background: var(--care-inf-bg-color);
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	z-index: 1000;
}

.nav-menu > li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Dropdown indicator icon for items with submenu */
.nav-menu > li.menu-item-has-children > a {
	padding-right: 28px;
}

.nav-menu > li.menu-item-has-children::after {
	content: '';
	position: absolute;
	right: 10px;
	top: 50%;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	margin-top: -2px;
	opacity: 0.85;
	pointer-events: none;
	transition: transform 0.2s ease;
}

.nav-menu > li.menu-item-has-children::after {
	color: var(--care-inf-bg-color);
	border-top-color: currentColor;
}

.site-header.sticky .nav-menu > li.menu-item-has-children::after {
	color: var(--care-inf-text-color);
}

.nav-menu > li.menu-item-has-children:hover::after {
	transform: rotate(180deg);
}

.nav-menu .sub-menu li {
	width: 100%;
}

.nav-menu .sub-menu a {
	display: block;
	padding: 10px 20px;
	color: var(--care-inf-text-color);
	font-size: 0.9375rem;
	white-space: nowrap;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.nav-menu .sub-menu a:hover {
	background: rgba(26, 58, 95, 0.06);
	color: var(--care-inf-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	background: none;
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 6px;
	cursor: pointer;
	padding: 8px 12px;
	flex-direction: column;
	gap: 4px;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.menu-toggle:hover {
	border-color: var(--care-inf-primary);
	background: rgba(26, 58, 95, 0.05);
}

.menu-toggle.active {
	border-color: var(--care-inf-accent);
	background: rgba(212, 175, 55, 0.1);
}

.menu-icon {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 28px;
}

.menu-line {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--care-inf-text-color);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.menu-toggle:hover .menu-line,
.menu-toggle.active .menu-line {
	background: var(--care-inf-primary);
}

.menu-toggle.active .menu-line:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .menu-line:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active .menu-line:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Header Actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}

.btn-primary {
	background: linear-gradient(135deg, var(--care-inf-accent) 0%, var(--care-inf-accent-dark) 100%);
	color: var(--care-inf-bg-color);
	padding: 12px 24px;
	border-radius: 10px;
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
	position: relative;
	overflow: hidden;
	letter-spacing: 0.3px;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255,255,255,0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
	width: 300px;
	height: 300px;
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--care-inf-accent-dark) 0%, var(--care-inf-accent) 100%);
	color: var(--care-inf-bg-color);
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-primary:active {
	transform: translateY(0);
	box-shadow: 0 3px 10px rgba(212, 175, 55, 0.4);
}

.btn-signin {
	background: linear-gradient(135deg, var(--care-inf-accent) 0%, var(--care-inf-accent-dark) 100%);
	color: var(--care-inf-bg-color);
	padding: 12px 24px;
	border-radius: 10px;
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
	letter-spacing: 0.3px;
	font-family: "Public Sans", sans-serif;
	box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
	position: relative;
	overflow: hidden;
}

.btn-signin::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255,255,255,0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.btn-signin:hover::before {
	width: 300px;
	height: 300px;
}

.btn-signin:hover {
	background: linear-gradient(135deg, var(--care-inf-accent-dark) 0%, var(--care-inf-accent) 100%);
	border-color: transparent;
	color: var(--care-inf-bg-color);
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-signin:active {
	transform: translateY(0);
	box-shadow: 0 3px 10px rgba(212, 175, 55, 0.4);
}

.btn-signin:active {
	transform: translateY(0);
}

.btn-icon {
	background: linear-gradient(135deg, var(--care-inf-accent) 0%, var(--care-inf-accent-dark) 100%);
	color: var(--care-inf-bg-color);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
	padding: 0;
	position: relative;
	overflow: hidden;
}

.btn-icon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255,255,255,0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.btn-icon:hover::before {
	width: 200px;
	height: 200px;
}

.btn-icon:hover {
	background: linear-gradient(135deg, var(--care-inf-accent-dark) 0%, var(--care-inf-accent) 100%);
	transform: translateY(-2px) rotate(45deg) scale(1.05);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-icon:active {
	transform: translateY(0) rotate(45deg) scale(1);
	box-shadow: 0 3px 10px rgba(212, 175, 55, 0.4);
}

.btn-icon svg {
	width: 18px;
	height: 18px;
	stroke-width: 2.5;
	color: var(--care-inf-bg-color);
	stroke: var(--care-inf-bg-color);
}

/* =============================================
   RESPONSIVE HEADER STYLES
   ============================================= */

@media (max-width: 1024px) {
	.header-inner {
		min-height: 65px;
		gap: 1.5rem;
	}

	.nav-menu {
		gap: 1.5rem;
	}

	.nav-menu > li > a {
		font-size: 0.875rem;
		padding: 6px 0;
	}

	.logo-name {
		font-size: 1.25rem;
	}

	.logo-icon-box {
		width: 36px;
		height: 36px;
	}

	.logo-icon {
		font-size: 1.25rem;
	}

	.btn-primary {
		padding: 8px 16px;
		font-size: 0.8125rem;
	}

	.btn-icon {
		width: 36px;
		height: 36px;
	}

	.btn-icon svg {
		width: 16px;
		height: 16px;
	}
}

@media (max-width: 768px) {
	.header-inner {
		min-height: 60px;
		flex-wrap: wrap;
		gap: 0.75rem;
		padding: 0.75rem 0;
		width: 100%;
	}

	.container {
		padding: 0 20px;
		width: 100%;
		max-width: 100%;
	}

	.site-header .container {
		padding-left: 0;
		padding-right: 0;
	}

	.footer-main .container,
	.footer-bottom .container,
	section .container,
	[class*="section"] .container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.site-branding {
		order: 1;
		flex: 1;
		min-width: 0;
	}

	.main-navigation {
		order: 3;
		width: 100%;
		justify-content: flex-start;
		position: relative;
		margin-top: 0.5rem;
	}

	.header-actions {
		order: 2;
		display: flex;
		align-items: center;
		gap: 0.5rem;
		flex-shrink: 0;
	}

	.header-actions .btn-primary {
		display: none;
	}

	.header-actions .btn-signin {
		display: none;
	}

	.header-actions .btn-icon {
		display: none;
	}

	.main-navigation {
		order: 3;
		justify-content: flex-end;
	}

	.menu-toggle {
		display: flex;
		padding: 12px 16px;
		margin-left: auto;
		position: relative;
		z-index: 10000;
	}

	.nav-menu {
		display: none;
		flex-direction: column;
		width: 100%;
		background: var(--care-inf-bg-color);
		border-top: 1px solid rgba(0,0,0,0.1);
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		z-index: 999;
		box-shadow: 0 8px 24px rgba(0,0,0,0.15);
		padding: 0;
		margin: 0;
		gap: 0;
		overflow-y: auto;
		max-height: calc(100vh - 80px);
		box-sizing: border-box;
	}

	.nav-menu.active {
		display: flex;
	}


	.nav-menu li {
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.nav-menu > li {
		position: relative;
		overflow: hidden;
	}

	.nav-menu > li::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 0;
		background: linear-gradient(90deg, var(--care-inf-accent), transparent);
		transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		z-index: 0;
	}

	.nav-menu > li:hover::before,
	.nav-menu > li.current-menu-item::before,
	.nav-menu > li.current_page_parent::before {
		width: 4px;
	}

	.nav-menu > li > a {
		position: relative;
		display: flex;
		align-items: center;
		padding: 16px 20px;
		border-bottom: 1px solid rgba(0,0,0,0.08);
		color: var(--care-inf-text-color);
		font-size: 1rem;
		font-weight: 500;
		width: 100%;
		box-sizing: border-box;
		background: var(--care-inf-bg-color);
		margin: 0;
		text-decoration: none;
		transition: all 0.3s ease;
		-webkit-tap-highlight-color: transparent;
	}

	.nav-menu > li > a::before,
	.nav-menu > li > a::after {
		display: none;
	}

	.nav-menu > li > a::after {
		content: '';
		position: absolute;
		right: 20px;
		width: 6px;
		height: 6px;
		border-right: 2px solid var(--care-inf-primary);
		border-bottom: 2px solid var(--care-inf-primary);
		transform: rotate(-45deg) translateY(-50%);
		top: 50%;
		opacity: 0;
		transition: opacity 0.3s ease, transform 0.3s ease;
	}

	.nav-menu > li > a:hover,
	.nav-menu > li > a:focus,
	.nav-menu > li > a:active {
		background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
		color: var(--care-inf-accent);
		transform: translateX(-4px);
		padding-left: 28px;
		outline: none;
	}

	.nav-menu > li > a:hover::after,
	.nav-menu > li > a:focus::after {
		opacity: 1;
		transform: rotate(-45deg) translateY(-50%) translateX(2px);
	}

	.nav-menu > li.current-menu-item > a,
	.nav-menu > li.current_page_parent > a {
		background: linear-gradient(90deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.04) 100%);
		color: var(--care-inf-accent);
		font-weight: 600;
		padding-left: 28px;
	}

	.nav-menu > li.current-menu-item > a::after,
	.nav-menu > li.current_page_parent > a::after {
		opacity: 1;
	}

	.logo-wrapper {
		gap: 0.5rem;
	}

	.logo-name {
		font-size: 1rem;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 150px;
	}

	.logo-icon-box {
		width: 36px;
		height: 36px;
		flex-shrink: 0;
	}

	.logo-icon {
		font-size: 1.125rem;
	}

	.btn-primary {
		padding: 10px 16px;
		font-size: 0.8125rem;
		white-space: nowrap;
	}

	.btn-icon {
		width: 36px;
		height: 36px;
		flex-shrink: 0;
	}

	.btn-icon svg {
		width: 16px;
		height: 16px;
	}


	.hero-section {
		padding: 4rem 0;
		min-height: 400px;
	}

	.hero-title {
		font-size: 2.25rem;
		line-height: 1.3;
		margin-bottom: 1.25rem;
	}

	.hero-desc {
		font-size: 1.3rem;
		margin-bottom: 2rem;
	}

	.hero-buttons {
		flex-direction: column;
		gap: 0.75rem;
	}

	.hero-buttons .btn {
		width: 100%;
		min-width: auto;
	}

	.btn {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.hero-section {
		height: auto;
		min-height: 640px;
		padding: 1.5rem 0;
	}

	.hero-title {
		font-size: 1.35rem;
		line-height: 1.3;
		margin-bottom: 0.75rem;
	}

	.hero-desc {
		font-size: 0.9375rem;
		margin-bottom: 1.25rem;
		line-height: 1.5;
	}

	.hero-buttons {
		gap: 0.5rem;
	}

	.btn {
		padding: 12px 24px;
		font-size: 0.9375rem;
	}
	.header-inner {
		min-height: 56px;
		gap: 0.5rem;
		padding: 0.5rem 0;
	}

	.container {
		padding: 0 20px;
	}

	.site-header .container {
		padding-left: 0;
		padding-right: 0;
	}

	.footer-main .container,
	.footer-bottom .container,
	section .container,
	[class*="section"] .container,
	.hero-section .container,
	.heartbeat-section .container,
	.core-entities-section .container,
	.cta-bar-section .container,
	.cards-row-section .container,
	.membership-section .container,
	.news-section .container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.logo-name {
		font-size: 0.9375rem;
		max-width: 120px;
	}

	.logo-icon-box {
		width: 32px;
		height: 32px;
	}

	.logo-icon {
		font-size: 1rem;
	}

	.btn-primary {
		display: none;
	}

	.btn-icon {
		display: none;
	}

	.header-actions {
		gap: 0.375rem;
	}

	.menu-toggle {
		padding: 10px 14px;
	}

	.menu-icon {
		width: 26px;
		gap: 4px;
	}

	.menu-line {
		height: 3px;
	}

	.menu-toggle {
		padding: 10px 14px;
	}

	.menu-icon {
		width: 26px;
		gap: 4px;
	}

	.menu-line {
		height: 3px;
	}

	.nav-menu > li > a {
		padding: 16px 20px;
		font-size: 1rem;
		font-weight: 500;
		color: var(--care-inf-text-color);
		border-bottom: 1px solid rgba(0,0,0,0.08);
		background: var(--care-inf-bg-color);
	}

	.nav-menu > li > a:hover {
		background: rgba(212, 175, 55, 0.1);
		color: var(--care-inf-accent);
	}
}

/* Sticky header */
.site-header.sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	animation: slideDown 0.3s ease;
}

@keyframes slideDown {
	from { transform: translateY(-100%); }
	to { transform: translateY(0); }
}

/* =============================================
   HERO SECTION - Advancing Nursing Excellence
   ============================================= */

/* Hero Text Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(60px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-section {
	width: 100%;
	background: linear-gradient(135deg, var(--care-inf-primary) 0%, var(--care-inf-primary-dark) 60%);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: scroll;
	color: var(--care-inf-bg-color);
	position: relative;
	overflow: hidden;
	padding: 0;
	height: 820px;
	margin-top: -135px; /* -95px + mt-10 (2.5rem) extra */
	min-height: 820px;
	display: flex;
	align-items: center;
}

/* Hero Slider Styles */
.hero-slider {
	position: relative;
}

.hero-slider-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: visible;
	z-index: 1;
	will-change: transform, opacity;
}

.hero-slide.active {
	z-index: 2;
}

.hero-slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 0;
}

.hero-slide .hero-overlay {
	z-index: 1;
}

.hero-slide .container {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
}

/* Modern Slider Navigation Arrows */
.hero-slider-prev,
.hero-slider-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	color: var(--care-inf-bg-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.hero-slider-prev::before,
.hero-slider-next::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
	transition: all 0.6s ease;
}

.hero-slider-prev:hover::before,
.hero-slider-next:hover::before {
	width: 200%;
	height: 200%;
}

.hero-slider-prev {
	left: 40px;
}

.hero-slider-next {
	right: 40px;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
	border-color: rgba(255, 255, 255, 0.6);
	transform: translateY(-50%) scale(1.15);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hero-slider-prev:active,
.hero-slider-next:active {
	transform: translateY(-50%) scale(1.05);
}

.hero-slider-prev svg,
.hero-slider-next svg {
	width: 24px;
	height: 24px;
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
}

.hero-slider-prev:hover svg {
	transform: translateX(-2px);
}

.hero-slider-next:hover svg {
	transform: translateX(2px);
}

/* Modern Slider Dots */
.hero-slider-dots {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 0;
	position: relative;
	overflow: hidden;
}

.hero-slider-dot::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	transition: all 0.4s ease;
}

.hero-slider-dot.active {
	background: var(--care-inf-accent);
	border-color: var(--care-inf-accent);
	width: 36px;
	border-radius: 18px;
	box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.hero-slider-dot.active::before {
	width: 24px;
	height: 6px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.9);
}

.hero-slider-dot:hover {
	background: rgba(255, 255, 255, 0.5);
	border-color: rgba(255, 255, 255, 0.8);
	transform: scale(1.2);
}

.hero-slider-dot:hover::before {
	width: 6px;
	height: 6px;
}

/* Responsive Modern Slider Styles */
@media (max-width: 768px) {
	.hero-slider-prev,
	.hero-slider-next {
		width: 44px;
		height: 44px;
	}

	.hero-slider-prev {
		left: 20px;
	}

	.hero-slider-next {
		right: 20px;
	}

	.hero-slider-prev svg,
	.hero-slider-next svg {
		width: 20px;
		height: 20px;
	}

	.hero-slider-dots {
		bottom: 25px;
		gap: 8px;
		padding: 10px 16px;
	}

	.hero-slider-dot {
		width: 8px;
		height: 8px;
	}

	.hero-slider-dot.active {
		width: 28px;
	}
}

@media (max-width: 480px) {
	.hero-slider-prev,
	.hero-slider-next {
		width: 40px;
		height: 40px;
	}

	.hero-slider-prev {
		left: 15px;
	}

	.hero-slider-next {
		right: 15px;
	}

	.hero-slider-prev svg,
	.hero-slider-next svg {
		width: 18px;
		height: 18px;
	}

	.hero-slider-dots {
		bottom: 20px;
		gap: 6px;
		padding: 8px 12px;
	}

	.hero-slider-dot {
		width: 7px;
		height: 7px;
	}

	.hero-slider-dot.active {
		width: 24px;
	}
}

.hero-section[style*="background-image"] {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(26, 58, 95, 0.7) 0%, rgba(26, 58, 95, 0.6) 100%);
	z-index: 1;
}

.hero-section .container {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0;
}

.hero-content {
	max-width: 846px !important;
	padding: 0;
	width: 100%;
}

.hero-title {
	font-family: "Merriweather", serif;
	font-size: 60px;
	font-weight: 700;
	font-style: normal;
	line-height: 60px;
	color: rgb(255, 255, 255);
	margin-bottom: 1.5rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	letter-spacing: 0;
	white-space: normal;
	word-wrap: break-word;
	position: relative;
	padding-bottom: 0.75rem;
}

.hero-title .hero-word,
.hero-desc .hero-word {
	display: inline-block;
	animation: fadeInUp 0.8s ease-out both;
}

.hero-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 120px;
	height: 3px;
	background: var(--care-inf-accent);
	border-radius: 2px;
}

.hero-desc {
	font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 1.3rem !important;
	line-height: 1.7;
	margin-bottom: 2.5rem;
	color: rgba(255, 255, 255, 0.95);
	max-width: 600px;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-desc p {
	margin: 0;
	font-size: inherit; /* Inherit from .hero-desc (1.3rem), don't use global 17px */
}

.hero-buttons {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: stretch;
	animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons .btn {
	flex: 0 1 auto;
	min-width: 120px;
	max-width: 280px;
	font-size: 0.9375rem;
	padding: 12px 24px;
	white-space: normal;
	text-align: center;
	line-height: 2;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
	cursor: pointer;
	letter-spacing: 0.3px;
	font-family: "Public Sans", sans-serif;
	white-space: nowrap;
}

.hero-buttons .btn {
	white-space: normal;
}

.btn-primary-hero {
	background: linear-gradient(135deg, var(--care-inf-accent) 0%, var(--care-inf-accent-dark) 100%);
	color: var(--care-inf-bg-color);
	border-color: transparent;
	box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
	position: relative;
	overflow: hidden;
}

.btn-primary-hero::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255,255,255,0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary-hero:hover::before {
	width: 300px;
	height: 300px;
}

.btn-primary-hero:hover {
	background: linear-gradient(135deg, var(--care-inf-accent-dark) 0%, var(--care-inf-accent) 100%);
	border-color: transparent;
	color: var(--care-inf-bg-color);
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-primary-hero:active {
	transform: translateY(0);
	box-shadow: 0 3px 10px rgba(212, 175, 55, 0.4);
}

.btn-outline-hero {
	background: transparent;
	color: var(--care-inf-bg-color);
	border: 2px solid var(--care-inf-bg-color);
}

.btn-outline-hero:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--care-inf-bg-color);
	border-color: var(--care-inf-bg-color);
	text-decoration: none;
}

/* =============================================
   HEARTBEAT SECTION — Modern, brand-aligned
   ============================================= */

.heartbeat-section {
	padding: 5rem 0;
	background: linear-gradient(180deg, var(--care-inf-bg-light) 0%, var(--care-inf-bg-color) 100%);
	position: relative;
}

.heartbeat-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--care-inf-primary) 0%, var(--care-inf-accent) 100%);
}

.heartbeat-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 4rem;
	align-items: center;
}

.heartbeat-image {
	position: relative;
}

.heartbeat-image::after {
	content: "";
	position: absolute;
	bottom: -12px;
	right: -12px;
	width: 40%;
	height: 40%;
	border: 3px solid var(--care-inf-accent);
	border-radius: 0 0 12px 0;
	z-index: 0;
	pointer-events: none;
}

.heartbeat-image img,
.heartbeat-image .placeholder-img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 20px 50px rgba(26, 58, 95, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
}

.heartbeat-image img {
	display: block;
}

.placeholder-img {
	height: 280px;
	background: linear-gradient(135deg, var(--care-inf-border-color), var(--care-inf-border-color));
}

.placeholder-img.landscape {
	height: 360px;
}

.heartbeat-title {
	font-family: "Merriweather", serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--care-inf-primary);
	line-height: 1.25;
	margin: 0 0 1.5rem;
	padding-left: 1.25rem;
	border-left: 4px solid var(--care-inf-accent);
}

.heartbeat-lead {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--care-inf-text-color, var(--care-inf-text-color));
	margin: 0 0 1.25rem;
	letter-spacing: 0.01em;
}

.heartbeat-tagline {
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.6;
	color: var(--care-inf-primary);
	margin: 0;
	padding-top: 0.5rem;
	border-top: 1px solid var(--care-inf-border-color);
}

/* Keep global .section-title / .text-accent for other sections */
.section-title {
	font-family: "Merriweather", serif;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.text-accent {
	color: var(--care-inf-primary);
}

/* =============================================
   CORE ENTITIES SECTION — Contemporary modern
   ============================================= */

.entities-section {
	padding: 5.5rem 0 5.5rem;
	background: linear-gradient(90deg, transparent 50%, rgba(204, 167, 45, 0.06) 85%, rgba(204, 167, 45, 0.1) 100%), linear-gradient(180deg, rgba(26, 58, 95, 0.04) 0%, var(--care-inf-bg-light) 25%, var(--care-inf-bg-color) 50%, var(--care-inf-bg-light) 75%, rgba(26, 58, 95, 0.05) 100%);
	position: relative;
	overflow: hidden;
}

.entities-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 85% 60% at 50% 30%, rgba(26, 58, 95, 0.08), transparent 60%);
	pointer-events: none;
}

.entities-section .container {
	max-width: 1160px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
	position: relative;
	z-index: 1;
}

.entities-header {
	text-align: center;
	margin-bottom: 3.25rem;
}

.entities-label {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--care-inf-accent);
	margin-bottom: 0.625rem;
}

.entities-title {
	font-family: var(--care-inf-heading-font);
	font-size: 2rem;
	font-weight: 700;
	color: var(--care-inf-primary);
	margin: 0 0 0.5rem;
	line-height: 1.2;
	letter-spacing: -0.03em;
}

.entities-title::after {
	content: "";
	display: block;
	width: 56px;
	height: 4px;
	background: linear-gradient(90deg, var(--care-inf-primary), var(--care-inf-accent));
	border-radius: 3px;
	margin: 1rem auto 0;
}

.entities-subtitle {
	font-size: 1.0625rem;
	line-height: 1.5;
	color: var(--care-inf-text-light);
	margin: 1rem auto 0;
	max-width: 460px;
}

.entities-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}

.entity-block {
	position: relative;
	text-align: left;
	background: var(--care-inf-bg-color);
	border-radius: 20px;
	padding: 2.25rem 1.875rem;
	box-shadow: 0 4px 24px rgba(26, 58, 95, 0.06), 0 1px 4px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(26, 58, 95, 0.08);
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease;
	overflow: hidden;
}

.entity-block::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--care-inf-primary), var(--care-inf-accent));
	opacity: 0;
	transition: opacity 0.35s ease;
}

.entity-block:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 48px rgba(26, 58, 95, 0.1), 0 12px 24px rgba(0, 0, 0, 0.06);
	border-color: rgba(26, 58, 95, 0.12);
}

.entity-block:hover::before {
	opacity: 1;
}

.entity-block:not(:last-child)::after {
	display: none;
}

.entity-block-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

.entity-logo-wrap {
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin-left: 0;
	margin-right: auto;
	background: linear-gradient(145deg, rgba(26, 58, 95, 0.06), rgba(26, 58, 95, 0.02));
	border-radius: 16px;
	padding: 12px;
	transition: background 0.35s ease, transform 0.35s ease;
}

.entity-block:hover .entity-logo-wrap {
	background: linear-gradient(145deg, rgba(26, 58, 95, 0.1), rgba(26, 58, 95, 0.04));
	transform: scale(1.05);
}

.entity-logo-wrap img {
	max-height: 40px;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.entity-name {
	font-family: var(--care-inf-heading-font);
	font-size: 1.1875rem;
	font-weight: 700;
	color: var(--care-inf-primary);
	margin: 0 0 0.875rem;
	line-height: 1.3;
	letter-spacing: -0.02em;
	width: 100%;
}

.entity-desc {
	font-size: 0.9375rem;
	line-height: 1.75;
	color: var(--care-inf-text-color);
	margin: 0 0 1.5rem;
	flex-grow: 1;
	width: 100%;
	max-width: none;
	min-height: 8.25rem; /* Same height for all 3 cards (~200 chars) */
}

.entity-link {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.5rem;
	color: var(--care-inf-primary);
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.03em;
	padding: 0.5rem 1rem;
	border-radius: 10px;
	background: rgba(26, 58, 95, 0.06);
	border: 1px solid rgba(26, 58, 95, 0.12);
	transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, gap 0.25s ease, transform 0.25s ease;
}

.entity-link:hover {
	color: var(--care-inf-bg-color);
	background: var(--care-inf-primary);
	border-color: var(--care-inf-primary);
	gap: 0.65rem;
	transform: translateY(-1px);
}

.entity-link-arrow {
	display: inline-block;
	transition: transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
	font-size: 1em;
}

.entity-link:hover .entity-link-arrow {
	transform: translateX(4px);
}

.entity-link:focus {
	outline: 2px solid var(--care-inf-accent);
	outline-offset: 2px;
}

/* Legacy .link-arrow used elsewhere */
.link-arrow {
	color: var(--care-inf-primary);
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
}

.link-arrow:hover {
	color: var(--care-inf-secondary);
	text-decoration: underline;
}

/* =============================================
   CTA BAR — Modern, professional, user-friendly
   ============================================= */

.cta-bar {
	width: 100%;
	background: linear-gradient(135deg, var(--care-inf-primary) 0%, var(--care-inf-primary-dark) 100%);
	color: var(--care-inf-bg-color);
	padding: 3.5rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-how-it-works .cta-bar {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	min-height: 560px;
	display: flex;
	align-items: center;
	padding: 5.5rem 0;
	background: linear-gradient(128deg, rgba(16, 42, 74, 0.46) 0%, rgb(20 50 86 / 71%) 52%, rgb(26 58 95) 100%), url(../images/image11.png) center / cover no-repeat;
	background-attachment: fixed;
}

.page-how-it-works .cta-bar .container {
	position: relative;
	z-index: 1;
}

.page-how-it-works .cta-bar::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 24, 44, 0.08) 0%, rgba(8, 24, 44, 0.18) 100%);
	pointer-events: none;
}

.cta-bar::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent 20%, var(--care-inf-accent) 50%, transparent 80%);
	opacity: 0.9;
}

.cta-bar .container {
	max-width: 800px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
}

.cta-bar-inner {
	position: relative;
	z-index: 1;
}

.cta-heading {
	font-family: var(--care-inf-heading-font);
	font-size: 2rem;
	font-weight: 700;
	color: var(--care-inf-bg-color);
	line-height: 1.35;
	letter-spacing: -0.02em;
	margin: 0 0 1rem;
}

.cta-heading::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	background: var(--care-inf-accent);
	border-radius: 2px;
	margin: 1rem auto 0;
}

.cta-subtext {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
	max-width: 640px;
	margin: 0 auto;
}

/* =============================================
   LEAD THE PROFESSION + CARDS — One section, modern
   ============================================= */

.lead-profession-section {
	background: var(--care-inf-bg-color);
	padding: 0 0 4rem;
}

.lead-profession-intro {
	position: relative;
	background: linear-gradient(128deg, rgba(16, 42, 74, 0.84) 0%, rgba(20, 50, 86, 0.212) 52%, rgba(26, 58, 95, 0.212) 100%), url("../images/image11.png") center/cover no-repeat;
	padding: 3.5rem 0 3rem;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	overflow: hidden;
}

.lead-profession-intro::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.18), transparent 58%);
	pointer-events: none;
}

.lead-profession-intro .container {
	position: relative;
	z-index: 1;
	max-width: 780px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
}

.lead-profession-heading {
	font-family: var(--care-inf-heading-font);
	font-size: 2rem;
	font-weight: 700;
	color: var(--care-inf-bg-color);
	line-height: 1.35;
	letter-spacing: -0.02em;
	margin: 0 0 1rem;
}

.lead-profession-heading::after {
	content: "";
	display: block;
	width: 48px;
	height: 3px;
	background: linear-gradient(90deg, var(--care-inf-primary), var(--care-inf-accent));
	border-radius: 2px;
	margin: 1rem auto 1.25rem;
}

.lead-profession-desc {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
	margin: 0;
}

.lead-profession-cards-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
	padding-top: 3rem;
}

.lead-profession-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}

.lead-card {
	background: var(--care-inf-bg-color);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(26, 58, 95, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(26, 58, 95, 0.08);
	transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease;
	display: flex;
	flex-direction: column;
	position: relative;
}

.lead-card-accent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--care-inf-primary), var(--care-inf-accent));
	z-index: 1;
}

.lead-card-featured {
	border-color: rgba(204, 167, 45, 0.2);
	box-shadow: 0 12px 40px rgba(26, 58, 95, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.lead-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 28px 56px rgba(26, 58, 95, 0.12), 0 12px 24px rgba(0, 0, 0, 0.06);
	border-color: rgba(26, 58, 95, 0.12);
}

.lead-card-featured:hover {
	box-shadow: 0 32px 64px rgba(26, 58, 95, 0.14), 0 14px 28px rgba(0, 0, 0, 0.07);
}

.lead-card-image {
	width: 100%;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	position: relative;
}

.lead-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.lead-card:hover .lead-card-image img {
	transform: scale(1.08);
}

.lead-card-placeholder {
	width: 100%;
	height: 100%;
	min-height: 180px;
	background: linear-gradient(145deg, rgba(26, 58, 95, 0.06) 0%, rgba(26, 58, 95, 0.02) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.lead-card-placeholder-icon {
	font-size: 2.5rem;
	color: rgba(26, 58, 95, 0.12);
	line-height: 1;
}

.lead-card-body {
	padding: 1.75rem 1.5rem 1.75rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.lead-card-title {
	font-family: var(--care-inf-heading-font);
	font-size: 1.1875rem;
	font-weight: 700;
	margin: 0 0 0.75rem;
	line-height: 1.3;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--care-inf-border-color);
}

.lead-card-title a {
	color: var(--care-inf-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.lead-card-title a:hover {
	color: var(--care-inf-accent);
}

.lead-card-text {
	font-size: 0.9375rem;
	line-height: 1.72;
	color: var(--care-inf-text-color);
	margin: 0 0 1.25rem;
	flex-grow: 1;
}

.lead-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--care-inf-bg-color);
	background: linear-gradient(135deg, var(--care-inf-primary), var(--care-inf-primary-dark));
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	padding: 0.6rem 1.25rem;
	border-radius: 10px;
	transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 12px rgba(26, 58, 95, 0.2);
	align-self: flex-start;
}

.lead-card-link:hover {
	background: linear-gradient(135deg, var(--care-inf-accent-dark), var(--care-inf-accent));
	color: var(--care-inf-bg-color);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.lead-card-link-arrow {
	transition: transform 0.25s ease;
}

.lead-card-link:hover .lead-card-link-arrow {
	transform: translateX(4px);
}

/* =============================================
   CARDS SECTION — Modern professional grid
   ============================================= */

.cards-section {
	padding: 4rem 0;
	background: linear-gradient(180deg, #f8fafc 0%, #fff 12%, #fff 88%, #f8fafc 100%);
}

.cards-grid-section .container {
	max-width: 1200px;
}

/* Optional section header */
.cards-grid-header {
	text-align: center;
	margin-bottom: 2.75rem;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.cards-grid-title {
	font-family: var(--care-inf-heading-font);
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--care-inf-primary-dark);
	letter-spacing: -0.02em;
	line-height: 1.3;
	margin: 0 0 0.75rem;
}

.cards-grid-title::after {
	content: "";
	display: block;
	width: 48px;
	height: 3px;
	background: linear-gradient(90deg, var(--care-inf-accent), var(--care-inf-primary));
	border-radius: 2px;
	margin-top: 1rem;
}

.cards-grid-subtitle {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--care-inf-text-light);
	margin: 0;
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}

.card {
	background: var(--care-inf-bg-color);
	border-radius: 20px 20px 14px 14px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: block;
	text-decoration: none;
	position: relative;
	height: 0;
	padding-bottom: 133.33%; /* 4/3 aspect ratio - works in all grid rows */
}

.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Inner wrapper so overlay works on every card (all 6) */
.cards-grid-section .card-overlay .card-inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}

/* Overlay style: image full-bleed, text on gradient at bottom */
.cards-grid-section .card-overlay .card-images {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background: var(--care-inf-border-color);
	z-index: 0;
}

.cards-grid-section .card-overlay .card-images img,
.cards-grid-section .card-overlay .card-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.cards-grid-section .card-overlay .card-placeholder {
	min-height: 0;
}

.cards-grid-section .card-overlay:hover .card-images img {
	transform: scale(1.05);
}

.cards-grid-section .card-overlay .card-body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	padding: 2.25rem 1.5rem 1.5rem;
	background: linear-gradient(to top, rgb(0 0 0 / 79%) 0%, rgb(0 0 0) 40%, rgb(0 0 0 / 51%) 70%, #00000000 100%);
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.cards-grid-section .card-overlay .card-title {
	font-family: var(--care-inf-heading-font);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.3;
	margin: 0;
	color: #ffffff;
}

.cards-grid-section .card-overlay .card-text {
	font-size: 0.875rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cards-grid-section .card-overlay .card-link {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #ffffff;
	letter-spacing: 0.02em;
	margin-top: 0.25rem;
	transition: opacity 0.2s ease;
}

.cards-grid-section .card-overlay:hover .card-link {
	opacity: 0.9;
}

/* =============================================
   MEMBERSHIP SECTION — Full-width BG image, panel on right
   ============================================= */

.membership-section {
	position: relative;
	width: 100%;
	min-height: 680px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
	padding: 0;
	overflow: hidden;
}

.membership-bg-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(26, 58, 95, 0.35) 0%, rgba(26, 58, 95, 0.5) 45%, rgba(26, 58, 95, 0.88) 100%);
	z-index: 1;
}

.membership-wrap {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	min-height: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
}

.membership-panel {
	position: relative;
	width: 42%;
	min-width: 380px;
	min-height: 100%;
	background: transparent;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	color: #fff;
	padding: 3rem 2.5rem;
	border-radius: 0;
	box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
	border-left: 1px solid rgba(255, 255, 255, 0.25);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.membership-panel-accent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--care-inf-primary-dark), var(--care-inf-accent));
	z-index: 1;
}

.membership-panel-inner {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 420px;
	width: 100%;
}

.membership-icon {
	margin-bottom: 1.5rem;
	color: #fff;
}

.membership-icon svg {
	display: block;
	margin: 0 auto;
	width: 56px;
	height: 56px;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.membership-title {
	font-family: var(--care-inf-heading-font);
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	margin: 0;
	line-height: 1.25;
	letter-spacing: -0.03em;
}

.membership-title::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	background: linear-gradient(90deg, var(--care-inf-accent), rgba(255, 255, 255, 0.6));
	border-radius: 2px;
	margin: 1rem auto 1.5rem;
}

.membership-desc {
	font-size: 0.9375rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.95);
	margin: 0 0 1.75rem;
	letter-spacing: 0.01em;
}

.membership-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.8rem 1.85rem;
	background: transparent;
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 10px;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.membership-cta:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.6);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	text-decoration: none;
}

.membership-cta:focus-visible {
	outline: 2px solid var(--care-inf-accent);
	outline-offset: 3px;
}

/* =============================================
   NEWS SECTION — Modern
   ============================================= */

.news-section {
	padding: 4.5rem 0;
	background: linear-gradient(180deg, #fff 0%, #f8fafc 15%, #f8fafc 85%, #fff 100%);
}

.news-section .container {
	max-width: 1200px;
}

.news-heading {
	font-family: var(--care-inf-heading-font);
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--care-inf-primary-dark);
	letter-spacing: -0.02em;
	text-align: center;
	margin: 0 0 2.75rem;
	line-height: 1.3;
}

.news-heading::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	background: linear-gradient(90deg, var(--care-inf-accent), var(--care-inf-primary));
	border-radius: 2px;
	margin: 1rem auto 0;
}

.news-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 2rem;
	align-items: start;
}

.news-left {
	padding: 0;
}

.news-featured {
	display: flex;
	flex-direction: column;
	background: var(--care-inf-bg-color);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.news-featured:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.news-featured-img {
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--care-inf-border-color);
}

.news-featured-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.news-featured:hover .news-featured-img img {
	transform: scale(1.03);
}

.news-featured-body {
	padding: 1.75rem 1.5rem;
}

.news-featured-title {
	font-family: var(--care-inf-heading-font);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.35;
	margin: 0 0 0.75rem;
}

.news-featured-title a {
	color: var(--care-inf-primary-dark);
	text-decoration: none;
	transition: color 0.2s ease;
}

.news-featured-title a:hover {
	color: var(--care-inf-accent);
}

.news-featured-body .link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--care-inf-primary);
	letter-spacing: 0.02em;
	margin-top: 0.25rem;
}

.news-featured-body .link-arrow:hover {
	color: var(--care-inf-accent);
}

.news-featured-body .link-arrow::after {
	content: "→";
}

.news-featured-body p {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--care-inf-text-light);
	margin: 0 0 1rem;
}

.news-right {
	padding: 0;
}

.news-sidebar-block {
	background: var(--care-inf-bg-color);
	padding: 1.5rem 1.5rem 1.75rem;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.news-sidebar-heading {
	font-family: var(--care-inf-heading-font);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--care-inf-primary-dark);
	margin: 0 0 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 3px solid var(--care-inf-accent);
	letter-spacing: -0.01em;
}

.news-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.news-list li {
	padding: 0.85rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	margin: 0;
	transition: background 0.2s ease;
}

.news-list li:last-child {
	border-bottom: none;
}

.news-list li:hover {
	background: rgba(0, 0, 0, 0.02);
}

.news-list a {
	color: var(--care-inf-primary-dark);
	font-size: 0.9375rem;
	font-weight: 500;
	text-decoration: none;
	display: block;
	line-height: 1.45;
	transition: color 0.2s ease;
}

.news-list a:hover {
	color: var(--care-inf-accent);
}

.news-date {
	font-size: 0.8125rem;
	color: var(--care-inf-text-light);
	display: block;
	margin-top: 0.35rem;
}

.news-list-empty {
	font-size: 0.9375rem;
	color: var(--care-inf-text-light);
	margin: 0;
	padding: 0.5rem 0;
}

/* =============================================
   FOOTER - Modern Professional Design
   ============================================= */

.footer-main {
	width: 100%;
	background: linear-gradient(180deg, var(--care-inf-bg-color) 0%, var(--care-inf-bg-light) 100%);
	color: var(--care-inf-text-color);
	padding: 5rem 0 4rem;
	position: relative;
	border-top: 3px solid var(--care-inf-accent);
	box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

.footer-main::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="400"><text x="50%25" y="35%25" font-size="200" font-weight="300" fill="rgba(26, 58, 95, 0.03)" text-anchor="middle" dominant-baseline="middle" font-family="Merriweather, serif" opacity="0.5">CARE-INF</text></svg>');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	pointer-events: none;
	z-index: 0;
}

.footer-main::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--care-inf-accent), transparent);
	opacity: 0.3;
}

.footer-main .container {
	position: relative;
	z-index: 1;
}

.site-footer .footer-main .container,
.site-footer .footer-bottom .container {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 5px;
	box-sizing: border-box;
}

.footer-grid {
	display: grid;
	grid-template-columns: auto repeat(4, 1fr);
	gap: 4rem;
	align-items: start;
}

.footer-logo-col {
	display: flex;
	align-items: flex-start;
	padding-right: 2rem;
}

.footer-logo-wrapper {
	position: relative;
	transition: transform 0.3s ease;
}

.footer-logo-wrapper:hover {
	transform: translateY(-3px);
}

.footer-logo-seal {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--care-inf-primary) 0%, var(--care-inf-primary-dark) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(26, 58, 95, 0.25), 0 0 0 4px rgba(212, 175, 55, 0.1);
	border: 4px solid var(--care-inf-accent);
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo-seal::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
	transform: rotate(45deg);
	transition: all 0.6s ease;
}

.footer-logo-wrapper:hover .footer-logo-seal {
	box-shadow: 0 8px 30px rgba(26, 58, 95, 0.35), 0 0 0 6px rgba(212, 175, 55, 0.15);
	transform: scale(1.05);
}

.footer-logo-wrapper:hover .footer-logo-seal::before {
	left: 100%;
	top: 100%;
}

.footer-logo-icon {
	font-size: 2.75rem;
	color: var(--care-inf-bg-color);
	font-weight: 700;
	position: relative;
	z-index: 1;
}

.footer-logo-wrapper img {
	max-height: 110px;
	width: auto;
	display: block;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-col {
	display: flex;
	flex-direction: column;
}

.footer-heading {
	color: var(--care-inf-primary);
	font-family: "Merriweather", serif;
	font-size: 1.125rem;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0.5px;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.75rem;
}

.footer-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, var(--care-inf-accent), transparent);
	border-radius: 2px;
}

.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-col li {
	margin-bottom: 0.875rem;
	position: relative;
	padding-left: 0;
	transition: padding-left 0.3s ease;
}

.footer-col li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 2px;
	background: var(--care-inf-accent);
	transition: width 0.3s ease;
	border-radius: 1px;
}

.footer-col li:hover::before {
	width: 8px;
}

.footer-col li:hover {
	padding-left: 12px;
}

.footer-col a {
	color: var(--care-inf-text-color);
	text-decoration: none;
	font-size: 0.9375rem;
	font-weight: 400;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-block;
	line-height: 1.6;
}

.footer-col a:hover {
	color: var(--care-inf-primary-dark);
	text-decoration: none;
	transform: translateX(2px);
}

.footer-social-col {
	display: flex;
	flex-direction: column;
}

.footer-social-icons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
}

.footer-social {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(26, 58, 95, 0.05) 0%, rgba(26, 58, 95, 0.02) 100%);
	border: 2px solid var(--care-inf-primary);
	color: var(--care-inf-primary);
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
	margin: 0;
	padding: 0;
}

.footer-social::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: var(--care-inf-accent);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
	z-index: 0;
}

.footer-social:hover::before {
	width: 200px;
	height: 200px;
}

.footer-social:hover {
	background: var(--care-inf-accent);
	border-color: var(--care-inf-accent);
	color: var(--care-inf-bg-color);
	text-decoration: none;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.footer-social:active {
	transform: translateY(-1px) scale(1.02);
}

.footer-social svg {
	width: 20px;
	height: 20px;
	position: relative;
	top: 10px;
	z-index: 1;
	transition: transform 0.3s ease;
	display: block;
	margin: 0 auto;
}

.footer-social:hover svg {
	transform: scale(1.1);
}

.footer-bottom {
	width: 100%;
	background: linear-gradient(180deg, var(--care-inf-bg-light) 0%, var(--care-inf-bg-light) 100%);
	padding: 2rem 0;
	border-top: 1px solid rgba(0,0,0,0.08);
	position: relative;
}

.footer-bottom::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--care-inf-accent), transparent);
	opacity: 0.5;
}

.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.footer-copy {
	color: var(--care-inf-text-light);
	font-size: 0.875rem;
	margin: 0;
	font-weight: 500;
	letter-spacing: 0.2px;
}

.footer-legal {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.footer-legal a {
	color: var(--care-inf-text-light);
	font-size: 0.875rem;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.25rem 0;
	letter-spacing: 0.2px;
}

.footer-legal a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--care-inf-secondary);
	transition: width 0.3s ease;
}

.footer-legal a:hover {
	color: var(--care-inf-secondary);
	text-decoration: none;
}

.footer-legal a:hover::after {
	width: 100%;
}

/* =============================================
   FRONT PAGE OVERRIDES
   ============================================= */

.front-page {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0;
}

.site-main.front-page {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0;
}

.front-page .lead-profession-intro {
	background: linear-gradient(180deg, var(--care-inf-bg-light) 0%, var(--care-inf-bg-color) 100%);
	border-bottom: 1px solid var(--care-inf-border-color);
}

.front-page .lead-profession-intro::before {
	content: none;
}

.front-page .lead-profession-heading {
	color: var(--care-inf-primary);
}

.front-page .lead-profession-desc {
	color: var(--care-inf-text-color);
}

/* Full-width sections */
	.hero-section {
		height: 950px;
		min-height: 950px;
	}

	.hero-content {
		max-width: 100%;
	}

	.hero-desc {
		font-size: 1.3rem;
	}

	.hero-section,
	.heartbeat-section,
	.entities-section,
	.cta-bar,
	.cards-section,
	.membership-section,
.news-section {
	width: 100%;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
	.hero-section {
		height: auto;
		min-height: 680px;
		padding: 3rem 0;
	}

	.hero-section .container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.hero-title {
		font-size: 2.25rem;
		line-height: 1.25;
		margin-bottom: 1.25rem;
	}

	.hero-desc {
		font-size: 1.2rem;
		margin-bottom: 2rem;
	}

	.hero-grid,
	.heartbeat-grid {
		grid-template-columns: 1fr;
	}

	.membership-section {
		min-height: 520px;
		padding: 3rem 0;
		align-items: center;
		justify-content: center;
		background-attachment: scroll;
	}

	.membership-wrap {
		padding-left: 20px;
		padding-right: 20px;
		justify-content: center;
	}

	.membership-panel {
		width: 100%;
		min-width: 0;
		min-height: auto;
		border-radius: 16px;
	}

	.heartbeat-section {
		padding: 3.5rem 0;
	}

	.heartbeat-grid {
		gap: 2.5rem;
	}

	.heartbeat-image::after {
		display: none;
	}

	.hero-logo-area {
		display: none;
	}

	.cards-grid-section .cards-grid-header {
		margin-bottom: 2rem;
	}

	.cards-grid-title {
		font-size: 1.625rem;
	}

	.entities-grid,
	.cards-grid,
	.lead-profession-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.entity-block:not(:first-child)::after {
		display: none;
	}

	.news-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.news-heading {
		margin-bottom: 2rem;
	}

	.news-featured-body {
		padding: 1.5rem 1.25rem;
	}

	.news-sidebar-block {
		padding: 1.25rem 1.25rem 1.5rem;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.top-bar .container {
		flex-direction: column;
		height: auto;
		padding: 10px 20px;
		gap: 0.5rem;
	}

	.top-bar-content {
		flex-direction: column;
		gap: 0.75rem;
		width: 100%;
	}

	.top-nav-left {
		width: 100%;
	}

	.top-nav-left ul,
	.top-menu {
		flex-wrap: wrap;
		justify-content: center;
		gap: 1rem;
		font-size: 0.75rem;
	}

	.top-nav-right {
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
	}

	.header-inner {
		min-height: 70px;
		flex-wrap: wrap;
		gap: 1rem;
		padding: 0.75rem 0;
	}

	.site-branding {
		order: 1;
		flex: 1;
	}

	.main-navigation {
		order: 3;
		width: 100%;
		justify-content: flex-start;
		position: relative;
	}

	.header-actions {
		order: 2;
	}

	.menu-toggle {
		display: flex;
	}

	.nav-menu {
		display: none;
		flex-direction: column;
		width: 100%;
		background: var(--care-inf-bg-color);
		border-top: 1px solid rgba(0,0,0,0.08);
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 999;
		box-shadow: 0 8px 24px rgba(0,0,0,0.12);
		padding: 1rem 0;
		margin-top: 0;
	}

	.nav-menu.active {
		display: flex;
	}

	.nav-menu li {
		width: 100%;
	}

	.nav-menu > li > a {
		padding: 14px 20px;
		border-radius: 0;
		border-bottom: 1px solid rgba(0,0,0,0.05);
	}

	.nav-menu > li > a::before {
		display: none;
	}

	.nav-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		margin: 0;
		padding-left: 20px;
		background: rgba(0,0,0,0.02);
	}

	.search-text {
		display: none;
	}

	.search-close {
		right: 20px;
		top: 20px;
		transform: none;
	}

	.hero-section {
		min-height: 620px;
		padding: 2rem 0;
	}

	.hero-section .container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.hero-content {
		max-width: 100%;
	}

	.hero-title {
		font-size: 1.75rem;
		line-height: 1.3;
		margin-bottom: 1rem;
	}

	.hero-desc {
		font-size: 1.1rem;
		margin-bottom: 1.5rem;
	}

	.hero-buttons {
		flex-direction: column;
		gap: 0.75rem;
	}

	.hero-buttons .btn {
		width: 100%;
		min-width: auto;
	}

	.cards-section {
		padding: 3rem 0;
	}

	.cards-grid-section .cards-grid-header {
		margin-bottom: 1.75rem;
	}

	.cards-grid-title {
		font-size: 1.5rem;
	}

	.entities-grid,
	.cards-grid,
	.lead-profession-cards {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.entities-section {
		padding: 3.5rem 0 4rem;
	}

	.entities-header {
		margin-bottom: 2rem;
	}

	.entities-title::after {
		margin-top: 0.75rem;
	}

	.entities-subtitle {
		font-size: 0.9375rem;
		margin-top: 1rem;
	}

	.entity-block {
		padding: 1.75rem 1.5rem;
	}

	.entity-block:not(:last-child)::after {
		display: none;
	}

	.heartbeat-title,
	.entities-title,
	.cta-heading,
	.lead-profession-heading,
	.membership-title,
	.news-heading,
	.section-title {
		font-size: 1.5rem;
	}

	.lead-profession-intro {
		padding: 2.5rem 0 2rem;
	}

	.lead-profession-cards-wrap {
		padding-top: 2rem;
	}

	.lead-profession-cards {
		gap: 1.5rem;
	}

	.membership-panel {
		padding: 2.25rem 1.5rem;
		min-width: 0;
	}

	.footer-main {
		padding: 3rem 0 2.5rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.footer-logo-col {
		justify-content: center;
		align-items: center;
		margin-bottom: 1rem;
		padding-right: 0;
	}

	.footer-logo-seal {
		width: 75px;
		height: 75px;
	}

	.footer-logo-icon {
		font-size: 2.25rem;
	}

	.footer-heading {
		font-size: 1rem;
		margin-bottom: 1.25rem;
	}

	.footer-heading::after {
		width: 30px;
	}

	.footer-col a {
		font-size: 0.875rem;
	}

	.footer-social-icons {
		justify-content: center;
		gap: 0.875rem;
		align-items: center;
	}

	.footer-social {
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0;
		padding: 0;
	}

	.footer-social svg {
		width: 18px;
		height: 18px;
		display: block;
		margin: 0 auto;
	}

	.footer-bottom {
		padding: 1.5rem 0;
	}

	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.footer-legal {
		justify-content: center;
		gap: 1.25rem;
	}
}

@media (max-width: 1024px) {
	.footer-main {
		padding: 4rem 0 3rem;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem;
	}

	.footer-logo-col {
		grid-column: 1 / -1;
		justify-content: flex-start;
		margin-bottom: 1rem;
		padding-right: 0;
	}

	.footer-social-col {
		grid-column: 1 / -1;
	}
}

/* =============================================
   PAGE TEMPLATES — How It Works, Pricing, FAQ, Contact, etc.
   ============================================= */

/* Page hero: full width, -95px, height 750px, no slider. Per-page image set below. */
.page-hero {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-top: -135px; /* -95px + mt-10 (2.5rem) extra */
	height: 750px;
	min-height: 750px;
	display: flex;
	align-items: center;
	padding: 3rem 0;
	text-align: center;
	overflow: hidden;
	box-sizing: border-box;
	background: linear-gradient(135deg, var(--care-inf-primary) 0%, var(--care-inf-primary-dark) 60%);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url('https://images.unsplash.com/photo-1551076805-e1869033e561?w=2070&q=85&auto=format&fit=crop');
}

/* Per-page hero background images */
.page-how-it-works .page-hero {
	background-image: url('https://www.mua.edu/uploads/sites/10/2023/02/istock-482499394.webp?w=1200');
}

.page-how-it-works .page-hero::before {
	background: linear-gradient(135deg, rgba(26, 58, 95, 0.62) 0%, rgba(16, 42, 74, 0.68) 100%);
}
.page-pricing .page-hero {
	background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=2070&q=85&auto=format&fit=crop');
}
.page-contact .page-hero {
	background-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=2070&q=85&auto=format&fit=crop');
}
.page-faq .page-hero {
	background-image: url('https://images.unsplash.com/photo-1523240795612-9a05468b4b9c?w=2070&q=85&auto=format&fit=crop');
}
.page-partners .page-hero {
	background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=2070&q=85&auto=format&fit=crop');
}
.page-security-compliance .page-hero {
	background-image: url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?w=2070&q=85&auto=format&fit=crop');
}
.page-preceptor-program .page-hero {
	background-image: url('https://images.unsplash.com/photo-1559839734-2b71ea197ec2?w=2070&q=85&auto=format&fit=crop');
}

.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(26, 58, 95, 0.88) 0%, rgba(16, 42, 74, 0.92) 100%);
	z-index: 0;
}

.page-hero .container {
	position: relative;
	z-index: 1;
}

.page-hero-title {
	font-family: var(--care-inf-heading-font);
	font-size: 2rem;
	font-weight: 700;
	color: var(--care-inf-bg-color);
	margin: 0 0 0.75rem;
	letter-spacing: -0.02em;
}

.page-how-it-works .page-hero-title {
	font-family: "Merriweather", serif;
	font-style: normal;
	font-weight: 700;
	font-size: 60px;
	line-height: 60px;
	color: rgb(255, 255, 255);
}

.page-hero-desc {
	font-size: 1.125rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
	margin: 0;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.page-how-it-works .page-hero .hero-buttons {
	margin-top: 1rem;
	justify-content: center;
	align-items: center;
}

/* How It Works: Simple Process (modern) */
.page-how-it-works .how-steps {
	padding: 4rem 0 3.25rem;
	background: transparent;
	border-top: 1px solid rgba(26, 58, 95, 0.06);
	border-bottom: 1px solid rgba(26, 58, 95, 0.08);
}

.page-how-it-works .how-steps .section-title {
	margin-bottom: 2rem !important;
	color: var(--care-inf-primary-dark);
	font-size: clamp(2rem, 3.4vw, 2.75rem);
	letter-spacing: -0.03em;
	line-height: 1.08;
}

.page-how-it-works .how-steps-head {
	max-width: 780px;
	margin: 0 auto 2.25rem;
	text-align: center;
}

.page-how-it-works .how-steps-kicker {
	margin: 0 0 0.6rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--care-inf-accent-dark);
}

.page-how-it-works .how-steps-lead {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.72;
	color: var(--care-inf-text-light);
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

.page-how-it-works .how-steps-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.65rem;
	align-items: stretch;
}

.page-how-it-works .how-steps-grid .step-card {
	height: auto;
	padding-bottom: 0;
	background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
	border: 1px solid rgba(26, 58, 95, 0.14);
	border-radius: 20px;
	box-shadow: 0 12px 28px rgba(16, 42, 74, 0.09);
	position: relative;
	overflow: visible;
	isolation: isolate;
}

.page-how-it-works .how-steps-grid .step-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	border-radius: 20px 20px 0 0;
	background: linear-gradient(90deg, var(--care-inf-primary), var(--care-inf-accent));
}

.page-how-it-works .how-steps-grid .step-card::after {
	content: none;
}

.page-how-it-works .how-steps-grid .step-card:last-child::after {
	display: none;
}

.page-how-it-works .how-steps-grid .step-card .card-inner {
	position: static;
}

.page-how-it-works .how-steps-grid .step-card .card-body {
	padding: 1.55rem 1.55rem 1.4rem;
	display: flex;
	flex-direction: column;
	gap: 0.95rem;
}

.page-how-it-works .step-header {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
}

.page-how-it-works .step-badge {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--care-inf-heading-font);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1;
	color: #ffffff;
	background: linear-gradient(135deg, var(--care-inf-primary), var(--care-inf-primary-dark));
	box-shadow: 0 6px 16px rgba(26, 58, 95, 0.24);
	flex-shrink: 0;
}

.page-how-it-works .step-card-create .step-badge {
	background: linear-gradient(135deg, #1a3a5f, #2d5f95);
}

.page-how-it-works .step-card-verify .step-badge {
	background: linear-gradient(135deg, #0f7a89, #16a0b5);
}

.page-how-it-works .step-card-share .step-badge {
	background: linear-gradient(135deg, #8b6b12, #d4af37);
}

.page-how-it-works .step-title {
	margin: 0;
	font-family: var(--care-inf-heading-font);
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--care-inf-primary-dark);
	position: relative;
	padding-bottom: 0.58rem;
}

.page-how-it-works .step-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 72px;
	height: 2px;
	background: linear-gradient(90deg, rgba(26, 58, 95, 0.32), rgba(26, 58, 95, 0));
}

.page-how-it-works .step-text {
	margin: 0;
	font-size: 1rem;
	line-height: 1.68;
	color: var(--care-inf-text-color);
	flex-grow: 1;
}

.page-how-it-works .step-foot {
	margin-top: 0.15rem;
	padding-top: 0.72rem;
	border-top: 1px dashed rgba(26, 58, 95, 0.2);
	font-size: 0.79rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--care-inf-primary);
}

.page-how-it-works .how-steps-grid .step-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 24px 52px rgba(16, 42, 74, 0.16);
	border-color: rgba(26, 58, 95, 0.24);
}

/* How It Works: Roles (modern gradient section) */
.page-how-it-works .how-roles {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: 5.2rem 0 5rem;
	background: linear-gradient(90deg, transparent 50%, rgba(204, 167, 45, 0.06) 85%, rgba(204, 167, 45, 0.1) 100%), linear-gradient(180deg, rgba(26, 58, 95, 0.04) 0%, var(--care-inf-bg-light) 25%, var(--care-inf-bg-color) 50%, var(--care-inf-bg-light) 75%, rgba(26, 58, 95, 0.05) 100%);
	overflow: hidden;
	border-top: 1px solid rgba(26, 58, 95, 0.08);
	border-bottom: 1px solid rgba(26, 58, 95, 0.08);
}

.page-how-it-works .how-roles::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 85% 60% at 50% 30%, rgba(26, 58, 95, 0.075), transparent 60%);
	pointer-events: none;
}

.page-how-it-works .how-roles::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(120deg, rgba(26, 58, 95, 0.03) 0%, transparent 45%);
	pointer-events: none;
}

.page-how-it-works .how-roles .container {
	position: relative;
	z-index: 1;
}

.page-how-it-works .how-roles-head {
	text-align: center;
	max-width: 860px;
	margin: 0 auto 2.55rem;
}

.page-how-it-works .how-roles-kicker {
	margin: 0 0 0.6rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(140, 106, 20, 0.95);
}

.page-how-it-works .how-roles .section-title {
	margin: 0 0 0.85rem;
	font-size: clamp(2rem, 3.2vw, 2.6rem);
	letter-spacing: -0.03em;
	line-height: 1.08;
	color: var(--care-inf-primary-dark);
}

.page-how-it-works .how-roles-lead {
	margin: 0;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--care-inf-text-light);
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.page-how-it-works .how-roles-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.65rem;
	align-items: stretch;
}

.page-how-it-works .how-role-card {
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	border: 1px solid rgba(26, 58, 95, 0.14);
	border-radius: 20px;
	padding: 1.55rem 1.5rem 1.38rem;
	box-shadow: 0 12px 30px rgba(16, 42, 74, 0.12);
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	overflow: hidden;
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}

.page-how-it-works .how-role-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 3px;
	border-radius: 20px 20px 0 0;
	background: linear-gradient(90deg, rgba(26, 58, 95, 0.95), rgba(212, 175, 55, 0.95));
}

.page-how-it-works .how-role-card::after {
	content: "";
	position: absolute;
	right: -22px;
	top: -22px;
	width: 120px;
	height: 120px;
	background: radial-gradient(circle at center, rgba(26, 58, 95, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.page-how-it-works .role-card-head {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.page-how-it-works .role-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #f2f8ff, #e6f1fd);
	color: var(--care-inf-primary);
	border: 1px solid rgba(26, 58, 95, 0.18);
	flex-shrink: 0;
}

.page-how-it-works .role-icon svg {
	width: 23px;
	height: 23px;
	stroke-width: 1.9;
}

.page-how-it-works .role-title {
	margin: 0;
	font-family: var(--care-inf-heading-font);
	font-size: 1.78rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: var(--care-inf-primary-dark);
}

.page-how-it-works .role-subtitle {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--care-inf-primary);
}

.page-how-it-works .role-steps {
	list-style: none;
	margin: 0.1rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.58rem;
}

.page-how-it-works .role-steps li {
	position: relative;
	padding-left: 1.15rem;
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.58;
	color: var(--care-inf-text-color);
}

.page-how-it-works .role-steps li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--care-inf-accent);
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.page-how-it-works .how-role-card .btn {
	margin-top: 0.4rem;
	align-self: flex-start;
	padding: 0.72rem 1.24rem;
	border-radius: 10px;
	font-size: 0.92rem;
	font-weight: 600;
	background: linear-gradient(135deg, var(--care-inf-primary), var(--care-inf-primary-dark));
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(16, 42, 74, 0.18);
	border: 1px solid rgba(16, 42, 74, 0.12);
}

.page-how-it-works .how-role-card .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(16, 42, 74, 0.22);
	color: #ffffff;
}

.page-how-it-works .how-role-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 22px 48px rgba(16, 42, 74, 0.18);
	border-color: rgba(26, 58, 95, 0.22);
}

.page-how-it-works .role-health .btn {
	background: linear-gradient(135deg, #8c6a14, #d4af37);
}

.page-how-it-works .role-preceptor .btn {
	background: linear-gradient(135deg, #126a78, #1898ad);
}

.page-how-it-works .role-student .role-icon {
	background: linear-gradient(145deg, #eef6ff, #ddeafe);
}

.page-how-it-works .role-preceptor .role-icon {
	background: linear-gradient(145deg, #e9f7fa, #d8eef3);
}

.page-how-it-works .role-health .role-icon {
	background: linear-gradient(145deg, #fbf5e4, #f0e2b8);
}

/* How It Works */
.how-blocks { padding: 2rem 0 3rem; }
.how-block {
	max-width: 720px;
	margin: 0 auto 2.5rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--care-inf-border-color);
}

.how-block:last-of-type { border-bottom: 0; margin-bottom: 0; }
.how-block-title {
	font-family: var(--care-inf-heading-font);
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--care-inf-primary-dark);
	margin: 0 0 0.5rem;
}

.how-block-text {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--care-inf-text-color);
	margin: 0 0 1rem;
}

.how-block-cta {
	display: inline-block;
	font-weight: 600;
	color: var(--care-inf-primary);
	text-decoration: none;
}

.how-block-cta:hover { color: var(--care-inf-accent); }

.how-components { padding: 2rem 0 3.5rem; background: #f8fafc; }
.how-components .section-title {
	font-family: var(--care-inf-heading-font);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--care-inf-primary-dark);
	margin: 0 0 1.25rem;
	text-align: center;
}

.how-components-list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.how-components-list li {
	padding: 0.4rem 0;
	padding-left: 1.5rem;
	position: relative;
}

.how-components-list li::before {
	content: "•";
	color: var(--care-inf-accent);
	position: absolute;
	left: 0;
}

.how-compliance {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--care-inf-text-light);
	margin: 0;
	text-align: center;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

/* How It Works: Core Components (modern) */
.page-how-it-works .how-components {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: 4.7rem 0 4.2rem;
	background: linear-gradient(90deg, transparent 50%, rgba(204, 167, 45, 0.06) 85%, rgba(204, 167, 45, 0.1) 100%), linear-gradient(180deg, rgba(26, 58, 95, 0.04) 0%, var(--care-inf-bg-light) 25%, var(--care-inf-bg-color) 50%, var(--care-inf-bg-light) 75%, rgba(26, 58, 95, 0.05) 100%);
	border-top: 1px solid rgba(26, 58, 95, 0.08);
	border-bottom: 1px solid rgba(26, 58, 95, 0.08);
	overflow: hidden;
}

.page-how-it-works .how-components::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 55% at 20% 18%, rgba(26, 58, 95, 0.07), transparent 60%),
		radial-gradient(ellipse 65% 50% at 90% 82%, rgba(212, 175, 55, 0.08), transparent 65%);
	pointer-events: none;
}

.page-how-it-works .how-components .container {
	position: relative;
	z-index: 1;
}

.page-how-it-works .how-components-head {
	max-width: 860px;
	margin: 0 auto 2.45rem;
	text-align: center;
}

.page-how-it-works .how-components-kicker {
	margin: 0 0 0.6rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(140, 106, 20, 0.96);
}

.page-how-it-works .components-title {
	margin: 0 0 0.8rem;
	font-family: var(--care-inf-heading-font);
	font-weight: 700;
	font-size: clamp(2rem, 3vw, 2.55rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: var(--care-inf-primary-dark);
}

.page-how-it-works .how-components-lead {
	margin: 0;
	max-width: 740px;
	margin-left: auto;
	margin-right: auto;
	font-size: 1rem;
	line-height: 1.72;
	color: var(--care-inf-text-light);
}

.page-how-it-works .how-steps .section-title,
.page-how-it-works .how-roles .section-title,
.page-how-it-works .components-title,
.page-how-it-works .cta-heading {
	font-size: 40px;
	line-height: 1.15;
}

.page-how-it-works .how-components-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
	gap: 1.65rem;
	align-items: stretch;
}

.page-how-it-works .components-image-wrap {
	position: relative;
}

.page-how-it-works .components-image {
	position: relative;
	height: 100%;
	min-height: 430px;
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(26, 58, 95, 0.16);
	box-shadow: 0 16px 38px rgba(16, 42, 74, 0.16);
}

.page-how-it-works .components-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(10, 30, 54, 0.03) 0%, rgba(10, 30, 54, 0.38) 100%);
}

.page-how-it-works .components-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.page-how-it-works .components-image-badge {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(26, 58, 95, 0.16);
	box-shadow: 0 10px 20px rgba(16, 42, 74, 0.16);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--care-inf-primary-dark);
}

.page-how-it-works .components-content {
	position: relative;
	padding: 1.45rem;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid rgba(26, 58, 95, 0.16);
	border-radius: 22px;
	box-shadow: 0 15px 36px rgba(16, 42, 74, 0.12);
	overflow: hidden;
}

.page-how-it-works .components-content::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	border-radius: 22px 22px 0 0;
	background: linear-gradient(90deg, var(--care-inf-primary), var(--care-inf-accent));
}

.page-how-it-works .components-content::after {
	content: "";
	position: absolute;
	right: -36px;
	top: -34px;
	width: 150px;
	height: 150px;
	background: radial-gradient(circle at center, rgba(26, 58, 95, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.page-how-it-works .how-components-list {
	position: relative;
	z-index: 1;
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.78rem 0.8rem;
}

.page-how-it-works .how-components-list li {
	position: relative;
	margin: 0;
	padding: 0.74rem 0.8rem 0.74rem 1.9rem;
	border-radius: 12px;
	border: 1px solid rgba(26, 58, 95, 0.14);
	background: rgba(255, 255, 255, 0.92);
	font-size: 0.94rem;
	line-height: 1.5;
	color: var(--care-inf-text-color);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-how-it-works .how-components-list li::before {
	content: "";
	position: absolute;
	left: 0.82rem;
	top: 1.04rem;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--care-inf-accent);
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.page-how-it-works .how-components-list li:hover {
	transform: translateY(-2px);
	border-color: rgba(26, 58, 95, 0.24);
	box-shadow: 0 8px 16px rgba(16, 42, 74, 0.08);
}

.page-how-it-works .components-note {
	position: relative;
	z-index: 1;
	margin: 0.95rem 0 0;
	padding: 0.92rem 1rem;
	border-radius: 12px;
	border: 1px solid rgba(26, 58, 95, 0.2);
	background: linear-gradient(180deg, rgba(236, 243, 252, 0.95), rgba(245, 249, 254, 0.95));
	font-size: 0.91rem;
	line-height: 1.62;
	color: var(--care-inf-primary-dark);
}

/* Pricing */
.pricing-content { padding: 2rem 0 3.5rem; }
.pricing-tiers {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	max-width: 800px;
	margin: 0 auto;
}

.pricing-tier {
	background: var(--care-inf-bg-color);
	border: 1px solid var(--care-inf-border-color);
	border-radius: 12px;
	padding: 1.75rem;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.pricing-tier-title {
	font-family: var(--care-inf-heading-font);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--care-inf-primary-dark);
	margin: 0 0 0.75rem;
}

.pricing-tier-price { font-size: 1.75rem; font-weight: 700; color: var(--care-inf-primary); margin: 0 0 0.5rem; }
.pricing-tier-price span { font-size: 0.875rem; font-weight: 400; color: var(--care-inf-text-light); }
.pricing-tier-desc { font-size: 0.9375rem; line-height: 1.6; margin: 0 0 1.25rem; color: var(--care-inf-text-color); }
.pricing-tier .btn { margin-top: 0.5rem; }

/* Certified Preceptor, Security, Partners — block layout */
.preceptor-content, .security-content, .partners-content { padding: 2rem 0 3.5rem; }
.preceptor-blocks, .security-blocks, .partners-blocks {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.preceptor-block, .security-block, .partners-block {
	padding: 1.5rem;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px solid rgba(0,0,0,0.06);
}

.preceptor-block-title, .security-block-title, .partners-block-title {
	font-family: var(--care-inf-heading-font);
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--care-inf-primary-dark);
	margin: 0 0 0.5rem;
}

.preceptor-block p, .security-block p, .partners-block p { margin: 0; font-size: 0.9375rem; line-height: 1.6; color: var(--care-inf-text-color); }
.preceptor-cta-wrap, .security-cta-wrap, .partners-cta-wrap { text-align: center; margin: 0; }

/* FAQ */
.faq-content { padding: 2rem 0 3.5rem; }
.faq-list { max-width: 720px; margin: 0 auto 2rem; padding: 0; list-style: none; }
.faq-q {
	font-family: var(--care-inf-heading-font);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--care-inf-primary-dark);
	margin: 0;
	padding: 1rem 0 0.35rem;
	border-bottom: 1px solid var(--care-inf-border-color);
}

.faq-a {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--care-inf-text-color);
	margin: 0 0 0.5rem;
	padding-bottom: 1rem;
}

.faq-cta-wrap { text-align: center; margin: 0; }

/* Contact */
.contact-demo { padding: 2rem 0; background: #f8fafc; text-align: center; }
.contact-section-title { font-family: var(--care-inf-heading-font); font-size: 1.5rem; font-weight: 700; color: var(--care-inf-primary-dark); margin: 0 0 0.5rem; }
.contact-section-desc { font-size: 1rem; color: var(--care-inf-text-light); margin: 0 0 1rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.contact-cta-wrap { margin: 0; }
.contact-main { padding: 2rem 0 3.5rem; }
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: start;
	max-width: 900px;
	margin: 0 auto;
}

.contact-info .contact-section-title { text-align: left; }
.contact-methods { list-style: none; margin: 0.5rem 0 0; padding: 0; }
.contact-methods li { margin-bottom: 0.5rem; }
.contact-methods a { color: var(--care-inf-primary); }

/* Portal: Dashboard + Builder */
.ci-notice {
	padding: 0.95rem 1rem;
	border-radius: 10px;
	border: 1px solid rgba(26, 58, 95, 0.16);
	background: #f7fafd;
	color: var(--care-inf-text-color);
	margin-bottom: 1rem;
}

.ci-notice a {
	color: var(--care-inf-primary);
	font-weight: 600;
}

.ci-notice.ci-notice-success { background: #eefaf2; border-color: rgba(40, 167, 69, 0.3); }
.ci-notice.ci-notice-error { background: #fff1f1; border-color: rgba(220, 53, 69, 0.3); }
.ci-notice.ci-notice-warning { background: #fff8e7; border-color: rgba(212, 175, 55, 0.38); }
.ci-notice.ci-notice-info { background: #eef5ff; border-color: rgba(26, 58, 95, 0.28); }

.ci-m-0 { margin: 0; }

.ci-portal-dashboard {
	max-width: 95%;
	margin: 0 auto;
	padding: clamp(20px, 2vw, 30px);
}

@media (max-width: 1440px) {
	.ci-portal-dashboard {
		padding: 22px;
	}
}

@media (max-width: 1200px) {
	.ci-portal-dashboard {
		padding: 20px;
	}
}

@media (max-width: 992px) {
	.ci-portal-dashboard {
		padding: 18px;
	}
}

@media (max-width: 768px) {
	.ci-portal-dashboard {
		padding: 14px;
	}
}

@media (max-width: 480px) {
	.ci-portal-dashboard {
		padding: 10px;
	}
}

.ci-portal-page .site-main:not(.front-page) {
	max-width: none;
	margin: 0;
	padding: 0;
}

.ci-dashboard-app-page .site-main:not(.front-page) {
	min-height: 100vh;
	background:
		radial-gradient(circle at 10% 10%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 90% 90%, rgba(26, 58, 95, 0.06) 0%, transparent 50%),
		linear-gradient(180deg, #f8fafcff 0%, #f0f4f8 100%);
}

.ci-portal-page .entry-content {
	margin: 0;
}

.ci-portal-page:not(.ci-dashboard-app-page) .site-header {
	background: linear-gradient(135deg, #102846 0%, #1a3a5f 100%);
	border-bottom-color: rgba(255, 255, 255, 0.16);
	backdrop-filter: none;
}

.ci-portal-page:not(.ci-dashboard-app-page) .site-header.sticky {
	background: linear-gradient(135deg, #102846 0%, #1a3a5f 100%);
	border-bottom-color: rgba(255, 255, 255, 0.16);
	box-shadow: 0 10px 26px rgba(8, 24, 43, 0.34);
}

.ci-portal-page:not(.ci-dashboard-app-page) .nav-menu > li > a {
	color: #eef5ff;
}

.ci-portal-page:not(.ci-dashboard-app-page) .nav-menu > li.menu-item-has-children::after {
	color: #eef5ff;
}

.ci-portal-page:not(.ci-dashboard-app-page) .nav-menu > li > a:hover,
.ci-portal-page:not(.ci-dashboard-app-page) .nav-menu > li.current-menu-item > a,
.ci-portal-page:not(.ci-dashboard-app-page) .nav-menu > li.current_page_parent > a {
	color: #ffd877;
}

.ci-student-login-page .site-main:not(.front-page),
.ci-student-register-page .site-main:not(.front-page) {
	background-image:
		linear-gradient(135deg, rgba(12, 33, 58, 0.72) 0%, rgba(19, 52, 89, 0.58) 100%),
		url("https://dm3omg1n1n7zx.cloudfront.net/rcni/static/journals/nm/aop/nm.2021.e2016/tile/nm.2021.e2016_abs.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 100vh;
	height: auto;
	margin-top: -98px;
	padding: clamp(1rem, 2.4vw, 2rem) 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ci-student-login-page .entry-content,
.ci-student-register-page .entry-content {
	width: 100%;
	padding-top: 100px;
}

.ci-student-login-page .ci-auth-wrap,
.ci-student-register-page .ci-auth-wrap {
	padding: 30px;
	width: 100%;
}

.ci-dashboard-app-page .site-header {
	display: none;
}

.ci-dashboard-shell {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	grid-template-rows: auto 1fr;
	gap: clamp(20px, 2.5vw, 32px);
	align-items: start;
	max-width: 100%;
	width: 100%;
	margin: 0;
	padding: clamp(20px, 3vw, 40px) clamp(20px, 3vw, 40px) clamp(20px, 3vw, 40px) clamp(20px, 3vw, 40px);
	border: none;
	border-radius: 0;
	background: linear-gradient(180deg, #f8fafcff 0%, #f0f4f8 100%);
	box-shadow: none;
	min-height: 100vh;
}

/* Top Header Bar with Profile */
.ci-dashboard-top-header {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.25rem 1.75rem;
	background: linear-gradient(135deg, #ffffff 0%, #fafcff 100%);
	border: 1px solid rgba(26, 58, 95, 0.08);
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(16, 42, 74, 0.06), 0 1px 4px rgba(16, 42, 74, 0.04);
	margin-bottom: 0;
}

.ci-top-header-left {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.ci-dashboard-page-title {
	margin: 0;
	font-size: clamp(1.5rem, 2.5vw, 1.9rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--care-inf-primary-dark);
	line-height: 1.2;
}

.ci-dashboard-page-subtitle {
	margin: 0;
	font-size: 0.9rem;
	color: rgba(26, 58, 95, 0.6);
	font-weight: 500;
}

.ci-top-header-right {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.ci-user-profile-widget {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.65rem 1rem;
	background: linear-gradient(135deg, #f8fbff 0%, #f0f6ff 100%);
	border: 1px solid rgba(26, 58, 95, 0.1);
	border-radius: 50px;
	box-shadow: 0 2px 12px rgba(16, 42, 74, 0.06);
	transition: all 0.3s ease;
}

.ci-user-profile-widget:hover {
	box-shadow: 0 6px 20px rgba(16, 42, 74, 0.12);
	border-color: rgba(26, 58, 95, 0.15);
}

.ci-user-avatar {
	position: relative;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid rgba(212, 175, 55, 0.3);
	box-shadow: 0 4px 12px rgba(16, 42, 74, 0.15);
	background: linear-gradient(135deg, #d4af37 0%, #f0d98f 100%);
}

.ci-user-avatar img,
.ci-user-avatar .ci-avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ci-user-info {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.ci-user-name {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--care-inf-primary-dark);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ci-user-email {
	font-size: 0.8rem;
	color: rgba(26, 58, 95, 0.6);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ci-logout-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(196, 30, 58, 0.08);
	color: #c41e3a;
	border: 1px solid rgba(196, 30, 58, 0.2);
	transition: all 0.3s ease;
	cursor: pointer;
	text-decoration: none;
}

.ci-logout-btn:hover {
	background: #c41e3a;
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
	transform: scale(1.05);
}

.ci-logout-btn svg {
	width: 18px;
	height: 18px;
}

@media (max-width: 768px) {
	.ci-dashboard-top-header {
		flex-direction: column;
		align-items: flex-start;
		padding: 1rem 1.25rem;
	}
	
	.ci-top-header-left {
		width: 100%;
	}
	
	.ci-top-header-right {
		width: 100%;
		justify-content: flex-end;
	}
	
	.ci-user-info {
		max-width: 200px;
	}
}

.ci-dashboard-sidebar {
	position: sticky;
	top: 20px;
	padding: 1.5rem 1.25rem;
	border: 1px solid rgba(26, 58, 95, 0.1);
	border-radius: 20px;
	background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
	box-shadow: 0 4px 20px rgba(16, 42, 74, 0.08), 0 1px 4px rgba(16, 42, 74, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: thin;
	scrollbar-color: rgba(26, 58, 95, 0.2) transparent;
}

.ci-dashboard-sidebar::-webkit-scrollbar {
	width: 6px;
}

.ci-dashboard-sidebar::-webkit-scrollbar-track {
	background: transparent;
	border-radius: 10px;
}

.ci-dashboard-sidebar::-webkit-scrollbar-thumb {
	background: rgba(26, 58, 95, 0.2);
	border-radius: 10px;
	transition: background 0.2s ease;
}

.ci-dashboard-sidebar::-webkit-scrollbar-thumb:hover {
	background: rgba(26, 58, 95, 0.35);
}

.admin-bar .ci-dashboard-sidebar {
	top: 52px;
	max-height: calc(100vh - 80px);
}

.ci-dashboard-brand {
	margin: 0 0 1rem;
	padding: 0 0 1rem;
	border-bottom: 2px solid rgba(26, 58, 95, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
}

.ci-dashboard-brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.ci-dashboard-brand .custom-logo {
	width: auto;
	max-width: 160px;
	max-height: 64px;
	height: auto;
	display: block;
}

.ci-dashboard-brand-fallback {
	display: inline-flex;
	align-items: center;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	color: var(--care-inf-primary-dark);
	text-decoration: none;
}

.ci-dashboard-sidebar-kicker {
	margin: 0 0 0.85rem;
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(26, 58, 95, 0.5);
	text-align: center;
	padding: 0.5rem 0;
}

.ci-dashboard-nav {
	display: grid;
	gap: 0.65rem;
}

.ci-dashboard-nav-link {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.85rem 1.1rem;
	border-radius: 14px;
	text-decoration: none;
	color: var(--care-inf-primary-dark);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.4;
	border: 1px solid transparent;
	background: transparent;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ci-dashboard-nav-link::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 0;
	background: linear-gradient(180deg, var(--care-inf-accent) 0%, var(--care-inf-primary) 100%);
	border-radius: 0 3px 3px 0;
	transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ci-dashboard-nav-link:hover {
	transform: translateX(4px);
	background: linear-gradient(135deg, #f8fbff 0%, #f0f6ff 100%);
	border-color: rgba(26, 58, 95, 0.08);
	box-shadow: 0 2px 12px rgba(16, 42, 74, 0.06);
	color: var(--care-inf-primary);
}

.ci-dashboard-nav-link:hover::before {
	height: 60%;
}

.ci-dashboard-nav-link.is-active {
	background: linear-gradient(135deg, #e8f2ff 0%, #dae8fc 100%);
	border-color: rgba(26, 58, 95, 0.12);
	box-shadow: 0 4px 16px rgba(16, 42, 74, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
	color: var(--care-inf-primary);
	font-weight: 700;
}

.ci-dashboard-nav-link.is-active::before {
	height: 75%;
}

.ci-dashboard-content {
	min-width: 0;
	padding: 0;
	display: grid;
	gap: 1.5rem;
	min-height: 100%;
	width: 100%;
}

.ci-dashboard-section {
	scroll-margin-top: 110px;
}

.ci-pane-block.is-hidden {
	display: none !important;
}

.ci-dashboard-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.ci-dash-info h2 {
	margin: 0 0 0.45rem;
	font-size: clamp(1.6rem, 2.4vw, 2.05rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--care-inf-primary-dark);
}

.ci-dash-actions {
	display: inline-flex;
	gap: 0.65rem;
	flex-wrap: wrap;
}

.ci-progress-block {
	margin: 0;
	padding: 1rem 1.25rem;
	border: 1px solid rgba(26, 58, 95, 0.08);
	border-radius: 16px;
	background: linear-gradient(135deg, #ffffff 0%, #fafcff 100%);
	box-shadow: 0 6px 24px rgba(16, 42, 74, 0.05), 0 2px 8px rgba(16, 42, 74, 0.03);
}

.ci-dashboard-hero {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1.4fr 0.6fr;
	gap: 1.5rem;
	margin: 20px 0;
	padding: clamp(1.5rem, 2.5vw, 2rem);
	min-height: 260px;
	border: 1px solid rgba(26, 58, 95, 0.08);
	border-radius: 20px;
	background:
		radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.15), transparent 50%),
		radial-gradient(circle at 0% 100%, rgba(26, 58, 95, 0.05), transparent 50%),
		linear-gradient(135deg, #ffffff 0%, #f6f9ff 60%, #eef5ff 100%);
	color: var(--care-inf-primary-dark);
	box-shadow: 0 12px 40px rgba(16, 42, 74, 0.08), 0 4px 12px rgba(16, 42, 74, 0.04);
}

.ci-dashboard-hero::after {
	content: "";
	position: absolute;
	left: -14%;
	bottom: -28%;
	width: 68%;
	height: 84%;
	background: radial-gradient(circle, rgba(26, 58, 95, 0.08), rgba(26, 58, 95, 0) 72%);
	pointer-events: none;
}

.ci-dashboard-hero-main {
	position: relative;
	z-index: 1;
}

.ci-dashboard-hero-main h3 {
	margin: 0 0 0.45rem;
	font-size: clamp(1.45rem, 2.45vw, 2.1rem);
	line-height: 2;
	letter-spacing: -0.02em;
	color: var(--care-inf-primary-dark);
}

.ci-dashboard-hero-main p {
	margin: 0;
	max-width: 58ch;
	color: var(--care-inf-text-light);
	font-size: 0.95rem;
	line-height: 1.65;
}

.ci-hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0 0 0.5rem;
	padding: 0.26rem 0.58rem;
	border-radius: 999px;
	border: 1px solid rgba(26, 58, 95, 0.18);
	background: rgba(26, 58, 95, 0.06);
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 700;
	color: var(--care-inf-primary-dark);
}

.ci-hero-kicker::before {
	content: "";
	width: 0.42rem;
	height: 0.42rem;
	border-radius: 50%;
	background: #d4af37;
	box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.ci-hero-actions {
	margin-top: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.ci-hero-actions .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 48px;
	min-width: 180px;
	padding: 0.75rem 1.25rem;
	font-size: 0.9rem;
	font-weight: 700;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ci-hero-actions .btn:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ci-hero-actions .ci-update-profile-btn {
	background: linear-gradient(135deg, #d4af37 0%, #b7891f 100%);
	border-color: transparent;
	color: #102a4a;
	font-weight: 700;
	box-shadow: 0 7px 16px rgba(183, 137, 31, 0.35);
}

.ci-hero-actions .ci-update-profile-btn:hover {
	background: linear-gradient(135deg, #b7891f 0%, #d4af37 100%);
	color: #102a4a;
	transform: translateY(-1px);
	box-shadow: 0 9px 20px rgba(183, 137, 31, 0.42);
}

.ci-dashboard-hero .btn-outline-white {
	background: #ffffff;
	color: var(--care-inf-primary-dark);
	border-color: rgba(26, 58, 95, 0.24);
	backdrop-filter: none;
}

.ci-dashboard-hero .btn-outline-white:hover {
	background: #f3f8ff;
	border-color: rgba(26, 58, 95, 0.42);
	color: #102a4a;
}

.ci-dashboard-hero .ci-submit-review-btn:hover {
	background: #ffffff;
	color: #102a4a;
	border-color: #ffffff;
}

.ci-dashboard-hero-meta {
	display: grid;
	gap: 0.65rem;
	align-content: start;
	position: relative;
	z-index: 1;
}

.ci-hero-chip {
	padding: 0.85rem 0.9rem;
	border-radius: 14px;
	border: 1px solid rgba(26, 58, 95, 0.14);
	background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
	box-shadow: 0 8px 14px rgba(16, 42, 74, 0.06);
}

.ci-hero-chip span {
	display: block;
	font-size: 0.69rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--care-inf-text-light);
	margin-bottom: 0.15rem;
}

.ci-hero-chip strong {
	font-size: 1.04rem;
	font-weight: 700;
	color: var(--care-inf-primary-dark);
}

@media (max-width: 1024px) {
	.ci-dashboard-hero {
		grid-template-columns: 1fr;
	}
	.ci-dashboard-hero-meta {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.ci-kpi-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.85rem;
	margin: 0;
}

.ci-kpi-card {
	position: relative;
	overflow: hidden;
	display: grid;
	gap: 0.4rem;
	align-content: center;
	min-height: 116px;
	padding: 1.15rem 1rem;
	border-radius: 16px;
	border: 1px solid rgba(26, 58, 95, 0.08);
	background: linear-gradient(135deg, #ffffff 0%, #f9fcff 100%);
	box-shadow: 0 8px 24px rgba(16, 42, 74, 0.06), 0 2px 8px rgba(16, 42, 74, 0.03);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ci-kpi-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--care-inf-primary-dark), var(--care-inf-accent));
	opacity: 0.9;
}

.ci-kpi-card:hover {
	transform: translateY(-4px) scale(1.02);
	border-color: rgba(26, 58, 95, 0.15);
	box-shadow: 0 16px 40px rgba(16, 42, 74, 0.12), 0 6px 16px rgba(16, 42, 74, 0.06);
}

.ci-kpi-card span {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--care-inf-text-light);
	margin-bottom: 0.3rem;
}

.ci-kpi-card strong {
	display: block;
	font-size: 1.34rem;
	line-height: 1.1;
	color: var(--care-inf-primary-dark);
	letter-spacing: -0.02em;
}

.ci-progress-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.45rem;
	font-size: 0.93rem;
	color: var(--care-inf-text-light);
}

.ci-progress-label strong {
	color: var(--care-inf-primary-dark);
	font-size: 1rem;
}

.ci-progress-bar {
	height: 10px;
	background: rgba(26, 58, 95, 0.12);
	border-radius: 999px;
	overflow: hidden;
}

.ci-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--care-inf-primary), var(--care-inf-accent));
	border-radius: inherit;
}

.ci-dashboard-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.92rem;
	margin-bottom: 0;
}

.ci-dashboard-grid-wide {
	grid-template-columns: 1.3fr 1fr;
}

.ci-card {
	background: linear-gradient(135deg, #ffffff 0%, #f9fcff 100%);
	border: 1px solid rgba(26, 58, 95, 0.08);
	border-radius: 16px;
	padding: 1.25rem;
	box-shadow: 0 8px 28px rgba(16, 42, 74, 0.06), 0 2px 8px rgba(16, 42, 74, 0.03);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ci-card:hover {
	box-shadow: 0 12px 36px rgba(16, 42, 74, 0.1), 0 4px 12px rgba(16, 42, 74, 0.05);
	border-color: rgba(26, 58, 95, 0.12);
}

.ci-card h3 {
	margin: 0 0 1rem;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--care-inf-primary-dark);
	line-height: 1.3;
}

.ci-card-wide {
	padding: 1.05rem 1rem;
}

.ci-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.5rem;
}

.ci-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding-bottom: 0.45rem;
	border-bottom: 1px dashed rgba(26, 58, 95, 0.16);
}

.ci-list li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.ci-list li span {
	font-size: 0.83rem;
	color: var(--care-inf-text-light);
}

.ci-list li strong {
	font-size: 0.92rem;
	color: var(--care-inf-primary-dark);
}

.ci-portal-dashboard .btn-outline-white {
	background: #ffffff;
	color: var(--care-inf-primary-dark);
	border-color: rgba(26, 58, 95, 0.28);
}

.ci-portal-dashboard .btn-outline-white:hover {
	background: rgb(245 245 245);
	color: var(--care-inf-primary-dark);
	border-color: rgba(26, 58, 95, 0.42);
}

/* Share Center Section */
.ci-pane-share {
	background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
	border-radius: 12px;
	overflow: hidden;
}

.ci-pane-share h3 {
	color: #222;
	margin-bottom: 24px;
	font-size: 24px;
	font-weight: 700;
}

.ci-pane-share h4 {
	color: #333;
	margin-bottom: 16px;
	font-size: 18px;
	font-weight: 600;
}

.ci-share-section {
	margin-bottom: 32px;
	padding-bottom: 32px;
	border-bottom: 1px solid #e0e0e0;
}

.ci-share-subtitle {
	font-size: 18px;
	font-weight: 600;
	color: #222;
	margin-bottom: 8px;
}

.ci-share-description {
	color: #666;
	font-size: 14px;
	margin-bottom: 20px;
	line-height: 1.6;
}

.ci-share-controls {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 16px;
	display: block;
}

.ci-share-form-group {
	margin-bottom: 16px;
}

.ci-share-form-group:last-child {
	margin-bottom: 0;
}

.ci-share-form-group label {
	display: block;
	margin-bottom: 8px;
}

.ci-label-text {
	display: block;
	color: #333;
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 14px;
}

.ci-share-expiry {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	font-size: 14px;
	background: #fff;
	color: #333;
	cursor: pointer;
	transition: all 0.3s ease;
}

.ci-share-expiry:hover {
	border-color: #c0c0c0;
}

.ci-share-expiry:focus {
	outline: none;
	border-color: #dc2626;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.ci-share-watermark-label {
	display: flex;
	align-items: center;
	cursor: pointer;
	gap: 8px;
	padding: 10px;
	border-radius: 6px;
	transition: background 0.3s ease;
	margin: 0 !important;
}

.ci-share-watermark-label:hover {
	background: #f5f5f5;
}

.ci-share-watermark-input {
	cursor: pointer;
	width: 18px;
	height: 18px;
	accent-color: #dc2626;
}

.ci-share-watermark-label small {
	display: block;
	color: #999;
	font-size: 12px;
	margin-top: 2px;
}

.ci-share-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.ci-share-generate-btn,
.ci-share-revoke-btn {
	flex: 1;
	min-width: 200px;
}

.ci-share-result {
	margin-top: 24px;
}

.ci-share-active {
	animation: slideIn 0.4s ease;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ci-share-box {
	background: #fff;
	border: 2px solid #dbeafe;
	border-radius: 8px;
	padding: 20px;
}

.ci-share-box-title {
	color: #1e40af;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 16px;
}

.ci-share-url-container {
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
}

.ci-share-url-input {
	flex: 1;
	padding: 10px 12px;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	font-size: 14px;
	background: #f9f9f9;
	color: #333;
	font-family: 'Courier New', monospace;
}

.ci-share-copy-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	padding: 10px 16px;
}

.ci-share-copy-btn svg {
	width: 16px;
	height: 16px;
}

.ci-share-copy-btn:hover {
	background: #f0f0f0;
	color: #333;
}

.ci-share-copy-btn.copied {
	background: #dcfce7;
	color: #166534;
	border-color: #86efac;
}

.ci-share-expiry-info {
	color: #666;
	font-size: 13px;
	margin-bottom: 16px;
	padding: 10px;
	background: #f9f9f9;
	border-radius: 6px;
	border-left: 3px solid #fbbf24;
}

.ci-share-qr-section {
	margin: 24px 0;
	padding: 20px;
	background: #f9fafb;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
}

.ci-share-qr-section h5 {
	color: #333;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 12px;
	margin-top: 0;
}

.ci-share-qr-canvas {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 200px;
	background: #fff;
	border-radius: 6px;
	border: 1px solid #e0e0e0;
}

.ci-share-qr-canvas canvas {
	max-width: 100%;
	height: auto;
}

.ci-share-revoke-section {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
}

.ci-share-revoke-text {
	color: #666;
	font-size: 14px;
	margin-bottom: 12px;
	margin-top: 0;
}

.ci-share-info {
	background: #fffbeb;
	border-left: 4px solid #f59e0b;
	border-radius: 6px;
	padding: 16px;
	margin-top: 24px;
}

.ci-share-info h4 {
	color: #b45309;
	margin-bottom: 12px;
	font-size: 16px;
	margin-top: 0;
}

.ci-share-info ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ci-share-info li {
	color: #92400e;
	font-size: 14px;
	margin-bottom: 8px;
	padding-left: 20px;
	position: relative;
	line-height: 1.5;
}

.ci-share-info li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #d97706;
	font-weight: bold;
}

.ci-share-empty-state {
	color: #999;
	font-size: 14px;
	padding: 20px;
	text-align: center;
	background: #f9f9f9;
	border-radius: 6px;
	border: 1px dashed #d0d0d0;
	margin-top: 16px;
	margin-bottom: 0;
}

.ci-notice {
	padding: 16px 20px;
	border-radius: 8px;
	margin-bottom: 20px;
	border-left: 4px solid;
	font-size: 14px;
	line-height: 1.6;
}

.ci-notice-info {
	background: #eff6ff;
	border-color: #3b82f6;
	color: #1e40af;
}

.ci-notice-info p {
	margin: 0;
}

/* Loading State for Share Buttons */
.ci-share-generate-btn.loading,
.ci-share-revoke-btn.loading {
	opacity: 0.7;
	pointer-events: none;
}

.ci-share-generate-btn.loading:before,
.ci-share-revoke-btn.loading:before {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-right: 6px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: white;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.ci-share-message {
	padding: 12px 16px;
	border-radius: 6px;
	margin-bottom: 16px;
	font-size: 13px;
	animation: slideIn 0.3s ease;
}

.ci-share-message.success {
	background: #dcfce7;
	color: #166534;
	border-left: 3px solid #22c55e;
}

.ci-share-message.error {
	background: #fee2e2;
	color: #991b1b;
	border-left: 3px solid #ef4444;
}

.ci-share-message.warning {
	background: #fef3c7;
	color: #92400e;
	border-left: 3px solid #f59e0b;
}

.ci-muted {
	margin: 0 0 0.7rem;
	color: var(--care-inf-text-light);
	font-size: 0.9rem;
}

.ci-timeline,
.ci-rotation-map,
.ci-activity-log,
.ci-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.6rem;
}

.ci-timeline li {
	display: grid;
	gap: 0.2rem;
	padding-left: 0.8rem;
	border-left: 2px solid rgba(26, 58, 95, 0.24);
}

.ci-timeline li strong {
	font-size: 0.9rem;
	color: var(--care-inf-primary-dark);
}

.ci-timeline li span {
	font-size: 0.78rem;
	color: var(--care-inf-text-light);
}

.ci-checklist li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.55rem;
	align-items: center;
	font-size: 0.85rem;
}

.ci-checklist li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 68px;
	padding: 0.2rem 0.4rem;
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.ci-checklist li strong {
	font-weight: 600;
	color: var(--care-inf-primary-dark);
}

.ci-checklist li.is-complete span {
	background: #e6f8eb;
	color: #1f7a37;
}

.ci-checklist li.is-pending span {
	background: #fff1d8;
	color: #8c6a14;
}

.ci-rotation-map li {
	padding: 0.65rem;
	border-radius: 10px;
	border: 1px solid rgba(26, 58, 95, 0.14);
	background: #ffffff;
}

.ci-rotation-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.2rem;
}

.ci-rotation-head strong {
	font-size: 0.9rem;
	color: var(--care-inf-primary-dark);
}

.ci-rotation-head span {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--care-inf-primary);
}

.ci-rotation-map p {
	margin: 0 0 0.2rem;
	font-size: 0.82rem;
	color: var(--care-inf-text-color);
}

.ci-rotation-map small {
	font-size: 0.72rem;
	color: var(--care-inf-text-light);
}

/* Snapshot Profile Display */
.ci-snapshot-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid rgba(26, 58, 95, 0.1);
}

.ci-snapshot-title-wrap h2 {
	margin: 0 0 0.5rem;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--care-inf-primary-dark);
	line-height: 1.2;
}

.ci-snapshot-title-wrap .ci-muted {
	margin: 0;
	font-size: 1rem;
}

.ci-snapshot-actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.ci-snapshot-profile-card {
	background: linear-gradient(135deg, #ffffff 0%, #f9fcff 100%);
	border: 1px solid rgba(26, 58, 95, 0.1);
	border-radius: 20px;
	padding: 0;
	box-shadow: 0 10px 40px rgba(16, 42, 74, 0.08), 0 2px 12px rgba(16, 42, 74, 0.04);
	overflow: hidden;
}

.ci-snapshot-section {
	padding: 2rem 2.5rem;
	border-bottom: 1px solid rgba(26, 58, 95, 0.08);
}

.ci-snapshot-section:last-child {
	border-bottom: none;
}

.ci-snapshot-section-title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0 0 1.5rem;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--care-inf-primary-dark);
	letter-spacing: -0.01em;
}

.ci-snapshot-icon {
	font-size: 1.8rem;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(26, 58, 95, 0.08) 100%);
}

.ci-snapshot-data-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.25rem;
	margin: 0;
}

.ci-snapshot-data-item {
	display: grid;
	gap: 0.4rem;
	padding: 1rem 1.25rem;
	border-radius: 12px;
	background: linear-gradient(135deg, #ffffff 0%, #fafcff 100%);
	border: 1px solid rgba(26, 58, 95, 0.08);
	box-shadow: 0 2px 8px rgba(16, 42, 74, 0.04);
	transition: all 0.25s ease;
}

.ci-snapshot-data-item:hover {
	box-shadow: 0 6px 20px rgba(16, 42, 74, 0.1);
	border-color: rgba(26, 58, 95, 0.12);
}

.ci-snapshot-data-item dt {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(26, 58, 95, 0.6);
	margin: 0;
}

.ci-snapshot-data-item dd {
	font-size: 1rem;
	font-weight: 600;
	color: var(--care-inf-primary-dark);
	margin: 0;
	word-break: break-word;
}

/* ============================================
   Account & Program Details Section
   ============================================ */

.ci-account-program-container {
	display: grid;
	gap: 1.75rem;
	margin-top: 1.5rem;
}

.ci-info-card {
	background: linear-gradient(135deg, #ffffff 0%, #fafcff 100%);
	border: 1px solid rgba(26, 58, 95, 0.08);
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(16, 42, 74, 0.06);
	overflow: hidden;
	transition: all 0.3s ease;
}

.ci-info-card:hover {
	box-shadow: 0 8px 30px rgba(16, 42, 74, 0.12);
	border-color: rgba(26, 58, 95, 0.12);
}

.ci-info-card-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.5rem 1.75rem;
	background: linear-gradient(135deg, #1a3a5f 0%, #102a4a 100%);
	border-bottom: 3px solid rgba(212, 175, 55, 0.5);
}

.ci-info-icon {
	flex-shrink: 0;
	color: #d4af37;
}

.ci-info-card-header h3 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.01em;
}

.ci-info-card-body {
	padding: 1.75rem;
}

.ci-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.25rem;
}

.ci-info-item {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 1.25rem;
	background: linear-gradient(135deg, #f8fbff 0%, #f0f6ff 100%);
	border: 1px solid rgba(26, 58, 95, 0.08);
	border-radius: 14px;
	box-shadow: 0 2px 10px rgba(16, 42, 74, 0.04);
	transition: all 0.3s ease;
}

.ci-info-item:hover {
	box-shadow: 0 6px 20px rgba(16, 42, 74, 0.1);
	border-color: rgba(26, 58, 95, 0.12);
	transform: translateY(-2px);
}

.ci-info-item-full {
	grid-column: 1 / -1;
}

.ci-info-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(26, 58, 95, 0.6);
}

.ci-info-value {
	font-size: 1rem;
	font-weight: 600;
	color: var(--care-inf-primary-dark);
	line-height: 1.5;
}

.ci-info-value-highlight {
	font-size: 1.1rem;
	font-weight: 700;
	background: linear-gradient(135deg, #1a3a5f 0%, #102a4a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ci-status-badge {
	display: inline-block;
	padding: 0.35rem 0.9rem;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	border-radius: 20px;
	box-shadow: 0 2px 8px rgba(16, 42, 74, 0.08);
}

.ci-status-active {
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	color: #ffffff;
}

.ci-profile-id {
	font-family: 'Courier New', Courier, monospace;
	font-size: 0.9rem;
	font-weight: 700;
	color: #1a3a5f;
	background: rgba(212, 175, 55, 0.1);
	padding: 0.25rem 0.5rem;
	border-radius: 6px;
	display: inline-block;
}

.ci-gpa-badge {
	display: inline-block;
	padding: 0.35rem 0.75rem;
	font-size: 1.1rem;
	font-weight: 800;
	background: linear-gradient(135deg, #d4af37 0%, #f0d98f 100%);
	color: #1a3a5f;
	border-radius: 10px;
	box-shadow: 0 3px 12px rgba(212, 175, 55, 0.3);
}

/* Quick Actions Card */
.ci-quick-actions-card .ci-info-card-header {
	background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
	border-bottom: 3px solid rgba(26, 58, 95, 0.3);
}

.ci-quick-actions-card .ci-info-icon {
	color: #1a3a5f;
}

.ci-quick-actions-card .ci-info-card-header h3 {
	color: #1a3a5f;
}

.ci-quick-actions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
}

.ci-quick-action-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 1.25rem 1.5rem;
	background: linear-gradient(135deg, #1a3a5f 0%, #102a4a 100%);
	color: #ffffff;
	text-decoration: none;
	border-radius: 14px;
	border: 2px solid transparent;
	box-shadow: 0 4px 15px rgba(16, 42, 74, 0.15);
	transition: all 0.3s ease;
	font-weight: 700;
	font-size: 0.95rem;
}

.ci-quick-action-btn:hover {
	background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
	color: #1a3a5f;
	border-color: rgba(26, 58, 95, 0.2);
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
	transform: translateY(-3px);
}

.ci-quick-action-btn svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.ci-info-grid {
		grid-template-columns: 1fr;
	}
	
	.ci-quick-actions-grid {
		grid-template-columns: 1fr;
	}
	
	.ci-info-card-header {
		padding: 1.25rem 1.5rem;
	}
	
	.ci-info-card-body {
		padding: 1.5rem;
	}
}

.ci-snapshot-list {
	display: grid;
	gap: 1rem;
}

.ci-snapshot-list-item {
	padding: 1.25rem 1.5rem;
	border-radius: 14px;
	background: linear-gradient(135deg, #ffffff 0%, #fafcff 100%);
	border: 1px solid rgba(26, 58, 95, 0.08);
	box-shadow: 0 4px 12px rgba(16, 42, 74, 0.05);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ci-snapshot-list-item:hover {
	box-shadow: 0 8px 24px rgba(16, 42, 74, 0.1);
	border-color: rgba(26, 58, 95, 0.15);
	transform: translateX(4px);
}

.ci-snapshot-list-item h4 {
	margin: 0 0 0.75rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--care-inf-primary-dark);
}

.ci-snapshot-list-item p {
	margin: 0 0 0.5rem;
	font-size: 0.9rem;
	color: var(--care-inf-text-color);
	line-height: 1.6;
}

.ci-snapshot-list-item p:last-of-type {
	margin-bottom: 0.75rem;
}

.ci-snapshot-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.ci-snapshot-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.6rem 1rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #e8f5ff 0%, #dceeff 100%);
	border: 1px solid rgba(26, 58, 95, 0.15);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--care-inf-primary-dark);
	box-shadow: 0 2px 6px rgba(16, 42, 74, 0.06);
}

.ci-status-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.ci-status-badge.ci-status-completed,
.ci-status-badge.ci-status-verified,
.ci-status-badge.ci-status-clear {
	background: #e6f8eb;
	color: #1f7a37;
	border: 1px solid rgba(31, 122, 55, 0.2);
}

.ci-status-badge.ci-status-active,
.ci-status-badge.ci-status-pending {
	background: #fff3e0;
	color: #b76e00;
	border: 1px solid rgba(183, 110, 0, 0.2);
}

.ci-status-badge.ci-status-planned,
.ci-status-badge.ci-status-draft {
	background: #e3f2fd;
	color: #0277bd;
	border: 1px solid rgba(2, 119, 189, 0.2);
}

.ci-snapshot-bio {
	padding: 1.5rem;
	border-radius: 12px;
	background: linear-gradient(135deg, #fafcff 0%, #f5f9ff 100%);
	border: 1px solid rgba(26, 58, 95, 0.08);
}

.ci-snapshot-bio p {
	margin: 0 0 1rem;
	font-size: 1rem;
	line-height: 1.8;
	color: var(--care-inf-text-color);
}

.ci-snapshot-bio p:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.ci-snapshot-header {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.ci-snapshot-section {
		padding: 1.5rem 1.25rem;
	}
	
	.ci-snapshot-data-grid {
		grid-template-columns: 1fr;
	}
	
	.ci-snapshot-actions {
		width: 100%;
	}
	
	.ci-snapshot-actions .btn {
		flex: 1;
		min-width: 0;
	}
}

.ci-rotation-active { border-color: rgba(15, 122, 137, 0.35); }
.ci-rotation-completed { border-color: rgba(40, 167, 69, 0.35); }
.ci-rotation-planned { border-color: rgba(140, 106, 20, 0.35); }

.ci-activity-log li {
	display: grid;
	gap: 0.2rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px dashed rgba(26, 58, 95, 0.16);
}

.ci-activity-log li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.ci-activity-log strong {
	font-size: 0.83rem;
	color: var(--care-inf-primary-dark);
}

.ci-activity-log span {
	font-size: 0.78rem;
	color: var(--care-inf-text-color);
}

.ci-activity-log small {
	font-size: 0.7rem;
	color: var(--care-inf-text-light);
}

.ci-support-panel {
	margin-top: 0.9rem;
	padding-top: 0.8rem;
	border-top: 1px solid rgba(26, 58, 95, 0.16);
}

.ci-support-panel h4 {
	margin: 0 0 0.35rem;
	font-size: 0.93rem;
	color: var(--care-inf-primary-dark);
}

.ci-support-panel p {
	margin: 0 0 0.7rem;
	font-size: 0.82rem;
	color: var(--care-inf-text-light);
}

.ci-support-actions {
	display: inline-flex;
	gap: 0.55rem;
	flex-wrap: wrap;
}

.ci-account-form {
	margin-top: 0.35rem;
}

.ci-account-form input[disabled] {
	background: #f0f4fa;
	color: #5a6c82;
	cursor: not-allowed;
}

.ci-support-form {
	margin-top: 0.8rem;
	padding-top: 0.85rem;
	border-top: 1px dashed rgba(26, 58, 95, 0.2);
}

.ci-field-full {
	grid-column: 1 / -1;
}

.ci-support-ticket-wrap {
	margin-top: 0.95rem;
	padding-top: 0.85rem;
	border-top: 1px dashed rgba(26, 58, 95, 0.2);
}

.ci-support-ticket-wrap h4 {
	margin: 0 0 0.6rem;
	font-size: 0.88rem;
	color: var(--care-inf-primary-dark);
}

.ci-support-ticket-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}

.ci-support-ticket-empty {
	font-size: 0.82rem;
	color: var(--care-inf-text-light);
}

.ci-support-ticket {
	padding: 0.6rem 0.68rem;
	border: 1px solid rgba(26, 58, 95, 0.16);
	border-radius: 10px;
	background: #ffffff;
}

.ci-support-ticket-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.22rem;
}

.ci-support-ticket-head strong {
	font-size: 0.82rem;
	color: var(--care-inf-primary-dark);
}

.ci-support-ticket-head span {
	font-size: 0.67rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--care-inf-primary);
}

.ci-support-ticket small {
	font-size: 0.72rem;
	color: var(--care-inf-text-light);
}

.ci-ticket-status-resolved {
	border-color: rgba(40, 167, 69, 0.3);
}

.ci-ticket-status-in_review {
	border-color: rgba(212, 175, 55, 0.34);
}

.ci-ticket-priority-urgent .ci-support-ticket-head span {
	color: #a32d2d;
}

.ci-ticket-overdue {
	border-color: rgba(163, 45, 45, 0.35);
}

.ci-ticket-escalated {
	border-color: rgba(15, 122, 137, 0.38);
	background: linear-gradient(180deg, #ffffff 0%, #f4fbfc 100%);
}

.ci-profile-builder {
	max-width: 1240px;
	margin: 0 auto;
	padding: 1.5rem 1.1rem 2.2rem;
}

.ci-auth-wrap {
	padding: 2.4rem 0 2.6rem;
}

.ci-auth-wrap-single {
	max-width: 860px;
	margin: 0 auto;
	padding: 1.7rem 1rem;
	border-radius: 18px;
	border: 1px solid rgba(26, 58, 95, 0.14);
	background: linear-gradient(145deg, #f9fcff 0%, #eef5ff 52%, #fdf7ea 100%);
	box-shadow: 0 14px 28px rgba(16, 42, 74, 0.08);
}

.ci-auth-wrap-single .ci-auth-grid {
	grid-template-columns: minmax(0, 1fr);
}

.ci-auth-wrap-single .ci-auth-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.98) 100%);
}

.ci-auth-head {
	margin-bottom: 0.9rem;
}

.ci-auth-head h2 {
	margin: 0 0 0.35rem;
	font-size: clamp(1.55rem, 2.2vw, 2rem);
	color: var(--care-inf-primary-dark);
}

.ci-auth-head p {
	margin: 0;
	color: var(--care-inf-text-light);
	font-size: 0.95rem;
}

.ci-auth-switch {
	display: inline-flex;
	gap: 0.5rem;
	padding: 0.35rem;
	border: 1px solid rgba(26, 58, 95, 0.18);
	border-radius: 12px;
	background: #ffffff;
	margin: 0 0 1rem;
}

.ci-auth-switch a {
	padding: 0.5rem 0.85rem;
	border-radius: 9px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--care-inf-primary-dark);
	text-decoration: none;
}

.ci-auth-switch a.active {
	background: rgba(26, 58, 95, 0.1);
}

.ci-auth-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.ci-auth-card {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid rgba(26, 58, 95, 0.14);
	border-radius: 14px;
	padding: 1rem;
	box-shadow: 0 8px 18px rgba(16, 42, 74, 0.07);
}

.ci-auth-card h3 {
	margin: 0 0 0.72rem;
	font-size: 1.02rem;
	color: var(--care-inf-primary-dark);
}

.ci-auth-form .ci-fields-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.ci-auth-form .ci-field {
	min-width: 0;
}

.ci-auth-form .ci-field label {
	display: block;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-bottom: 0.3rem;
	color: var(--care-inf-primary-dark);
}

.ci-auth-form .ci-field input,
.ci-auth-form .ci-field textarea,
.ci-auth-form .ci-field select {
	width: 100%;
	min-height: 46px;
	padding: 0.56rem 0.65rem;
	border-radius: 8px;
	border: 1px solid rgba(26, 58, 95, 0.2);
	background: #ffffff;
	font-size: 0.86rem;
}

.ci-auth-form .ci-field textarea {
	min-height: 110px;
	resize: vertical;
}

.ci-auth-form .ci-field input:focus,
.ci-auth-form .ci-field textarea:focus,
.ci-auth-form .ci-field select:focus {
	outline: none;
	border-color: rgba(26, 58, 95, 0.45);
	box-shadow: 0 0 0 3px rgba(26, 58, 95, 0.12);
}

.ci-student-register-page .ci-auth-wrap-single {
	max-width: 1020px;
}

#ci-student-login-form .login-username,
#ci-student-login-form .login-password,
#ci-student-login-form .login-remember,
#ci-admin-login-form .login-username,
#ci-admin-login-form .login-password,
#ci-admin-login-form .login-remember {
	margin: 0 0 0.68rem;
}

#ci-student-login-form label,
#ci-admin-login-form label {
	display: block;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-bottom: 0.3rem;
	color: var(--care-inf-primary-dark);
}

#ci-student-login-form input[type="text"],
#ci-student-login-form input[type="password"],
#ci-student-login-form input[type="email"],
#ci-admin-login-form input[type="text"],
#ci-admin-login-form input[type="password"],
#ci-admin-login-form input[type="email"] {
	width: 100%;
	padding: 0.56rem 0.65rem;
	border-radius: 8px;
	border: 1px solid rgba(26, 58, 95, 0.2);
	background: #ffffff;
	font-size: 0.86rem;
}

#ci-student-login-form .login-remember,
#ci-admin-login-form .login-remember {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

#ci-student-login-form .login-remember label,
#ci-admin-login-form .login-remember label {
	margin: 0;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0;
}

#ci-student-login-form .login-submit,
#ci-admin-login-form .login-submit {
	margin: 0;
}

#ci-student-login-form .button-primary,
#ci-admin-login-form .button-primary {
	background: linear-gradient(135deg, var(--care-inf-accent) 0%, var(--care-inf-accent-dark) 100%);
	color: var(--care-inf-bg-color);
	border: 0;
	border-radius: 10px;
	font-size: 0.85rem;
	font-weight: 700;
	padding: 0.56rem 0.92rem;
	min-height: 42px;
	line-height: 1.15;
	cursor: pointer;
}

.ci-auth-links {
	margin: 0.7rem 0 0;
	font-size: 0.82rem;
}

.ci-auth-links a {
	color: var(--care-inf-primary);
	font-weight: 600;
	text-decoration: none;
}

.ci-auth-form {
	margin: 0;
}

.ci-auth-remember {
	display: inline-flex;
	align-items: center;
	gap: 0.42rem;
	margin: 0.3rem 0 0.2rem;
	font-size: 0.82rem;
	color: var(--care-inf-text-color);
}

.ci-auth-remember input {
	width: 16px;
	height: 16px;
	accent-color: var(--care-inf-primary);
}

.ci-auth-hp {
	position: absolute;
	left: -9999px;
	top: -9999px;
	opacity: 0;
	pointer-events: none;
}

.ci-profile-builder .ci-steps-nav {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0.65rem;
	margin-bottom: 1.1rem;
}

.ci-profile-builder .ci-step-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.45rem;
	align-items: center;
	min-height: 52px;
	padding: 0.68rem 0.72rem;
	border-radius: 12px;
	background: linear-gradient(180deg, #f8fbff 0%, #f2f6fc 100%);
	border: 1px solid rgba(26, 58, 95, 0.12);
	text-decoration: none;
	color: var(--care-inf-text-color);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ci-profile-builder .ci-step-item:hover {
	border-color: rgba(26, 58, 95, 0.24);
	box-shadow: 0 8px 18px rgba(16, 42, 74, 0.1);
	transform: translateY(-1px);
}

.ci-profile-builder .ci-step-item .ci-step-num {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: rgba(26, 58, 95, 0.12);
	color: var(--care-inf-primary-dark);
	font-size: 0.75rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ci-profile-builder .ci-step-item .ci-step-label {
	font-size: 0.77rem;
	font-weight: 600;
	line-height: 1.35;
}

.ci-profile-builder .ci-step-item.active {
	background: #e9f3ff;
	border-color: rgba(26, 58, 95, 0.3);
}

.ci-profile-builder .ci-step-item.completed {
	background: #ebf8ef;
	border-color: rgba(40, 167, 69, 0.3);
}

.ci-profile-builder .ci-step-content {
	background: #ffffff;
	border: 1px solid rgba(26, 58, 95, 0.14);
	border-radius: 16px;
	padding: 1.2rem;
	box-shadow: 0 10px 24px rgba(16, 42, 74, 0.08);
}

.ci-profile-builder .ci-step-title {
	margin: 0 0 0.9rem;
	font-size: 1.2rem;
	color: var(--care-inf-primary-dark);
}

.ci-profile-builder .ci-review-summary {
	display: grid;
	gap: 0.9rem;
	margin-bottom: 1rem;
}

.ci-profile-builder .ci-review-summary-head {
	padding: 0.95rem 1rem;
	border: 1px solid rgba(26, 58, 95, 0.15);
	border-radius: 12px;
	background: linear-gradient(140deg, #f6fbff 0%, #eef5ff 100%);
}

.ci-profile-builder .ci-review-summary-head h3 {
	margin: 0 0 0.28rem;
	font-size: 1.02rem;
	color: var(--care-inf-primary-dark);
}

.ci-profile-builder .ci-review-summary-head p {
	margin: 0;
	font-size: 0.84rem;
	color: var(--care-inf-text-light);
}

.ci-profile-builder .ci-review-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 0.85rem;
}

.ci-profile-builder .ci-review-section {
	border: 1px solid rgba(26, 58, 95, 0.15);
	border-radius: 12px;
	padding: 0.82rem;
	background: #ffffff;
	box-shadow: 0 8px 16px rgba(16, 42, 74, 0.05);
}

.ci-profile-builder .ci-review-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.7rem;
	padding-bottom: 0.58rem;
	margin-bottom: 0.6rem;
	border-bottom: 1px dashed rgba(26, 58, 95, 0.2);
}

.ci-profile-builder .ci-review-section-head h4 {
	margin: 0;
	font-size: 0.95rem;
	color: var(--care-inf-primary-dark);
	line-height: 1.3;
}

.ci-profile-builder .ci-edit-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.35rem 0.62rem;
	border-radius: 999px;
	border: 1px solid rgba(26, 58, 95, 0.25);
	background: #f4f8ff;
	color: var(--care-inf-primary);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-decoration: none;
	white-space: nowrap;
}

.ci-profile-builder .ci-edit-link:hover {
	background: #e8f2ff;
	border-color: rgba(26, 58, 95, 0.35);
}

.ci-profile-builder .ci-review-list {
	margin: 0;
	display: grid;
	gap: 0.42rem;
}

.ci-profile-builder .ci-review-item {
	display: grid;
	grid-template-columns: minmax(130px, 40%) minmax(0, 1fr);
	gap: 0.5rem 0.65rem;
	padding: 0.46rem 0.52rem;
	border-radius: 9px;
	background: #f9fbff;
	border: 1px solid rgba(26, 58, 95, 0.1);
}

.ci-profile-builder .ci-review-item dt {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--care-inf-text-light);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.ci-profile-builder .ci-review-item dd {
	margin: 0;
	font-size: 0.84rem;
	color: var(--care-inf-text-color);
	word-break: break-word;
}

.ci-profile-builder .ci-review-empty {
	margin: 0;
	font-size: 0.82rem;
	color: var(--care-inf-text-light);
}

.ci-profile-builder .ci-review-progress {
	display: grid;
	gap: 0.4rem;
	padding: 0.8rem 0.9rem;
	border: 1px solid rgba(26, 58, 95, 0.13);
	border-radius: 12px;
	background: #f9fcff;
}

.ci-profile-builder .ci-review-progress span {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--care-inf-primary-dark);
}

.ci-profile-builder .ci-review-progress-bar {
	height: 10px;
	border-radius: 999px;
	background: rgba(26, 58, 95, 0.14);
	overflow: hidden;
}

.ci-profile-builder .ci-review-progress-fill {
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #0f7a89 0%, #1a3a5f 100%);
}

.ci-profile-builder .ci-submit-form {
	margin-top: 0.45rem;
}

.ci-profile-builder .ci-submit-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
	padding: 0.85rem 0.9rem;
	border: 1px dashed rgba(26, 58, 95, 0.24);
	border-radius: 12px;
	background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
}

.ci-profile-builder .ci-checkbox {
	display: inline-flex;
	align-items: flex-start;
	gap: 0.45rem;
	margin: 0;
	font-size: 0.82rem;
	color: var(--care-inf-text-color);
}

.ci-profile-builder .ci-checkbox input[type="checkbox"] {
	width: 16px;
	height: 16px;
	margin-top: 0.08rem;
	accent-color: var(--care-inf-primary);
}

.ci-profile-builder .ci-fields-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(320px, 1fr));
	gap: 0.95rem 0.9rem;
	align-items: start;
}

.ci-profile-builder .ci-field {
	min-width: 0;
}

.ci-profile-builder .ci-field-full,
.ci-profile-builder .ci-field-textarea,
.ci-profile-builder .ci-field-file,
.ci-profile-builder .ci-field-key-address,
.ci-profile-builder .ci-field-key-site_requirements,
.ci-profile-builder .ci-field-key-professional_summary {
	grid-column: 1 / -1;
}

.ci-profile-builder .ci-field label {
	display: block;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-bottom: 0.3rem;
	color: var(--care-inf-primary-dark);
}

.ci-profile-builder .ci-field input,
.ci-profile-builder .ci-field textarea,
.ci-profile-builder .ci-field select {
	width: 100%;
	min-height: 48px;
	padding: 0.62rem 0.72rem;
	border-radius: 10px;
	border: 1px solid rgba(26, 58, 95, 0.22);
	background: #ffffff;
	font-size: 0.9rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ci-profile-builder .ci-field textarea {
	min-height: 120px;
	resize: vertical;
}

.ci-profile-builder .ci-field input:focus,
.ci-profile-builder .ci-field textarea:focus,
.ci-profile-builder .ci-field select:focus {
	outline: none;
	border-color: rgba(26, 58, 95, 0.45);
	box-shadow: 0 0 0 3px rgba(26, 58, 95, 0.12);
}

/* File Upload Display */
.ci-file-current {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.75rem;
	padding: 0.75rem 1rem;
	background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
	border: 1px solid rgba(76, 175, 80, 0.3);
	border-radius: 10px;
	font-size: 0.9rem;
	box-shadow: 0 2px 8px rgba(76, 175, 80, 0.08);
}

.ci-file-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
	color: #ffffff;
	border-radius: 50%;
	font-size: 0.85rem;
	font-weight: 700;
	flex-shrink: 0;
}

.ci-file-link {
	color: #2e7d32;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
	word-break: break-word;
}

.ci-file-link:hover {
	color: #1b5e20;
	text-decoration: underline;
}

.ci-file-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: rgba(244, 67, 54, 0.1);
	color: #f44336;
	border: 1px solid rgba(244, 67, 54, 0.3);
	border-radius: 50%;
	font-size: 1.2rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	flex-shrink: 0;
	line-height: 1;
	padding: 0;
}

.ci-file-remove:hover {
	background: #f44336;
	color: #ffffff;
	border-color: #f44336;
	transform: scale(1.1);
}

.ci-profile-builder .ci-step-actions {
	margin-top: 1.15rem;
	padding-top: 0.9rem;
	border-top: 1px dashed rgba(26, 58, 95, 0.2);
	display: flex;
	gap: 0.55rem;
	flex-wrap: wrap;
}

.ci-repeater {
	display: grid;
	gap: 0.55rem;
}

.ci-repeater-list {
	display: grid;
	gap: 0.55rem;
}

.ci-repeater-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.5rem;
	align-items: center;
}

.ci-repeater-row .btn {
	min-height: 44px;
}
@media (max-width: 768px) {
	.contact-grid { grid-template-columns: 1fr; }
	.ci-dashboard-header { align-items: flex-start; }
	.ci-dashboard-shell {
		grid-template-columns: 1fr;
		padding: 12px;
		border-radius: 18px;
	}
	.ci-dashboard-sidebar {
		position: static;
		top: auto;
	}
	.ci-dashboard-nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.ci-dashboard-hero,
	.ci-kpi-grid,
	.ci-dashboard-grid,
	.ci-dashboard-grid-wide,
	.ci-auth-grid,
	.ci-fields-grid {
		grid-template-columns: 1fr;
	}
	.ci-card {
		padding: 0.9rem;
	}
	.ci-profile-builder .ci-step-content {
		padding: 0.8rem;
	}
	.ci-profile-builder .ci-step-item .ci-step-label {
		font-size: 0.72rem;
	}
	.ci-profile-builder .ci-review-grid {
		grid-template-columns: 1fr;
	}
	.ci-profile-builder .ci-review-item {
		grid-template-columns: 1fr;
	}
	.ci-profile-builder .ci-submit-panel {
		flex-direction: column;
		align-items: flex-start;
	}
	.ci-profile-builder .ci-submit-panel .btn {
		width: 100%;
	}
	.ci-share-controls {
		grid-template-columns: 1fr;
	}
	.ci-dashboard-hero {
		padding: 1rem;
		border-radius: 14px;
	}
	.ci-dashboard-hero-main h3 {
		font-size: 1.5rem;
	}
	.ci-hero-actions {
		width: 100%;
	}
	.ci-hero-actions .btn {
		width: 100%;
		min-width: 0;
	}
	.ci-dashboard-hero-meta {
		grid-template-columns: 1fr;
	}
	.ci-support-actions,
	.ci-dash-actions,
	.ci-step-actions,
	.ci-share-actions {
		width: 100%;
	}
	.ci-support-actions .btn,
	.ci-dash-actions .btn,
	.ci-step-actions .btn,
	.ci-share-actions .btn {
		width: 100%;
		justify-content: center;
	}
	.page-hero-title { font-size: 1.5rem; }
	.page-hero { height: auto; min-height: 420px; }
	.page-how-it-works .how-steps-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.page-how-it-works .how-steps .section-title {
		margin-bottom: 1.25rem !important;
	}
	.page-how-it-works .how-steps-lead {
		font-size: 0.95rem;
		line-height: 1.65;
	}
	.page-how-it-works .how-steps-grid .step-card::after {
		display: none;
	}
	.page-how-it-works .step-title {
		font-size: 1.45rem;
	}
	.page-how-it-works .step-foot {
		font-size: 0.74rem;
	}
	.page-how-it-works .how-steps .section-title,
	.page-how-it-works .how-roles .section-title,
	.page-how-it-works .components-title,
	.page-how-it-works .cta-heading {
		font-size: 30px;
		line-height: 1.2;
	}
	.page-how-it-works .how-roles {
		padding: 3.2rem 0 3rem;
	}
	.page-how-it-works .how-roles-head {
		margin-bottom: 1.35rem;
	}
	.page-how-it-works .how-roles-lead {
		font-size: 0.94rem;
		line-height: 1.65;
	}
	.page-how-it-works .how-roles-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.page-how-it-works .role-title {
		font-size: 1.34rem;
	}
	.page-how-it-works .how-role-card {
		padding: 1.2rem 1.1rem 1.1rem;
	}
	.page-how-it-works .how-role-card .btn {
		width: auto;
	}
	.page-how-it-works .cta-bar {
		min-height: 420px;
		padding: 3.4rem 0;
	}
	.page-how-it-works .how-components {
		padding: 3.35rem 0 3.05rem;
	}
	.page-how-it-works .how-components-head {
		margin-bottom: 1.35rem;
	}
	.page-how-it-works .components-title {
		margin-bottom: 0.62rem;
	}
	.page-how-it-works .how-components-lead {
		font-size: 0.94rem;
		line-height: 1.65;
	}
	.page-how-it-works .how-components-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.page-how-it-works .components-image {
		min-height: 260px;
	}
	.page-how-it-works .components-image-badge {
		left: 0.75rem;
		bottom: 0.75rem;
		font-size: 0.68rem;
		padding: 0.38rem 0.7rem;
		letter-spacing: 0.04em;
	}
	.page-how-it-works .components-content {
		padding: 1.1rem;
		border-radius: 18px;
	}
	.page-how-it-works .how-components-list {
		grid-template-columns: 1fr;
		gap: 0.62rem;
	}
	.page-how-it-works .how-components-list li {
		font-size: 0.92rem;
	}
	.page-how-it-works .components-note {
		font-size: 0.87rem;
		padding: 0.78rem 0.88rem;
	}
}

@media (max-width: 1100px) and (min-width: 769px) {
	.ci-dashboard-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.ci-dashboard-grid-wide {
		grid-template-columns: 1fr;
	}
	.page-how-it-works .how-steps-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.page-how-it-works .how-steps-grid .step-card:nth-child(2)::after {
		display: none;
	}
	.page-how-it-works .how-roles-grid {
		gap: 1.2rem;
	}
	.page-how-it-works .cta-bar {
		min-height: 500px;
	}
	.page-how-it-works .how-components-grid {
		grid-template-columns: 1fr;
	}
	.page-how-it-works .components-image {
		min-height: 320px;
	}
}

/* ============================================
   Shared Profile View (Public)
   ============================================ */

.ci-shared-profile-wrapper {
	min-height: 100vh;
	background: linear-gradient(180deg, #f8fafcff 0%, #f0f4f8 100%);
	padding: 2rem 1rem;
}

.ci-shared-profile-wrapper[data-watermark="1"]::before {
	content: "CONFIDENTIAL";
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	font-size: 6rem;
	font-weight: 900;
	color: rgba(26, 58, 95, 0.05);
	z-index: 1;
	pointer-events: none;
	white-space: nowrap;
}

.ci-shared-profile-container {
	max-width: 1200px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(16, 42, 74, 0.15);
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.ci-shared-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2rem 2.5rem;
	background: linear-gradient(135deg, #1a3a5f 0%, #102a4a 100%);
	border-bottom: 4px solid #d4af37;
}

.ci-shared-logo img {
	max-height: 60px;
	width: auto;
}

.ci-shared-logo h2 {
	margin: 0;
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 800;
}

.ci-shared-title {
	text-align: right;
}

.ci-shared-title h1 {
	margin: 0;
	font-size: 1.75rem;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.02em;
}

.ci-shared-title p {
	margin: 0.25rem 0 0;
	font-size: 0.95rem;
	color: #d4af37;
	font-weight: 600;
}

.ci-shared-profile-header {
	display: flex;
	align-items: center;
	gap: 2rem;
	padding: 2.5rem;
	background: linear-gradient(135deg, #f8fbff 0%, #f0f6ff 100%);
	border-bottom: 1px solid rgba(26, 58, 95, 0.1);
}

.ci-shared-photo {
	flex-shrink: 0;
}

.ci-profile-photo {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #d4af37;
	box-shadow: 0 8px 24px rgba(16, 42, 74, 0.2);
}

.ci-profile-placeholder {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: linear-gradient(135deg, #1a3a5f 0%, #102a4a 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 4px solid #d4af37;
	box-shadow: 0 8px 24px rgba(16, 42, 74, 0.2);
}

.ci-profile-placeholder svg {
	color: #d4af37;
}

.ci-shared-profile-info {
	flex: 1;
}

.ci-student-name {
	margin: 0 0 1rem;
	font-size: 2rem;
	font-weight: 800;
	color: #1a3a5f;
	letter-spacing: -0.02em;
}

.ci-student-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.ci-meta-item {
	font-size: 1rem;
	color: rgba(26, 58, 95, 0.8);
}

.ci-meta-item strong {
	color: #1a3a5f;
}

.ci-status-verified {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.4rem 0.9rem;
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	color: #ffffff;
	border-radius: 20px;
	font-weight: 700;
	font-size: 0.9rem;
	box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.ci-shared-content {
	padding: 2.5rem;
}

.ci-gpa-highlight {
	display: inline-block;
	padding: 0.25rem 0.65rem;
	background: linear-gradient(135deg, #d4af37 0%, #f0d98f 100%);
	color: #1a3a5f;
	border-radius: 8px;
	font-weight: 800;
	font-size: 1.1rem;
	box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.ci-shared-footer {
	padding: 2rem 2.5rem;
	background: linear-gradient(135deg, #f8fbff 0%, #f0f6ff 100%);
	border-top: 1px solid rgba(26, 58, 95, 0.1);
	text-align: center;
}

.ci-shared-footer p {
	margin: 0.5rem 0;
	color: rgba(26, 58, 95, 0.7);
	font-size: 0.9rem;
}

.ci-verification-date {
	font-weight: 700;
	color: #1a3a5f;
}

@media (max-width: 768px) {
	.ci-shared-header {
		flex-direction: column;
		text-align: center;
		padding: 1.5rem;
	}
	
	.ci-shared-title {
		text-align: center;
		margin-top: 1rem;
	}
	
	.ci-shared-profile-header {
		flex-direction: column;
		text-align: center;
		padding: 2rem 1.5rem;
	}
	
	.ci-student-meta {
		flex-direction: column;
		gap: 0.75rem;
	}
	
	.ci-shared-content {
		padding: 1.5rem;
	}
}
