/**
 * Cenai Home - Header & Hero (exact match to screenshot)
 * Dark theme, orange/red accents, animations
 */

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

.cenai-home {
	margin: 0;
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #111;
	background: #fff;
	min-height: 100vh;
}
.cenai-home-hero-form input {
    background-color: rgb(255 255 255 / 11%);
    border-radius: 11px;
    border: 1px solid #f2f2f226;
}

/* Scroll-triggered animations (sections left/right, up/down) */
.cenai-scroll-left {
	opacity: 0;
	transform: translateX(-60px);
	transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.cenai-scroll-right {
	opacity: 0;
	transform: translateX(60px);
	transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.cenai-scroll-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.cenai-scroll-down {
	opacity: 0;
	transform: translateY(-40px);
	transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.cenai-scroll-left.cenai-visible, .cenai-scroll-right.cenai-visible, .cenai-scroll-up.cenai-visible, .cenai-scroll-down.cenai-visible {
	opacity: 1;
	transform: translate(0);
}

/* ========== Global blue circle glowy animation – all pages ========== */
@keyframes cenai-global-glow-pulse {
	0%, 100% {
		opacity: 0.4;
		transform: scale(1) translate(0, 0);
		filter: blur(72px) brightness(1);
		box-shadow: 0 0 80px rgba(125, 211, 252, 0.2), 0 0 120px rgba(0, 67, 157, 0.1);
	}
	33% {
		opacity: 0.6;
		transform: scale(1.12) translate(2%, -1%);
		filter: blur(82px) brightness(1.2);
		box-shadow: 0 0 100px rgba(125, 211, 252, 0.35), 0 0 160px rgba(0, 67, 157, 0.15);
	}
	66% {
		opacity: 0.5;
		transform: scale(0.96) translate(-1%, 2%);
		filter: blur(76px) brightness(1.1);
		box-shadow: 0 0 90px rgba(125, 211, 252, 0.28), 0 0 140px rgba(0, 67, 157, 0.12);
	}
}

@keyframes cenai-global-glow-pulse-2 {
	0%, 100% {
		opacity: 0.3;
		transform: scale(1.05) translate(0, 0);
		filter: blur(90px) brightness(1);
		box-shadow: 0 0 70px rgba(125, 211, 252, 0.15), 0 0 100px rgba(0, 67, 157, 0.08);
	}
	50% {
		opacity: 0.5;
		transform: scale(1.18) translate(-2%, 1%);
		filter: blur(100px) brightness(1.25);
		box-shadow: 0 0 110px rgba(125, 211, 252, 0.3), 0 0 150px rgba(0, 67, 157, 0.15);
	}
}

@keyframes cenai-circle-glow-breathe {
	0%, 100% {
		opacity: 0.5;
		transform: scale(1);
		filter: blur(40px);
		box-shadow: 0 0 60px rgba(125, 211, 252, 0.4), 0 0 100px rgba(0, 67, 157, 0.2);
	}
	50% {
		opacity: 0.85;
		transform: scale(1.2);
		filter: blur(50px);
		box-shadow: 0 0 90px rgba(125, 211, 252, 0.6), 0 0 140px rgba(0, 67, 157, 0.3);
	}
}

@keyframes cenai-circle-glow-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(8px, -6px) scale(1.05); }
	50% { transform: translate(-5px, 8px) scale(0.98); }
	75% { transform: translate(-8px, -4px) scale(1.08); }
}

body.cenai-home {
	position: relative;
}

body.cenai-home::before {
	content: '';
	position: fixed;
	top: -20%;
	right: -15%;
	width: 70vmax;
	height: 70vmax;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, rgba(125, 211, 252, 0.55) 0%, rgba(0, 67, 157, 0.28) 35%, rgba(0, 67, 157, 0.1) 55%, transparent 72%);
	pointer-events: none;
	z-index: -1;
	box-shadow: 0 0 80px rgba(125, 211, 252, 0.2), 0 0 120px rgba(0, 67, 157, 0.1);
	animation: cenai-global-glow-pulse 8s ease-in-out infinite;
}

body.cenai-home::after {
	content: '';
	position: fixed;
	bottom: -25%;
	left: -15%;
	width: 60vmax;
	height: 60vmax;
	border-radius: 50%;
	background: radial-gradient(circle at 70% 70%, rgba(125, 211, 252, 0.45) 0%, rgba(0, 67, 157, 0.22) 40%, rgba(0, 67, 157, 0.08) 60%, transparent 75%);
	pointer-events: none;
	z-index: -1;
	box-shadow: 0 0 70px rgba(125, 211, 252, 0.15), 0 0 100px rgba(0, 67, 157, 0.08);
	animation: cenai-global-glow-pulse-2 10s ease-in-out infinite 1s;
}

/* Circle glowy in header area – all pages */
.cenai-home-header {
	position: relative;
	overflow: visible;
}

.cenai-home-header::after {
	content: '';
	position: absolute;
	top: -80px;
	right: 5%;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(125, 211, 252, 0.4) 0%, rgba(0, 67, 157, 0.15) 50%, transparent 70%);
	pointer-events: none;
	z-index: 0;
	filter: blur(40px);
	box-shadow: 0 0 60px rgba(125, 211, 252, 0.3), 0 0 100px rgba(0, 67, 157, 0.15);
	animation: cenai-circle-glow-breathe 5s ease-in-out infinite, cenai-circle-glow-float 7s ease-in-out infinite;
}

/* Circle glowy in main content areas – sections on all pages */
.cenai-home main::before,
.cenai-contact-main::before,
.cenai-nl-main::before,
.cenai-td-main::before,
.cenai-blog-main::before,
.cenai-at-main::before,
.cenai-expedite::before,
.cenai-dir-inner::before {
	content: '';
	position: absolute;
	top: 10%;
	left: -5%;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(125, 211, 252, 0.35) 0%, rgba(0, 67, 157, 0.12) 45%, transparent 68%);
	pointer-events: none;
	z-index: 0;
	filter: blur(50px);
	box-shadow: 0 0 70px rgba(125, 211, 252, 0.25), 0 0 120px rgba(0, 67, 157, 0.1);
	animation: cenai-circle-glow-breathe 6s ease-in-out infinite 0.5s, cenai-circle-glow-float 8s ease-in-out infinite 1s;
}

.cenai-home main,
.cenai-contact-main,
.cenai-nl-main,
.cenai-td-main,
.cenai-blog-main,
.cenai-at-main,
.cenai-expedite,
.cenai-dir-inner {
	position: relative;
}

/* Gradient text (Custom Images style: purple/pink to orange-gold) */
.cenai-gradient-text {
	background: linear-gradient(90deg, #c44dff, #e87ba3, #f0a070, #f5c26b);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* One word/phrase in each heading in blue */
.cenai-heading-accent {
    color: #99c4ff;
}
.cenai-home-hero span.cenai-heading-accent {
    color: #8fc3ff;
    text-shadow: 0 0 24px rgba(133, 185, 255, 0.45), 0 2px 8px rgba(0, 0, 0, 0.2);
}
/* Light blue glowy shape with animation – added to each section (decorative only) */
.cenai-section-glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 0;
}

.cenai-glowy-shape {
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(120, 210, 255, 0.55) 0%, rgba(0, 169, 255, 0.35) 35%, rgba(0, 67, 157, 0.18) 55%, transparent 72%);
	filter: blur(52px);
	animation: cenai-glowy-pulse 5s ease-in-out infinite;
}

@keyframes cenai-glowy-pulse {
	0%, 100% {
		transform: translate(0, 0) scale(0.95);
		opacity: 0.9;
		filter: blur(52px) brightness(1.1);
	}
	25% {
		transform: translate(20px, -18px) scale(1.12);
		opacity: 1;
		filter: blur(56px) brightness(1.35);
	}
	50% {
		transform: translate(-18px, 15px) scale(0.98);
		opacity: 0.95;
		filter: blur(48px) brightness(1.2);
	}
	75% {
		transform: translate(12px, 22px) scale(1.08);
		opacity: 1;
		filter: blur(54px) brightness(1.3);
	}
}

/* Small to big glow (for roadmap, ultimate, etc.) – faster, brighter */
@keyframes cenai-glowy-small-big {
	0%, 100% { transform: scale(0.65); opacity: 0.85; filter: blur(52px) brightness(1.15); }
	50% { transform: scale(1.2); opacity: 1; filter: blur(60px) brightness(1.4); }
}

.cenai-home-hero .cenai-glowy-shape { top: -25%; right: -12%; }
.cenai-home-roadmap .cenai-glowy-shape { bottom: -25%; left: -10%; animation: cenai-roadmap-glowy-float 8s ease-in-out infinite; }
.cenai-home-ultimate .cenai-glowy-shape { top: -20%; left: -15%; animation: cenai-glowy-small-big 4s ease-in-out infinite 0.5s; }
.cenai-home-tools .cenai-glowy-shape { top: -15%; right: -10%; }
.cenai-home-verticals .cenai-glowy-shape { bottom: -20%; right: -12%; }
.cenai-home-aifeatures .cenai-glowy-shape { top: -25%; left: -10%; }
.cenai-home-clients .cenai-glowy-shape { bottom: -20%; right: -15%; animation: cenai-float-up-down-slow 8s ease-in-out infinite; }
.cenai-home-aitech .cenai-glowy-shape { top: -20%; right: -10%; animation: cenai-float-up-down-slow 7s ease-in-out infinite 1s; }
.cenai-home-explainer .cenai-glowy-shape { bottom: -25%; left: -12%; }
.cenai-home-tools-slider .cenai-glowy-shape { top: -20%; left: -15%; }
.cenai-home-bottom-tabs .cenai-glowy-shape { top: -30%; right: -15%; }
.cenai-home-testimonials .cenai-glowy-shape { bottom: -20%; left: -10%; animation: cenai-float-up-down-slow 9s ease-in-out infinite 0.5s; }

/* ========== TOOLS – 5 in one line, auto slider, icon + name, seamless (no blank) ========== */
.cenai-home-tools-slider {
    position: relative;
    padding: 60px 0px 80px 0;
    background: #f5f5f7;
    overflow: hidden;
    /* margin: 41px 0; */
}
.cenai-home-tools-slider::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 67, 157, 0.2), transparent);
	pointer-events: none;
	opacity: 0.8;
}

.cenai-home-tools-slider-inner {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
}

.cenai-home-tools-slider-tagline {
    margin: 0 auto 2.5rem;
    font-size: 34px;
    max-width: 600px;
    padding-bottom: 0px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.95);
    text-align: center;
}

.cenai-home-tools-slider-num {
	font-weight: 800;
	color: #00439d;
}

.cenai-home-tools-slider-brand {
	font-weight: 800;
	color: #00439d;
}

/* Wrap: show 5 items, hide overflow for slider */
.cenai-home-tools-slider-wrap {
	overflow: hidden;
	width: 100%;
}
h2.cenai-home-roadmap-title {
    font-size: 34px;
    letter-spacing: 0.2px;
	padding-top: 18px;
}
/* Track: 240% width = 12 slots so 5 visible; scroll 50% = seamless loop */
.cenai-home-tools-slider-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 240%;
    animation: cenai-tools-slider-scroll 30s linear infinite;
    margin-top: 40px;
}

.cenai-home-tools-slider-track:hover {
	animation-play-state: paused;
}

@keyframes cenai-tools-slider-scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Each item = 1/12 of track = 20% of wrap so exactly 5 visible; same design (icon + name) */

.cenai-home-tools-slider-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex: 0 0 calc(100% / 12);
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.88);
    transition: color 0.2s ease;
    border-radius: 12px;
    box-sizing: border-box;
    min-width: 0;
    border: 1px solid #00439d;
    margin: 0 13px;
}
.cenai-home-tools-slider-item:hover {
	color: #111;
}

.cenai-home-tools-slider-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	flex-shrink: 0;
}

.cenai-home-tools-slider-icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.cenai-home-tools-slider-name {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.02em;
    line-height: 1.2;
    white-space: nowrap;
}
/* Tablet/mobile: show one tool per row so layout stays clear (no overlapping) */
@media (max-width: 991px) {
	.cenai-home-tools-slider { padding: 3rem 1rem 4rem; }
	.cenai-home-tools-slider-inner { padding: 0 1rem; }
	.cenai-home-tools-slider-tagline { font-size: 1.5rem; padding-bottom: 2rem; margin-bottom: 1.5rem; }
	.cenai-home-tools-slider-wrap { overflow: visible; }
	.cenai-home-tools-slider-track {
		width: 100%;
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.75rem;
		animation: none;
	}
	.cenai-home-tools-slider-item {
		flex: 0 0 100%;
		max-width: 280px;
		margin: 0 auto;
		box-sizing: border-box;
	}
	.cenai-home-tools-slider-track .cenai-home-tools-slider-item:nth-child(n+7) {
		display: none;
	}
	.cenai-home-tools-slider-name { white-space: normal; word-break: break-word; }
}
@media (max-width: 480px) {
	.cenai-home-clients { padding: 3rem 0.75rem; }
	.cenai-home-clients-inner { padding-left: 0.75rem; padding-right: 0.75rem; }
	.cenai-home-tools-slider { padding: 2.5rem 0.75rem 3rem; }
	.cenai-home-tools-slider-inner { padding: 0 0.75rem; }
	.cenai-home-tools-slider-tagline { font-size: 1.25rem; }
}

/* ========== HEADER – unique, attractive; cart and Sign In removed ========== */
.cenai-home-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	min-height: 72px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(0, 67, 157, 0.08);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 4px 24px rgba(0, 67, 157, 0.06);
}
.cenai-home-header::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, rgba(0, 67, 157, 0.15) 25%, #00439d 50%, rgba(0, 67, 157, 0.15) 75%, transparent 100%);
	opacity: 0.9;
	pointer-events: none;
}
.cenai-home-header-inner {
	position: relative;
	z-index: 1;
	max-width: 1330px;
	margin: 0 auto;
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: nowrap;
	min-height: 72px;
	box-sizing: border-box;
}

@media (max-width: 991px) {
	.cenai-home-header-inner {
		position: relative;
		min-height: 64px;
		padding: 0.75rem 1rem;
		flex-wrap: nowrap;
		min-width: 0;
	}
	.cenai-home-header {
		min-height: 64px;
	}
	.cenai-home-logo {
		min-width: 0;
		flex-shrink: 0;
	}
	.cenai-home-btn-try {
		display: none !important;
	}
}


.cenai-home-logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: #111;
}
.cenai-home-logo img {
	width: 200px;
}
.cenai-home-logo-img {
	height: 46px;
	width: auto;
	display: block;
	object-fit: contain;
}
.cenai-home-logo-img:focus-visible {
	outline: none;
}

/* Scrolled header: same styles, slightly stronger shadow */
.cenai-home-header.cenai-header-scrolled .cenai-home-nav-link:not(.active) {
	color: rgba(0, 0, 0, 0.85);
}
.cenai-home-header.cenai-header-scrolled .cenai-home-nav-link:hover {
	color: #00439d;
}
.cenai-home-header.cenai-header-scrolled .cenai-home-nav-link.active {
	color: #fff;
	background: linear-gradient(135deg, #00439d 0%, #0066cc 100%);
}
.cenai-home-header.cenai-header-scrolled .cenai-home-menu-btn span,
.cenai-home-header.cenai-header-scrolled .cenai-home-menu-btn-accent {
	background: #111;
}

.cenai-home-nav {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.cenai-home-nav-link {
	display: block;
	padding: 0.5rem 1rem;
	color: rgba(0, 0, 0, 0.82);
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	border-radius: 10px;
	transition: color 0.2s, background 0.2s, box-shadow 0.2s;
	letter-spacing: 0.01em;
}

.cenai-home-nav-link:hover {
	color: #00439d;
	background: rgba(0, 67, 157, 0.08);
	box-shadow: 0 2px 8px rgba(0, 67, 157, 0.1);
}

.cenai-home-nav-link.active {
	color: #fff;
	background: linear-gradient(135deg, #00439d 0%, #0066cc 100%);
	box-shadow: 0 4px 14px rgba(0, 67, 157, 0.35);
}

.cenai-home-header-actions {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

/* Hide cart icon (first icon button in actions) and Sign In */
.cenai-home-header-actions > .cenai-home-icon-btn:first-of-type {
	display: none !important;
}
.cenai-home-btn-signin {
	display: none !important;
}

.cenai-home-header-divider {
	width: 1px;
	height: 22px;
	background: linear-gradient(180deg, transparent, rgba(0, 67, 157, 0.35), transparent);
	flex-shrink: 0;
}

.cenai-home-icon-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	background: rgba(0, 67, 157, 0.06);
	border: 1px solid rgba(0, 67, 157, 0.12);
	color: #00439d;
	cursor: pointer;
	border-radius: 12px;
	transition: color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.cenai-home-icon-btn:hover {
	color: #00439d;
	background: rgba(0, 67, 157, 0.12);
	box-shadow: 0 4px 12px rgba(0, 67, 157, 0.15);
	transform: translateY(-1px);
}

.cenai-home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1rem;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: opacity 0.2s, transform 0.2s;
}

.cenai-home-btn-signin {
	background: rgba(0, 0, 0, 0.06);
	color: #111;
	border: 1px solid rgba(0, 0, 0, 0.12);
}

.cenai-home-btn-signin:hover {
	background: rgba(0, 0, 0, 0.1);
}

.cenai-home-btn-try {
	background: linear-gradient(135deg, #00439d 0%, #0066cc 100%);
	color: #fff;
	border: none;
	padding: 0.6rem 1.35rem;
	font-size: 15px;
	font-weight: 700;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 67, 157, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.cenai-home-btn-try:hover {
	opacity: 0.98;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 67, 157, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.cenai-home-menu-btn {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
}

.cenai-home-menu-btn span {
	display: block;
	width: 22px;
	height: 2px;
	background: rgba(0, 0, 0, 0.85);
	border-radius: 1px;
	transition: background 0.2s;
}

.cenai-home-menu-btn-accent {
	background: #00439d !important;
}

.cenai-home-nav-close {
	display: none;
}

@media (max-width: 991px) {
	.cenai-home-nav-close {
		display: flex;
	}
	.cenai-home-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		z-index: 99;
		max-height: calc(100vh - 64px);
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		padding: 0;
		padding-top: 0.5rem;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		visibility: hidden;
		opacity: 0;
		transition: visibility 0.3s ease, opacity 0.3s ease;
	}
	.cenai-home-nav.is-open {
		visibility: visible;
		opacity: 1;
	}
	.cenai-home-nav-close {
		position: absolute;
		top: 0.5rem;
		right: 1rem;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 48px;
		height: 48px;
		padding: 0;
		background: rgba(0, 67, 157, 0.08);
		border: 1px solid rgba(0, 67, 157, 0.15);
		border-radius: 12px;
		color: #00439d;
		cursor: pointer;
		transition: background 0.2s, color 0.2s;
		flex-shrink: 0;
		z-index: 1;
	}
	.cenai-home-nav-close:hover,
	.cenai-home-nav-close:focus {
		background: rgba(0, 67, 157, 0.15);
		color: #00439d;
	}
	.cenai-home-nav-close svg {
		width: 24px;
		height: 24px;
	}
	.cenai-home-nav-link {
		width: calc(100% - 3rem);
		margin: 0 1.5rem;
		padding: 0.85rem 1rem;
		font-size: 16px;
		border-radius: 10px;
	}
	.cenai-home-nav > .cenai-home-nav-link:first-of-type {
		margin-top: 3rem;
	}
	.cenai-home-menu-btn {
		display: flex;
		flex-shrink: 0;
	}
	.cenai-home-menu-btn[aria-expanded="true"] span:first-child {
		transform: translateY(7px) rotate(45deg);
	}
	.cenai-home-menu-btn[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
		transform: scaleX(0);
	}
	.cenai-home-menu-btn[aria-expanded="true"] .cenai-home-menu-btn-accent {
		transform: translateY(-7px) rotate(-45deg);
	}
	.cenai-home-menu-btn span,
	.cenai-home-menu-btn-accent {
		transition: transform 0.3s ease, opacity 0.2s ease;
	}
}

/* ========== HERO / BANNER ========== */
.cenai-home-hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	padding: 3rem 1.5rem 4rem;
	overflow: hidden;
}

/* Banner: light blue glowy effect – faster, brighter, small to big */
.cenai-home-hero::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 600px;
	height: 600px;
	margin-left: -300px;
	margin-top: -300px;
	background: radial-gradient(circle, rgba(120, 210, 255, 0.5) 0%, rgba(0, 169, 255, 0.35) 40%, rgba(0, 67, 157, 0.15) 65%, transparent 75%);
	border-radius: 50%;
	filter: blur(60px);
	pointer-events: none;
	z-index: 0;
	animation: cenai-banner-glow-small-big 3s ease-in-out infinite;
}

.cenai-home-hero::after {
	content: '';
	position: absolute;
	top: 30%;
	right: 10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(0, 200, 255, 0.4) 0%, rgba(0, 67, 157, 0.2) 50%, transparent 70%);
	border-radius: 50%;
	filter: blur(50px);
	pointer-events: none;
	z-index: 0;
	animation: cenai-banner-glow-small-big 4s ease-in-out infinite 0.5s;
}

@keyframes cenai-banner-glow-small-big {
	0%, 100% { transform: scale(0.6); opacity: 0.55; }
	50% { transform: scale(1.25); opacity: 0.95; }
}

.cenai-home-hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

/* Light white shape in background – float up/down + glow less→more (faster) */
.cenai-home-hero-bg::before {
	content: '';
	position: absolute;
	bottom: 15%;
	left: 5%;
	width: 380px;
	height: 380px;
	background: radial-gradient(ellipse 80% 70% at 30% 70%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 45%, transparent 70%);
	border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
	filter: blur(50px);
	pointer-events: none;
	animation: cenai-float-up-down 4s ease-in-out infinite, cenai-glow-less-more 3s ease-in-out infinite;
}

.cenai-home-hero-bg::after {
	content: '';
	position: absolute;
	top: 25%;
	right: 15%;
	width: 280px;
	height: 280px;
	background: radial-gradient(ellipse 70% 80% at 60% 40%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 50%, transparent 70%);
	border-radius: 50% 45% 55% 50% / 55% 50% 45% 50%;
	filter: blur(45px);
	pointer-events: none;
	animation: cenai-float-up-down 5s ease-in-out infinite 0.8s, cenai-glow-less-more 3.5s ease-in-out infinite 0.5s;
}

@keyframes cenai-float-up-down {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-28px); }
}

@keyframes cenai-glow-less-more {
	0%, 100% { opacity: 0.65; filter: blur(50px) brightness(0.95); }
	50% { opacity: 1; filter: blur(55px) brightness(1.25); }
}

/* Glowy ball – top-right of banner, keyframe animation */
.cenai-home-hero-ball {
	position: absolute;
	top: 6%;
	right: 6%;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.92) 0%, rgba(200, 230, 255, 0.5) 28%, rgba(0, 67, 157, 0.4) 55%, rgba(0, 100, 180, 0.25) 80%, transparent 100%);
	box-shadow:
		0 0 80px 28px rgba(0, 67, 157, 0.45),
		0 0 140px 50px rgba(0, 67, 157, 0.2),
		inset -12px -12px 28px rgba(0, 40, 80, 0.35),
		inset 10px 10px 22px rgba(255, 255, 255, 0.18);
	pointer-events: none;
	z-index: 1;
	animation: cenai-hero-ball-float 5s ease-in-out infinite, cenai-hero-ball-glow 3.5s ease-in-out infinite;
}

@keyframes cenai-hero-ball-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-12px, -20px) scale(1.08); }
}

@keyframes cenai-hero-ball-glow {
	0%, 100% { opacity: 0.88; filter: brightness(1); box-shadow: 0 0 70px 24px rgba(0, 67, 157, 0.4), 0 0 120px 45px rgba(0, 67, 157, 0.18), inset -12px -12px 28px rgba(0, 40, 80, 0.35), inset 10px 10px 22px rgba(255, 255, 255, 0.18); }
	50% { opacity: 1; filter: brightness(1.2); box-shadow: 0 0 90px 32px rgba(0, 67, 157, 0.5), 0 0 140px 55px rgba(0, 67, 157, 0.22), inset -12px -12px 28px rgba(0, 40, 80, 0.28), inset 10px 10px 22px rgba(255, 255, 255, 0.22); }
}

/* Glowy ball – bottom-left of banner (same style as top-right) */
.cenai-home-hero-ball-bottom-left {
	top: auto;
	right: auto;
	bottom: 6%;
	left: 6%;
	animation-delay: -2s, -1s;
}

/* Banner glowy effect – animated ambient glow (hero only) */
.cenai-home-hero-bg::after {
	content: '';
	position: absolute;
	top: 25%;
	right: 15%;
	width: 280px;
	height: 280px;
	background: radial-gradient(ellipse 70% 80% at 60% 40%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 50%, transparent 70%);
	border-radius: 50% 45% 55% 50% / 55% 50% 45% 50%;
	filter: blur(45px);
	pointer-events: none;
	animation: cenai-float-up-down 5s ease-in-out infinite 0.8s, cenai-banner-glow-pulse 4s ease-in-out infinite 0.5s;
}

@keyframes cenai-banner-glow-pulse {
	0%, 100% { opacity: 0.6; filter: blur(45px) brightness(0.9); }
	50% { opacity: 1; filter: blur(55px) brightness(1.35); }
}

/* Banner ambient glowy effect – soft breathing glow (hero only) */
.cenai-home-hero-glow-ambient {
	position: absolute;
	inset: -20%;
	pointer-events: none;
	z-index: 0;
	background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0, 67, 157, 0.12) 0%, rgba(139, 92, 246, 0.06) 45%, transparent 65%);
	filter: blur(60px);
	animation: cenai-banner-ambient-glow 6s ease-in-out infinite;
}

@keyframes cenai-banner-ambient-glow {
	0%, 100% { opacity: 0.7; filter: blur(60px); }
	50% { opacity: 1; filter: blur(70px); }
}

/* Banner background image – with opacity for softer look */
.cenai-home-hero-bg-image {
	position: absolute;
	inset: 0;
	background-image: url('../images/hero-banner-blue.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.5;
}

.cenai-home-hero-bg-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	pointer-events: none;
}

/* Diagonal lines pattern – subtle drift for AI feel */
.cenai-home-hero-lines {
	position: absolute;
	inset: 0;
	opacity: 0.06;
	background-image: repeating-linear-gradient(
		-45deg,
		transparent,
		transparent 12px,
		rgba(255, 255, 255, 0.03) 12px,
		rgba(255, 255, 255, 0.03) 24px
	);
	background-size: 34px 34px;
	animation: cenai-hero-lines-drift 25s linear infinite;
}

@keyframes cenai-hero-lines-drift {
	0% { background-position: 0 0; }
	100% { background-position: 34px 34px; }
}

.cenai-home-hero-gradient {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 67, 157, 0.08) 0%, transparent 50%),
	            radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
	animation: cenai-hero-gradient-pulse 8s ease-in-out infinite;
}

@keyframes cenai-hero-gradient-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.85; }
}

/* Floating shapes - pink/purple star (left), blue/purple snowflake (right) */
.cenai-home-hero-shape {
	position: absolute;
	pointer-events: none;
	filter: blur(40px);
	opacity: 0.6;
	animation: cenai-float 8s ease-in-out infinite, cenai-glow 4s ease-in-out infinite;
}

.cenai-home-hero-shape-star {
	width: 280px;
	height: 280px;
	top: 15%;
	left: 5%;
	background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, rgba(139, 92, 246, 0.25) 50%, transparent 70%);
	animation-delay: 0s;
}

.cenai-home-hero-shape-snowflake {
	width: 320px;
	height: 320px;
	top: 20%;
	right: 5%;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, rgba(139, 92, 246, 0.3) 50%, transparent 70%);
	animation-delay: -3s;
}

@keyframes cenai-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(15px, -15px) scale(1.05); }
	66% { transform: translate(-10px, 10px) scale(0.98); }
}

@keyframes cenai-glow {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 0.75; }
}

.cenai-home-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: block;
    text-align: center;
}

.cenai-home-hero-content {
    max-width: 100%;
    margin: 0 auto;
}
/* Hero content - centered */
.cenai-home-hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.35rem 0.75rem;
	margin-bottom: 1.25rem;
	font-size: 12px;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.95);
	animation: cenai-fade-up 0.7s ease-out;
}

.cenai-home-hero-tag-icon {
	flex-shrink: 0;
}

.cenai-home-hero-title {
	margin: 0 0 1rem;
	line-height: 1.15;
	font-family: 'Plus Jakarta Sans', sans-serif;
	animation: cenai-fade-up 0.7s ease-out 0.1s both;
}

.cenai-home-hero-title-white {
	display: block;
	font-size: 56px;
	font-weight: 800;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #fff;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

@media (max-width: 768px) {
	.cenai-home-hero-title-white {
		font-size: 36px;
	}
}

.cenai-home-hero-title-accent {
	display: block;
	font-size: 56px;
	font-weight: 800;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #7eb8ff;
	letter-spacing: -0.03em;
	line-height: 1.1;
	min-height: 1.15em;
}

@media (max-width: 768px) {
	.cenai-home-hero-title-accent {
		font-size: 36px;
	}
}

/* Typewriter cursor */
.cenai-typewriter-cursor {
	display: inline-block;
	animation: cenai-blink 0.7s step-end infinite;
	margin-left: 2px;
}

@keyframes cenai-blink {
	0%, 50% { opacity: 1; }
	51%, 100% { opacity: 0; }
}

@keyframes cenai-glow-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.9; }
}

.cenai-home-hero-sub {
	margin: 0 0 1.5rem;
	font-size: 17px;
	color: rgba(255, 255, 255, 0.95);
	max-width: 32em;
	line-height: 1.6;
	animation: cenai-fade-up 0.7s ease-out 0.2s both;
	margin-left: auto;
	margin-right: auto;
}

@keyframes cenai-fade-up {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.cenai-home-hero-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
	max-width: 720px;
	animation: cenai-fade-up 0.7s ease-out 0.28s both;
	margin-left: auto;
	margin-right: auto;
}

.cenai-home-hero-filter-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	font-size: 15px;
	font-weight: 600;
	font-family: inherit;
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 10px;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.cenai-home-hero-filter-btn:hover,
.cenai-home-hero-filter-btn:focus {
	outline: none;
	border-color: rgba(91, 163, 245, 0.6);
	background: rgba(91, 163, 245, 0.2);
	color: #fff;
}

.cenai-home-hero-filter-btn-chevron {
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.cenai-home-hero-filter-btn-label {
	white-space: nowrap;
}

.cenai-home-hero-filter-wrap {
	position: relative;
	overflow: visible;
}

.cenai-home-hero-filter-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 20;
	margin-top: 6px;
	min-width: 100%;
	min-width: max-content;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 10px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	padding: 0.5rem 0;
	max-height: 280px;
	overflow-y: auto;
}

.cenai-home-hero-filter-wrap.cenai-hero-filter-open .cenai-home-hero-filter-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.cenai-home-hero-filter-wrap.cenai-hero-filter-open .cenai-home-hero-filter-btn-chevron {
	transform: rotate(180deg);
}

.cenai-home-hero-filter-option {
	display: block;
	width: 100%;
	padding: 0.65rem 1.25rem;
	font-size: 15px;
	font-family: inherit;
	color: #111;
	background: transparent;
	border: none;
	text-align: left;
	cursor: pointer;
	transition: background 0.15s ease;
	white-space: nowrap;
}

.cenai-home-hero-filter-option:hover {
	background: rgba(0, 67, 157, 0.2);
	color: #111;
}

.cenai-home-hero-filter-option:focus {
	outline: none;
	background: rgba(0, 67, 157, 0.25);
}

@media (max-width: 540px) {
	.cenai-home-hero-filters { flex-direction: column; align-items: stretch; }
	.cenai-home-hero-filter-dropdown { left: 0; right: 0; min-width: 0; }
}

/* Search bar: single large bar with button inside */
.cenai-home-hero-form {
	position: relative;
	display: flex;
	align-items: stretch;
	margin-bottom: 2rem;
	max-width: 720px;
	width: 100%;
	animation: cenai-fade-up 0.7s ease-out 0.3s both;
	margin-left: auto;
	margin-right: auto;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 14px;
	transition: border-color 0.2s, background 0.2s;
}

.cenai-home-hero-form:focus-within {
	border-color: rgba(91, 163, 245, 0.6);
	background: rgba(255, 255, 255, 0.15);
}

.cenai-home-hero-input {
	flex: 1;
	min-width: 0;
	padding: 1.125rem 1.5rem;
	padding-right: 11rem;
	font-size: 18px;
	font-family: inherit;
	color: #fff;
	background: transparent;
	border: none;
	border-radius: 14px;
	transition: background 0.2s;
}

.cenai-home-hero-input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.cenai-home-hero-input:focus {
	outline: none;
}

.cenai-home-hero-cta {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 16px;
    background: linear-gradient(135deg, #00439d 0%, #00439d 50%, #8b5cf6 100%);
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cenai-home-hero-cta:hover {
	transform: translateY(-50%) translateY(-1px);
	box-shadow: 0 8px 20px rgba(0, 67, 157, 0.35);
}

.cenai-home-hero-cta-icon {
	flex-shrink: 0;
}

@media (max-width: 600px) {
	.cenai-home-hero-input {
		padding: 1rem 1.25rem;
		padding-right: 9rem;
		font-size: 16px;
	}
	.cenai-home-hero-cta {
		padding: 0.65rem 1rem;
		font-size: 14px;
	}
	.cenai-home-hero-cta .cenai-home-hero-cta-icon {
		width: 18px;
		height: 18px;
	}
}

.cenai-home-hero-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	font-size: 13px;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.6);
	letter-spacing: 0.02em;
	animation: cenai-fade-up 0.7s ease-out 0.4s both;
}

/* Hero visual - right (robot frame) */
.cenai-home-hero-visual {
	position: relative;
	animation: cenai-fade-up 0.9s ease-out 0.2s both;
}

.cenai-home-hero-frame {
	position: relative;
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	overflow: hidden;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
	background: rgba(0, 0, 0, 0.02);
}

.cenai-home-hero-robot {
	position: relative;
	aspect-ratio: 4/3;
	min-height: 320px;
	overflow: hidden;
}

.cenai-home-hero-robot-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 75% center;
}

.cenai-home-hero-robot-placeholder {
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, rgba(0, 67, 157, 0.15) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(59, 130, 246, 0.08) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.cenai-home-hero-robot-placeholder::after {
	content: '';
	width: 120px;
	height: 120px;
	background: radial-gradient(circle, rgba(0, 67, 157, 0.3) 0%, transparent 70%);
	border-radius: 50%;
	animation: cenai-float 6s ease-in-out infinite;
}

/* ========== ROADMAP SECTION (Browse by Category – unique design only) ========== */
.cenai-home-roadmap {
	position: relative;
	padding: 5.5rem 1.5rem;
	background: #fff;
	overflow: hidden;
}
.cenai-home-roadmap::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 120px;
	background: linear-gradient(180deg, rgba(0, 67, 157, 0.04) 0%, transparent 100%);
	pointer-events: none;
	z-index: 0;
}

/* Flowing ribbon shape – decorative, moves up/down slowly */
.cenai-home-roadmap::after {
	content: '';
	position: absolute;
	top: 15%;
	right: -5%;
	width: 320px;
	height: 400px;
	background-image: url('../images/roadmap-ribbon.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.45;
	pointer-events: none;
	z-index: 0;
	animation: cenai-float-up-down-slow 8s ease-in-out infinite;
}

.cenai-home-roadmap-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: 
		radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 67, 157, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 1px 1px, rgba(0,0,0,0.06) 1px, transparent 0);
	background-size: 100% 100%, 24px 24px;
	animation: cenai-roadmap-bg-pulse 10s ease-in-out infinite;
}

@keyframes cenai-roadmap-bg-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.88; }
}

.cenai-home-roadmap-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
}
.cenai-home-hero-logos {
    display: none;
}

.cenai-home-roadmap-subtitle {
	display: inline-block;
	margin: 0 0 0.5rem;
	padding: 0.35rem 1rem;
	font-size: 11px;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	letter-spacing: 0.2em;
	color: #00439d;
	text-align: center;
	background: rgba(0, 67, 157, 0.12);
	border-radius: 100px;
}

.cenai-home-roadmap-title {
	margin: 0 0 3rem;
	font-size: 2.5rem;
	font-weight: 800;
	font-family: 'Plus Jakarta Sans', sans-serif;
	line-height: 1.2;
	color: #111;
	text-align: center;
	max-width: 16em;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 768px) {
	.cenai-home-roadmap-title { font-size: 1.75rem; }
}

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

@media (max-width: 992px) {
	.cenai-home-roadmap-cards { grid-template-columns: 1fr; }
}

.cenai-home-roadmap-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2.5rem 1.75rem 2rem;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 20px;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
	transition-delay: calc(var(--card-i, 0) * 0.06s);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cenai-home-roadmap-card-accent {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, #00439d 0%, #0066cc 100%);
	border-radius: 4px 0 0 4px;
	opacity: 0.9;
	transition: width 0.3s ease, opacity 0.3s ease;
}

.cenai-home-roadmap-card:hover {
	transform: translateY(-6px);
	border-color: rgba(0, 67, 157, 0.25);
	box-shadow: 0 20px 48px rgba(0, 67, 157, 0.12);
}

.cenai-home-roadmap-card:hover .cenai-home-roadmap-card-accent {
	width: 6px;
	opacity: 1;
}

.cenai-home-roadmap-card-icon {
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #00439d 0%, #0066cc 100%);
	border-radius: 18px;
	color: #fff;
	flex-shrink: 0;
	margin-bottom: 1.25rem;
	box-shadow: 0 8px 24px rgba(0, 67, 157, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cenai-home-roadmap-card-icon svg {
	display: block;
}

.cenai-home-roadmap-card:hover .cenai-home-roadmap-card-icon {
	transform: scale(1.05);
	box-shadow: 0 12px 32px rgba(0, 67, 157, 0.4);
}

.cenai-home-roadmap-card-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
}

.cenai-home-roadmap-card-title {
	margin: 0 0 0.5rem;
	font-size: 22px;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #111;
}

.cenai-home-roadmap-card-desc {
    margin: 10px 0 2rem;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.5;
    flex: 1;
}
.cenai-home-roadmap-card-link {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #00439d;
    transition: color 0.25s ease;
    display: flex;
}

.cenai-home-roadmap-card:hover .cenai-home-roadmap-card-link {
	color: #00439d;
}

.cenai-home-roadmap-card:hover .cenai-home-roadmap-card-title {
	color: #111;
}

.cenai-home-roadmap-card:hover .cenai-home-roadmap-card-desc {
	color: rgba(0, 0, 0, 0.7);
}

.cenai-home-roadmap-card.cenai-scroll-up {
	transition: opacity 0.7s ease-out, transform 0.7s ease-out, border-color 0.3s ease, box-shadow 0.3s ease;
	transition-delay: calc(0.1s + var(--card-i, 0) * 0.1s);
}

.cenai-home-roadmap-card.cenai-scroll-up.cenai-visible {
	transform: translateY(0);
}

/* ========== OUR CLIENTS / HIGHEST QUALITY SERVICE (black & orange) ========== */
.cenai-home-clients {
	position: relative;
	padding: 5rem 1.5rem;
	background: #fff;
	overflow-x: hidden;
	overflow-y: visible;
}
.cenai-home-clients::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 67, 157, 0.12), transparent);
	pointer-events: none;
	z-index: 0;
}

/* Animated shape (before) – soft moving glow */
.cenai-home-clients::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -5%;
	width: 260px;
	height: 260px;
	background: radial-gradient(circle, rgba(0, 67, 157, 0.12) 0%, transparent 65%);
	border-radius: 50%;
	filter: blur(55px);
	pointer-events: none;
	z-index: 0;
	animation: cenai-clients-before-float 13s ease-in-out infinite;
}

@keyframes cenai-clients-before-float {
	0%, 100% { transform: translate(0, -50%) scale(1); opacity: 0.85; }
	50% { transform: translate(30px, calc(-50% - 20px)) scale(1.1); opacity: 1; }
}

.cenai-home-clients-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.cenai-home-clients-waves {
	position: absolute;
	width: 280px;
	height: 280px;
	opacity: 0.22;
	background: radial-gradient(circle, rgba(0, 67, 157, 0.35) 0%, rgba(0, 67, 157, 0.15) 40%, transparent 70%);
	border-radius: 50%;
	filter: blur(40px);
	animation: cenai-clients-waves-float 14s ease-in-out infinite;
}

.cenai-home-clients-waves-tr {
	top: 0;
	right: 0;
	animation-delay: 0s;
}

.cenai-home-clients-waves-bl {
	bottom: 0;
	left: 0;
	background: radial-gradient(circle, rgba(0, 67, 157, 0.25) 0%, rgba(0, 67, 157, 0.12) 50%, transparent 70%);
	animation-delay: -7s;
}

@keyframes cenai-clients-waves-float {
	0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.22; }
	33% { transform: translate(12px, -10px) scale(1.05); opacity: 0.28; }
	66% { transform: translate(-8px, 8px) scale(0.98); opacity: 0.25; }
}

.cenai-home-clients-shape {
	position: absolute;
	top: 0;
	left: 0;
	width: 320px;
	height: 320px;
	background: linear-gradient(135deg, rgba(0, 67, 157, 0.15) 0%, rgba(0, 67, 157, 0.08) 40%, rgba(0, 0, 0, 0.2) 100%);
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	transform: rotate(-15deg) scale(1.2);
	filter: blur(1px);
	animation: cenai-clients-shape-breathe 12s ease-in-out infinite;
}

@keyframes cenai-clients-shape-breathe {
	0%, 100% { transform: rotate(-15deg) scale(1.2); opacity: 1; }
	50% { transform: rotate(-12deg) scale(1.25); opacity: 0.9; }
}

.cenai-home-clients-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

@media (max-width: 992px) {
	.cenai-home-clients-inner {
		grid-template-columns: 1fr;
		text-align: center;
		padding-left: 1rem;
		padding-right: 1rem;
		box-sizing: border-box;
	}
	.cenai-home-clients-left { order: 1; }
	.cenai-home-clients-cards { order: 2; justify-content: center; align-items: center; }
	.cenai-home-clients-card { margin-right: 0 !important; max-width: 100%; }
	.cenai-home-clients-card-illus { right: 0.75rem; width: 48px; height: 48px; }
	.cenai-home-clients-card-illus-2 { right: 0.75rem; }
	.cenai-home-clients-card-illus-3 { right: 0.75rem; }
}

.cenai-home-clients-left-img {
	width: 100%;
	max-width: 100%;
	height: 400px;
	margin: 0 0 1.5rem;
	border-radius: 16px;
	background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=640&q=80');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: 0 12px 40px rgba(0, 67, 157, 0.2);
	animation: cenai-clients-img-float 5s ease-in-out infinite;
}
@keyframes cenai-clients-img-float {
	0%, 100% { transform: translateY(0); box-shadow: 0 12px 40px rgba(0, 67, 157, 0.2); }
	50% { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0, 67, 157, 0.28); }
}
@media (max-width: 992px) {
	.cenai-home-clients-left-img { margin-left: auto; margin-right: auto; }
}
.cenai-home-clients-title {
    margin: 0 0 1rem;
    font-size: 52px;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
    color: #111;
}

.cenai-home-clients-icon-o {
	display:none;
}

.cenai-home-clients-desc {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
	color: rgba(0, 0, 0, 0.7);
	line-height: 1.6;
	max-width: 28em;
}

@media (max-width: 992px) {
	.cenai-home-clients-desc { margin-left: auto; margin-right: auto; }
}

.cenai-home-clients-cards {
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: flex-end;
}

.cenai-home-clients-card {
    position: relative;
    display: block;
    width: 100%;
    max-width: 420px;
    padding: 1.75rem 1.5rem;
    background: #fafafa;
	border-radius: 12px;
	box-shadow: 0 0 0 2px #00439d, 0 12px 32px rgba(0, 67, 157, 0.2);
    text-decoration: none;
    color: inherit;
    margin-bottom: 8px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  
}

.cenai-home-clients-card:nth-child(2) {
    margin-right: 55px;
}

.cenai-home-clients-card:nth-child(3) {
    margin-right: 118px;
}

.cenai-home-clients-card:last-child {
	margin-bottom: 0;
}

.cenai-home-clients-card:hover {
	border-color: transparent;
	box-shadow: 0 0 0 2px #00439d, 0 12px 32px rgba(0, 67, 157, 0.2);
	animation: cenai-clients-border-pulse 2s ease-in-out infinite;
}

@keyframes cenai-clients-border-pulse {
	0%, 100% { box-shadow: 0 0 0 2px #00439d, 0 12px 32px rgba(0, 67, 157, 0.2); }
	50% { box-shadow: 0 0 0 3px #00439d, 0 16px 40px rgba(0, 67, 157, 0.35); }
}

.cenai-home-clients-card-arrow {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: #00439d;
}

.cenai-home-clients-card-title {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #111;
}

.cenai-home-clients-card-desc {
    margin: 0;
    font-size: 16px;
    padding-top: 10px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.5;
    padding-right: 2rem;
}
.cenai-home-clients-card-illus {
	position: absolute;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	right: -32px;
	background: radial-gradient(circle at 40% 40%, rgb(0 145 234), rgba(20, 20, 25, 0.9));
	z-index: 1;
}

.cenai-home-clients-card-illus-2 {
	right: -28px;
	background:radial-gradient(circle at 40% 40%, rgb(249 253 255), rgba(20, 20, 25, 0.9));
	
}

.cenai-home-clients-card-illus-3 {
	right: -24px;
	background: radial-gradient(circle at 40% 40%, rgb(0 145 234), rgba(20, 20, 25, 0.9));
}

/* ========== FEATURED VERTICALS SECTION (industry grid, unique & attractive) ========== */
.cenai-home-verticals {
	position: relative;
	padding: 5.5rem 1.5rem;
	background: #f5f5f7;
	overflow: hidden;
}
.cenai-home-verticals::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 67, 157, 0.15), transparent);
	pointer-events: none;
	z-index: 0;
}

.cenai-home-verticals-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

/* Subtle dot grid background – slow move for AI/data feel */
.cenai-home-verticals-dots {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.06) 1px, transparent 0);
	background-size: 28px 28px;
	background-position: 0 0;
	animation: cenai-verticals-dots-move 40s linear infinite;
}

@keyframes cenai-verticals-dots-move {
	0% { background-position: 0 0; }
	100% { background-position: 28px 28px; }
}

.cenai-home-verticals-shine {
	position: absolute;
	top: -40%;
	left: 50%;
	width: 90%;
	max-width: 700px;
	height: 90%;
	background: radial-gradient(ellipse at center, rgba(0, 67, 157, 0.08) 0%, transparent 60%);
	transform: translateX(-50%);
	animation: cenai-verticals-shine 10s ease-in-out infinite;
}

.cenai-home-verticals-glow {
	position: absolute;
	bottom: -20%;
	right: -10%;
	width: 50%;
	max-width: 400px;
	height: 60%;
	background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.06) 0%, transparent 65%);
	animation: cenai-verticals-glow 12s ease-in-out infinite;
	animation-delay: -3s;
}

@keyframes cenai-verticals-shine {
	0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
	50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

@keyframes cenai-verticals-glow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.1); }
}

.cenai-home-verticals-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
}

.cenai-home-verticals-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3.25rem;
}
.cenai-home-verticals-head-content {
	flex: 1;
	min-width: 280px;
}
.cenai-home-roadmap .cenai-home-roadmap-inner {
    text-align: center;
}
.cenai-home-verticals-label {
	display: inline-block;
	margin: 0 0 0.6rem;
	padding-bottom: 0.35rem;
	font-size: 12px;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	letter-spacing: 0.18em;
	color: #00439d;
	border-bottom: 2px solid rgba(0, 67, 157, 0.35);
}

.cenai-home-verticals-title {
	margin: 0 0 0.85rem;
	font-size: 2.5rem;
	font-weight: 800;
	font-family: 'Plus Jakarta Sans', sans-serif;
	line-height: 1.15;
	color: #111;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.cenai-home-verticals-desc {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.78);
    max-width: 42em;
    margin: 0;
}
.cenai-home-verticals-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 12px 23px;
    background: linear-gradient(135deg, #00439d 0%, #00439d 50%, #8b5cf6 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cenai-home-verticals-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 67, 157, 0.4);
}

.cenai-home-verticals-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

@media (max-width: 991px) {
	.cenai-home-verticals-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}
}

@media (max-width: 576px) {
	.cenai-home-verticals-grid {
		grid-template-columns: 1fr;
	}
	.cenai-home-verticals-btn {
		padding: 0.75rem 1.5rem;
		font-size: 14px;
	}
	.cenai-home-verticals-title {
		font-size: 1.85rem;
	}
}

/* Cards: glass style + gradient border on hover */
.cenai-home-verticals-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1.15rem;
	padding: 1.35rem 1.5rem;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	text-decoration: none;
	color: #111;
	overflow: hidden;
	transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
	transition-delay: calc(var(--v-i, 0) * 0.03s);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.cenai-home-verticals-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
	opacity: 0.8;
}

.cenai-home-verticals-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 67, 157, 0.45);
    box-shadow: 0 20px 48px rgba(0, 67, 157, 0.18), 0 0 0 1px rgba(0, 67, 157, 0.2);
    background: rgb(188 188 212 / 1%);
}
.cenai-home-verticals-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	background: linear-gradient(145deg, rgba(0, 67, 157, 0.2) 0%, rgba(0, 67, 157, 0.08) 100%);
	border: 1px solid rgba(0, 67, 157, 0.2);
	border-radius: 14px;
	color: #00439d;
	transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.cenai-home-verticals-card:hover .cenai-home-verticals-card-icon {
	transform: scale(1.06);
	background: linear-gradient(145deg, rgba(0, 67, 157, 0.3) 0%, rgba(0, 67, 157, 0.15) 100%);
	border-color: rgba(0, 67, 157, 0.4);
	box-shadow: 0 0 24px rgba(0, 67, 157, 0.25);
}

.cenai-home-verticals-card-name {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: color 0.25s ease;
}
.cenai-home-verticals-card:hover .cenai-home-verticals-card-name {
	color: #111;
}

.cenai-home-verticals-card-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	font-size: 1.2rem;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.6);
	background: rgba(0, 0, 0, 0.06);
	border-radius: 8px;
	transition: transform 0.35s ease, color 0.35s ease, background 0.35s ease;
}

.cenai-home-verticals-card:hover .cenai-home-verticals-card-arrow {
	transform: translateX(4px);
	color: #00439d;
	background: rgba(0, 67, 157, 0.15);
}

/* Stagger scroll animation for verticals grid cards */
.cenai-home-verticals-card.cenai-scroll-up {
	transition: opacity 0.7s ease-out, transform 0.7s ease-out, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
	transition-delay: calc(0.08s + var(--v-i, 0) * 0.07s);
}

.cenai-home-verticals-card.cenai-scroll-up.cenai-visible {
    transform: translateY(0);
    border-color: rgba(0, 67, 157, 0.45);
}
/* ========== ULTIMATE AI CHATBOT SECTION (exact design, banner image, blue) ========== */
.cenai-home-ultimate {
	position: relative;
	padding: 5rem 1.5rem;
	background: #fff;
	overflow: hidden;
}

.cenai-home-ultimate-bg-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(0, 67, 157, 0.06) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	animation: cenai-ultimate-pattern-float 15s ease-in-out infinite;
}

@keyframes cenai-ultimate-pattern-float {
	0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
	50% { transform: translate(15px, -12px) scale(1.1); opacity: 0.9; }
}

.cenai-home-ultimate-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

@media (max-width: 992px) {
	.cenai-home-ultimate-inner {
		grid-template-columns: 1fr;
	}
	.cenai-home-ultimate-visual { order: 1; }
	.cenai-home-ultimate-content { order: 2; }
}

/* Left: visual collage */
.cenai-home-ultimate-visual {
	position: relative;
	min-height: 420px;
}

.cenai-home-ultimate-main-wrap {
    position: relative;
    width: 100%;
    max-width: 532px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cenai-home-ultimate-main-img {
    width: 100%;
    height: 500px;
    display: block;
    /* aspect-ratio: 3/4; */
    object-fit: cover;
    object-position: center top;
}
.cenai-home-ultimate-banner-strip {
    display: none;
}
.cenai-home-ultimate-banner-strip {
 display:none;
}

.cenai-home-ultimate-banner-num {
	font-size: 1.75rem;
	font-weight: 800;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #111;
	margin-right: 0.75rem;
}

.cenai-home-ultimate-banner-divider {
	width: 1px;
	height: 28px;
	background: rgba(0, 0, 0, 0.2);
	margin-right: 0.75rem;
}

.cenai-home-ultimate-banner-text {
	font-size: 11px;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #111;
	line-height: 1.3;
	letter-spacing: 0.02em;
}

.cenai-home-ultimate-ribbon {
	position: absolute;
	left: -10px;
	bottom: 50px;
	width: 80px;
	height: 24px;
	background: linear-gradient(90deg, #00439d, #00439d, #0066cc);
	border-radius: 4px;
	transform: rotate(-25deg);
	opacity: 0.9;
}

.cenai-home-ultimate-arm {
	position: absolute;
	left: 20px;
	bottom: 120px;
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(0, 67, 157, 0.3));
	border-radius: 8px;
}

/* Right: content */
.cenai-home-ultimate-content {
	padding: 0 1rem;
}

.cenai-home-ultimate-label {
	margin: 0 0 0.5rem;
	font-size: 13px;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	letter-spacing: 0.12em;
	color: #00439d;
}

.cenai-home-ultimate-title {
	margin: 0 0 1rem;
	font-size: 2.25rem;
	font-weight: 800;
	font-family: 'Plus Jakarta Sans', sans-serif;
	line-height: 1.2;
	color: #111;
}

.cenai-home-ultimate-desc {
    margin: 20px 0 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.6;
}
.cenai-home-ultimate-cards {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.cenai-home-ultimate-cards h3 {
    padding-bottom: 10px;
}
.cenai-home-ultimate-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 19px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.cenai-home-ultimate-card-icon {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #00439d, #00439d);
	border-radius: 50%;
	color: #fff;
}

.cenai-home-ultimate-card-icon svg {
	display: block;
}

.cenai-home-ultimate-card-body {
	flex: 1;
	min-width: 0;
}

.cenai-home-ultimate-card-title {
	margin: 0 0 0.35rem;
	font-size: 1.0625rem;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #111;
}

.cenai-home-ultimate-card-desc {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
	color: rgba(0, 0, 0, 0.6);
	line-height: 1.5;
}

/* ========== CLIENT TOOLS - animated cards ========== */
.cenai-home-tools {
	position: relative;
	padding: 5rem 1.5rem;
	background: #fff;
	overflow: hidden;
}

.cenai-home-tools-bg {
	position: absolute;
	inset: 0;
	background: 
		radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 67, 157, 0.06) 0%, transparent 50%),
		radial-gradient(ellipse 60% 40% at 80% 100%, rgba(0, 67, 157, 0.05) 0%, transparent 50%);
	pointer-events: none;
	animation: cenai-tools-bg-pulse 9s ease-in-out infinite;
}

@keyframes cenai-tools-bg-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.82; }
}

.cenai-home-tools-inner {
	position: relative;
	z-index: 1;
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.cenai-home-tools-label {
	margin: 0 0 0.5rem;
	font-size: 12px;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	letter-spacing: 0.14em;
	color: #00439d;
}

.cenai-home-tools-title {
	margin: 0 0 2.5rem;
	font-size: 2rem;
	font-weight: 800;
	font-family: 'Plus Jakarta Sans', sans-serif;
	line-height: 1.25;
	color: #111;
}

@media (max-width: 768px) {
	.cenai-home-tools-title { font-size: 1.5rem; }
}

.cenai-home-tools-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

@media (max-width: 768px) {
	.cenai-home-tools-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

.cenai-home-tools-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem 1.5rem;
	background: rgba(0, 0, 0, 0.02);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 20px;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease;
	animation: cenai-tools-card-in 0.6s ease-out backwards;
	animation-delay: calc(var(--i, 0) * 0.08s);
}

.cenai-home-tools-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 20px;
	padding: 1px;
	background: linear-gradient(135deg, transparent 40%, rgba(0, 67, 157, 0.4) 50%, transparent 60%);
	background-size: 200% 200%;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.cenai-home-tools-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 67, 157, 0.2);
	border-color: rgba(0, 67, 157, 0.25);
}

.cenai-home-tools-card:hover::before {
	opacity: 1;
	animation: cenai-tools-shine 1.5s ease-in-out;
}

@keyframes cenai-tools-card-in {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes cenai-tools-shine {
	0% { background-position: 200% 200%; }
	100% { background-position: -200% -200%; }
}

.cenai-home-tools-card-glow {
	position: absolute;
	top: -50%;
	left: 50%;
	transform: translateX(-50%);
	width: 120%;
	height: 80%;
	background: radial-gradient(ellipse at center, rgba(0, 67, 157, 0.08) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.cenai-home-tools-card:hover .cenai-home-tools-card-glow {
	opacity: 1;
}

.cenai-home-tools-card-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 800;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #fff;
	background: linear-gradient(135deg, #00439d, #00439d);
	border-radius: 16px;
	margin-bottom: 1rem;
	box-shadow: 0 8px 24px rgba(0, 67, 157, 0.3);
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.cenai-home-tools-card:hover .cenai-home-tools-card-icon {
	transform: scale(1.1) rotate(-3deg);
	box-shadow: 0 12px 32px rgba(0, 67, 157, 0.4);
}

.cenai-home-tools-card-name {
	margin: 0 0 0.35rem;
	font-size: 1.125rem;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #111;
	transition: color 0.2s ease;
}

.cenai-home-tools-card:hover .cenai-home-tools-card-name {
	color: #00439d;
}

.cenai-home-tools-card:hover .cenai-home-tools-card-tag {
	color: rgba(0, 0, 0, 0.75);
}

.cenai-home-tools-card-tag {
	margin: 0 0 1rem;
	font-size: 13px;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
	color: rgba(0, 0, 0, 0.6);
	line-height: 1.4;
}

.cenai-home-tools-card-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	font-size: 1.25rem;
	color: #00439d;
	background: rgba(0, 67, 157, 0.15);
	border-radius: 50%;
	transition: transform 0.3s ease, background 0.3s ease;
}

.cenai-home-tools-card:hover .cenai-home-tools-card-arrow {
	transform: translateX(4px);
	background: rgba(0, 67, 157, 0.3);
}

/* ========== AI FEATURES SECTION (exact design, screenshot image) ========== */
.cenai-home-aifeatures {
	position: relative;
	padding: 5rem 1.5rem;
	background: #f5f5f7;
	overflow: hidden;
}
.cenai-home-aifeatures::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(0deg, rgba(0, 67, 157, 0.03) 0%, transparent 100%);
	pointer-events: none;
	z-index: 0;
}

/* Moving shape – light blue glow, small to big */
.cenai-home-aifeatures::before {
	content: '';
	position: absolute;
	top: 20%;
	right: -5%;
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(100, 180, 255, 0.22) 0%, rgba(0, 67, 157, 0.08) 50%, transparent 65%);
	border-radius: 50%;
	filter: blur(55px);
	pointer-events: none;
	z-index: 0;
	animation: cenai-shape-move-small-big 4s ease-in-out infinite;
}

@keyframes cenai-shape-move-small-big {
	0%, 100% { transform: scale(0.7); opacity: 0.8; }
	50% { transform: scale(1.2); opacity: 1; }
}

.cenai-home-aifeatures-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
}

.cenai-home-aifeatures-head {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
	margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
	.cenai-home-aifeatures-head { grid-template-columns: 1fr; }
}

.cenai-home-aifeatures-label {
	margin: 0 0 0.5rem;
	font-size: 12px;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	letter-spacing: 0.12em;
	color: #7c9cff;
}

.cenai-home-aifeatures-title {
	margin: 0;
	font-size: 2.25rem;
	font-weight: 800;
	font-family: 'Plus Jakarta Sans', sans-serif;
	line-height: 1.2;
	color: #111;
}

@media (max-width: 768px) {
	.cenai-home-aifeatures-title { font-size: 1.75rem; }
}

.cenai-home-aifeatures-desc {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.65;
}

.cenai-home-aifeatures-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

@media (max-width: 768px) {
	.cenai-home-aifeatures-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
	.cenai-home-aifeatures-grid { grid-template-columns: 1fr; }
}

.cenai-home-aifeatures-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 363px;
    display: flex;
    object-position: top;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(124, 156, 255, 0.15);
    box-shadow: 0 0 0 1px rgba(124, 156, 255, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.cenai-home-aifeatures-card:hover {
	border-color: rgba(124, 156, 255, 0.35);
	box-shadow: 0 0 24px rgba(124, 156, 255, 0.12);
}

.cenai-home-aifeatures-card-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.cenai-home-aifeatures-card-1 .cenai-home-aifeatures-card-bg { background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=800&q=80'); }
.cenai-home-aifeatures-card-2 .cenai-home-aifeatures-card-bg { background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=800&q=80'); }
.cenai-home-aifeatures-card-3 .cenai-home-aifeatures-card-bg { background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&q=80'); }
.cenai-home-aifeatures-card-4 .cenai-home-aifeatures-card-bg { background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=800&q=80'); }
.cenai-home-aifeatures-card-5 .cenai-home-aifeatures-card-bg { background-image: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=800&q=80'); }
.cenai-home-aifeatures-card-6 .cenai-home-aifeatures-card-bg { background-image: url('https://images.unsplash.com/photo-1484480974693-6ca0a78fb36b?w=800&q=80'); }

.cenai-home-aifeatures-card-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, #00000008 0%, rgb(0 0 0 / 0%) 30%, rgb(0 0 0 / 23%) 70%, rgb(65 76 158 / 47%) 100%); */
    pointer-events: none;
}
.cenai-home-bottom-tabs p.cenai-home-bottom-tabs-label {
    text-align: center;
    font-size: 12px;
}
.cenai-home-aifeatures-card::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 45%;
	background: linear-gradient(180deg, transparent 0%, rgba(100, 120, 255, 0.2) 50%, rgba(124, 156, 255, 0.35) 100%);
	pointer-events: none;
	border-radius: 0 0 16px 16px;
}

.cenai-home-aifeatures-card-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(167deg, #0405096B 0%, #00137296 100%);
    padding: 1.75rem 1.5rem;
}
.cenai-home-aifeatures-card-title {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #fff;
}
h2.cenai-home-clients-title {
    padding-top: 15px;
}

.cenai-home-aifeatures-card-text {
    margin: 0;
    font-size: 14px;
    padding-top: 10px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: rgb(255 255 255);
    line-height: 1.5;
}
/* Stagger card animation when grid is visible */
.cenai-home-aifeatures-grid .cenai-home-aifeatures-card {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cenai-home-aifeatures-grid .cenai-home-aifeatures-card:nth-child(1) { transition-delay: 0.05s; }
.cenai-home-aifeatures-grid .cenai-home-aifeatures-card:nth-child(2) { transition-delay: 0.12s; }
.cenai-home-aifeatures-grid .cenai-home-aifeatures-card:nth-child(3) { transition-delay: 0.19s; }
.cenai-home-aifeatures-grid .cenai-home-aifeatures-card:nth-child(4) { transition-delay: 0.26s; }
.cenai-home-aifeatures-grid .cenai-home-aifeatures-card:nth-child(5) { transition-delay: 0.33s; }
.cenai-home-aifeatures-grid .cenai-home-aifeatures-card:nth-child(6) { transition-delay: 0.4s; }

.cenai-home-aifeatures-grid.cenai-visible .cenai-home-aifeatures-card {
	opacity: 1;
	transform: translateY(0);
}

/* ========== AI TECHNOLOGY THAT DRIVES BETTER DECISIONS (exact from screenshot) ========== */
.cenai-home-aitech {
	position: relative;
	padding: 5rem 1.5rem;
	background: #fff;
	overflow: hidden;
}
.cenai-home-aitech::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 200px;
	background: linear-gradient(180deg, rgba(0, 67, 157, 0.03) 0%, transparent 100%);
	pointer-events: none;
	z-index: 0;
}

.cenai-home-aitech-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

@media (max-width: 992px) {
	.cenai-home-aitech-inner { grid-template-columns: 1fr; }
}

.cenai-home-aitech-left {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.cenai-home-aitech-graphic {
	position: relative;
	width: 100%;
	aspect-ratio: 4/3;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(124, 156, 255, 0.12);
	box-shadow: 0 0 40px rgba(0, 67, 157, 0.08);
}

.cenai-home-aitech-graphic-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: left center;
	opacity: 1;
	visibility: visible;
	animation: cenai-fade-up 0.7s ease-out 0.2s both;
}
.cenai-home-aitech-card {
	position: relative;
	padding: 1.5rem 1.5rem;
	background: rgb(232 232 238 / 80%);
	border: 1px solid rgba(124, 156, 255, 0.1);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.cenai-home-aitech-card-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #00439d;
	border-radius: 50%;
	color: #fff;
	flex-shrink: 0;
}

.cenai-home-aitech-card-title {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #111;
}

.cenai-home-aitech-card-text {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    padding-top: 12px;
    font-family: 'Poppins', sans-serif;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.55;
}
.cenai-home-aitech-right {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.cenai-home-aitech-label {
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	letter-spacing: 0.12em;
	color: #7c9cff;
}

.cenai-home-aitech-title {
	margin: 0 0 0.5rem;
	font-size: 2rem;
	font-weight: 800;
	font-family: 'Plus Jakarta Sans', sans-serif;
	line-height: 1.25;
	color: #111;
}

@media (max-width: 768px) {
	.cenai-home-aitech-title { font-size: 1.5rem; }
}

.cenai-home-aitech-intro {
    margin: 0 0 0.5rem;
    font-size: 15px;
    padding-bottom: 18px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.65;
}

.cenai-home-aitech-accordion {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.cenai-home-aitech-acc-item {
	background: rgb(255 255 255);
	border: 1px solid rgba(124, 156, 255, 0.1);
	border-radius: 10px;
	overflow: hidden;
}

.cenai-home-aitech-acc-open .cenai-home-aitech-acc-body {
	display: block;
}

.cenai-home-aitech-acc-open .cenai-home-aitech-acc-icon {
	transform: rotate(180deg);
}

.cenai-home-aitech-acc-head {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: #fffdfdfc;
	border: none;
	color: inherit;
	font: inherit;
	cursor: pointer;
	text-align: left;
	transition: background 0.2s ease;
}

.cenai-home-aitech-acc-head:hover {
	background: rgba(232, 232, 238, 0.6);
}

.cenai-home-aitech-acc-title {
	font-size: 1rem;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #111;
}

.cenai-home-aitech-acc-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 79 173);
    border-radius: 50%;
    font-size: 14px;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.cenai-home-aitech-acc-body {
	display: none;
	padding: 0 1.25rem 1.25rem;
}

.cenai-home-aitech-acc-body p {
	margin: 0;
	padding: 0.75rem 1rem;
	background: rgb(255 255 255 / 60%);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
	color: rgba(0, 0, 0, 0.65);
	line-height: 1.55;
}

/* ========== 3-STEP EXPLAINER (bottom, builds trust) ========== */
.cenai-home-explainer {
	position: relative;
	padding: 5rem 1.5rem 6rem;
	background: #f5f5f7;
	overflow: hidden;
}

/* Plexus background – glowing network, runs automatically */
.cenai-home-explainer::before {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0.25;
	pointer-events: none;
	z-index: 0;
	animation: cenai-plexus-drift 20s ease-in-out infinite, cenai-float-up-down-slow 8s ease-in-out infinite;
}

@keyframes cenai-plexus-drift {
	0%, 100% { opacity: 0.22; background-position: 60% 50%; }
	50% { opacity: 0.32; background-position: 55% 48%; }
}

/* Spiral/ribbon shape with glowy effect – parallax-like + slow up/down */
.cenai-home-explainer::after {
	content: '';
	position: absolute;
	bottom: 10%;
	left: -5%;
	width: 380px;
	height: 480px;
	background-image: url('../images/explainer-spiral.svg');
	background-size: contain;
	background-position: left bottom;
	background-repeat: no-repeat;
	opacity: 0.5;
	pointer-events: none;
	z-index: 0;
	filter: drop-shadow(0 0 30px rgba(0, 67, 157, 0.2));
	animation: cenai-spiral-parallax 10s ease-in-out infinite 1s;
}

@keyframes cenai-float-up-down-slow {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-20px); }
}

@keyframes cenai-roadmap-glowy-float {
	0%, 100% { transform: translateY(0) scale(1); }
	50% { transform: translateY(-18px) scale(1.15); }
}

@keyframes cenai-spiral-parallax {
	0%, 100% { transform: translateY(0) translateX(0); }
	25% { transform: translateY(-18px) translateX(6px); }
	50% { transform: translateY(-8px) translateX(-4px); }
	75% { transform: translateY(-14px) translateX(4px); }
}

.cenai-home-explainer-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.cenai-home-explainer-glow {
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.2;
	animation: cenai-explainer-glow-float 8s ease-in-out infinite;
}

.cenai-home-explainer-glow-1 {
	top: -100px;
	left: 10%;
	background: rgba(0, 67, 157, 0.25);
}

.cenai-home-explainer-glow-2 {
	bottom: -100px;
	right: 15%;
	background: rgba(139, 92, 246, 0.15);
	animation-delay: -4s;
}

@keyframes cenai-explainer-glow-float {
	0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.35; }
	50% { transform: scale(1.15) translate(10px, -22px); opacity: 0.55; }
}

.cenai-home-explainer-line {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 85%;
	max-width: 900px;
	height: 120px;
	opacity: 0.5;
	animation: cenai-explainer-line-pulse 6s ease-in-out infinite;
}

@keyframes cenai-explainer-line-pulse {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 0.7; }
}

.cenai-home-explainer-path {
	animation: cenai-explainer-dash 20s linear infinite;
}

@keyframes cenai-explainer-dash {
	to { stroke-dashoffset: -28; }
}

.cenai-home-explainer-inner {
	position: relative;
	z-index: 1;
	max-width: 1100px;
	margin: 0 auto;
}

.cenai-home-explainer-head {
	text-align: center;
	margin-bottom: 3.5rem;
}

.cenai-home-explainer-label {
	margin: 0 0 0.5rem;
	font-size: 12px;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	letter-spacing: 0.2em;
	color: #00439d;
}

.cenai-home-explainer-title {
	margin: 0 0 0.75rem;
	font-size: 2rem;
	font-weight: 800;
	font-family: 'Plus Jakarta Sans', sans-serif;
	line-height: 1.2;
	color: #111;
}
.cenai-home-explainer-tagline {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
}

.cenai-home-explainer-trust {
	color: #00439d;
	font-weight: 700;
}

.cenai-home-explainer-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	align-items: stretch;
	margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
	.cenai-home-explainer-steps {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.cenai-home-explainer-line {
		display: none;
	}
}

.cenai-home-explainer-step {
	position: relative;
	padding: 2rem 1.5rem;
	background: rgba(0, 0, 0, 0.02);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	text-align: center;
	transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
	transition-delay: calc(var(--step-i, 0) * 0.05s);
}

.cenai-home-explainer-step:hover {
	transform: translateY(-6px);
	border-color: rgba(0, 67, 157, 0.35);
	box-shadow: 0 20px 48px rgba(0, 67, 157, 0.12);
	background: rgba(0, 67, 157, 0.06);
}

.cenai-home-explainer-step-number {
    position: absolute;
    top: -20px;
    right: 1rem;
    font-size: 52px;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
    color: rgba(0, 67, 157, 0.64);
}

.cenai-home-explainer-step-icon-wrap {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(0, 67, 157, 0.2) 0%, rgba(0, 67, 157, 0.08) 100%);
	border: 1px solid rgba(0, 67, 157, 0.25);
	border-radius: 16px;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	animation: cenai-explainer-icon-pulse 2.5s ease-in-out infinite;
}
.cenai-home-explainer-step:nth-child(1) .cenai-home-explainer-step-icon-wrap { animation-delay: 0s; }
.cenai-home-explainer-step:nth-child(2) .cenai-home-explainer-step-icon-wrap { animation-delay: 0.4s; }
.cenai-home-explainer-step:nth-child(3) .cenai-home-explainer-step-icon-wrap { animation-delay: 0.8s; }
@keyframes cenai-explainer-icon-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(0, 67, 157, 0.25); transform: scale(1); }
	50% { box-shadow: 0 0 28px rgba(0, 67, 157, 0.4); transform: scale(1.05); }
}

.cenai-home-explainer-step:hover .cenai-home-explainer-step-icon-wrap {
	transform: scale(1.08);
	box-shadow: 0 0 28px rgba(0, 67, 157, 0.2);
}

.cenai-home-explainer-step-icon {
	color: #00439d;
	flex-shrink: 0;
}

.cenai-home-explainer-step-title {
	margin: 0 0 0.75rem;
	font-size: 1.2rem;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #111;
}

.cenai-home-explainer-step-desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    padding-top: 10px;
    color: rgba(0, 0, 0, 0.65);
}

.cenai-home-explainer-step.cenai-scroll-up {
	transition: opacity 0.7s ease-out, transform 0.7s ease-out, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
	transition-delay: calc(0.08s + var(--step-i, 0) * 0.1s);
}

.cenai-home-explainer-step.cenai-scroll-up.cenai-visible {
	transform: translateY(0);
}

.cenai-home-explainer-cta-wrap {
	text-align: center;
	padding-top: 1rem;
}

.cenai-home-explainer-cta-text {
	margin: 0 0 1rem;
	font-size: 1rem;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.8);
}

.cenai-home-explainer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    letter-spacing: 0.2px;
    background: linear-gradient(135deg, #00439d 0%, #00439d 50%, #8b5cf6 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cenai-home-explainer-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 67, 157, 0.4);
}

/* ========== BOTTOM TABBING SECTION (Marketing, Coding, Design, Writing) ========== */
.cenai-home-bottom-tabs {
	position: relative;
	padding: 5.5rem 1.5rem;
	background: #fff;
	overflow: hidden;
}

/* Moving shape – light blue glow that drifts */
.cenai-home-bottom-tabs::before {
	content: '';
	position: absolute;
	bottom: 15%;
	left: 8%;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(0, 200, 255, 0.2) 0%, rgba(0, 67, 157, 0.08) 50%, transparent 70%);
	border-radius: 50%;
	filter: blur(45px);
	pointer-events: none;
	z-index: 0;
	animation: cenai-shape-move-drift 6s ease-in-out infinite;
}

@keyframes cenai-shape-move-drift {
	0%, 100% { transform: translate(0, 0) scale(0.9); opacity: 0.9; }
	33% { transform: translate(30px, -20px) scale(1.1); opacity: 1; }
	66% { transform: translate(-15px, 25px) scale(0.95); opacity: 0.95; }
}

.cenai-home-bottom-tabs-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
}

.cenai-home-bottom-tabs-label {
	margin: 0 0 0.5rem;
	font-size: 11px;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	letter-spacing: 0.2em;
	color: #00439d;
}

.cenai-home-bottom-tabs-title {
	margin: 0 0 2rem;
	font-size: 1.85rem;
	font-weight: 800;
	font-family: 'Plus Jakarta Sans', sans-serif;
	line-height: 1.2;
	color: #111;
	text-align: center;
}

.cenai-home-bottom-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
	margin-bottom: 2.5rem;
}

.cenai-home-bottom-tab {
    padding: 0.75rem 1.5rem;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.cenai-home-bottom-tab:hover {
	color: #111;
	background: rgba(0, 0, 0, 0.06);
	border-color: rgba(0, 0, 0, 0.15);
}

.cenai-home-bottom-tab.active {
	color: #111;
	background: linear-gradient(135deg, rgba(0, 67, 157, 0.3) 0%, rgba(0, 67, 157, 0.15) 100%);
	border-color: rgba(0, 67, 157, 0.5);
	box-shadow: 0 4px 20px rgba(0, 67, 157, 0.2);
}

.cenai-home-bottom-tabs-panel {
	display: none;
	padding: 0;
	background: transparent;
	border: none;
}

.cenai-home-bottom-tabs-panel.active {
	display: block;
	animation: cenai-bottom-tab-in 0.4s ease-out;
}

.cenai-home-bottom-tabs-panel[hidden] {
	display: none !important;
}

@keyframes cenai-bottom-tab-in {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}

.cenai-home-bottom-tabs-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.cenai-home-bottom-tabs-cards--carousel {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 8px;
}

.cenai-home-bottom-tabs-cards--carousel .cenai-home-article-card {
	flex: 0 0 calc(33.333% - 1rem);
	min-width: 280px;
	scroll-snap-align: start;
}

.cenai-home-bottom-tabs-cards--carousel::-webkit-scrollbar {
	height: 8px;
}

.cenai-home-bottom-tabs-cards--carousel::-webkit-scrollbar-track {
	background: #f1f5f9;
	border-radius: 999px;
}

.cenai-home-bottom-tabs-cards--carousel::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 999px;
}

/* Shared article card (blog section + tab panels) */
.cenai-home-article-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cenai-home-article-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.cenai-home-article-card:hover .cenai-home-article-card-title,
.cenai-home-article-card:hover .cenai-home-article-card-meta,
.cenai-home-article-card:hover .cenai-home-article-card-link {
	color: #111;
}

.cenai-home-article-card:hover .cenai-home-article-card-meta {
	color: rgba(0, 0, 0, 0.8);
}

.cenai-home-article-card:hover .cenai-home-article-card-link {
	color: #00439d;
}

.cenai-home-article-card-img-wrap {
	aspect-ratio: 400 / 260;
	overflow: hidden;
	background: #f0f0f2;
}

.cenai-home-article-card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cenai-home-article-card-meta {
	margin: 0;
	padding: 1rem 1.25rem 0.5rem;
	font-size: 12px;
	font-weight: 600;
	font-family: 'Plus Jakarta Sans', sans-serif;
	letter-spacing: 0.02em;
	color: rgba(0, 0, 0, 0.8);
}

.cenai-home-article-card-title {
	margin: 0;
	padding: 0 1.25rem 1rem;
	font-size: 1.1rem;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	line-height: 1.35;
	color: #111;
}

.cenai-home-article-card-link {
    display: flex;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #00439d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cenai-home-article-card-link:hover {
	color: #00439d;
}

/* ========== TESTIMONIALS – black bg like other sections, light blue shape, angular cards, smaller avatar ========== */
.cenai-home-testimonials {
	position: relative;
	padding: 5rem 1.5rem;
	background: #f5f5f7;
	overflow: hidden;
}

/* Animated shape (after) – floating accent */
.cenai-home-testimonials::after {
	content: '';
	position: absolute;
	bottom: 10%;
	right: 8%;
	width: 180px;
	height: 180px;
	background: radial-gradient(circle, rgba(0, 169, 255, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	filter: blur(50px);
	pointer-events: none;
	z-index: 0;
	animation: cenai-testimonials-after-float 8s ease-in-out infinite;
}

@keyframes cenai-testimonials-after-float {
	0%, 100% { transform: translate(0, 0); opacity: 0.9; }
	50% { transform: translate(20px, -18px); opacity: 1; }
}

.cenai-home-testimonials-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.58;
	pointer-events: none;
	z-index: 0;
}

.cenai-home-testimonials-blob-1 {
	width: 420px;
	height: 420px;
	top: -140px;
	left: -120px;
	background: rgba(0, 169, 255, 0.35);
	animation: cenai-testimonials-blob-small-big 5s ease-in-out infinite;
}

@keyframes cenai-testimonials-blob-small-big {
	0%, 100% { transform: translate(0, 0) scale(0.75); opacity: 0.55; }
	50% { transform: translate(0, 0) scale(1.15); opacity: 0.85; }
}

.cenai-home-testimonials-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
}

.cenai-home-testimonials-title {
	margin: 0 0 2.5rem;
	font-size: 1.75rem;
	font-weight: 800;
	font-family: 'Plus Jakarta Sans', sans-serif;
	line-height: 1.25;
	color: rgba(0, 0, 0, 0.95);
	text-align: center;
}

.cenai-home-testimonials-title-line1 {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.8);
	letter-spacing: 0.02em;
}

.cenai-home-testimonials-title-line2 {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	color: #111;
	margin-top: 0.2rem;
}

.cenai-home-testimonials-slider {
	overflow: hidden;
	margin-bottom: 2rem;
}

.cenai-home-testimonials-track {
	display: flex;
	transition: transform 0.5s ease-out;
}

.cenai-home-testimonials-slide {
    display: flex;
    flex: 0 0 100%;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    padding: 0 0.5rem;
    min-width: 0;
}

/* Dark card with angular cut bottom-left, image overlapping top-right */
.cenai-home-testimonial-card {
    position: relative;
    flex: 1;
    min-width: 0;
    max-width: 346px;
    padding: 31px 20px 29px 18px;
    /* padding-top: 3.5rem; */
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px 16px 16px 4px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 14% 100%, 0 86%, 0 0);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cenai-home-testimonial-card::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 32px 32px;
	border-color: transparent transparent rgba(255, 255, 255, 0.95) transparent;
}

.cenai-home-testimonial-card-middle {
	z-index: 2;
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 67, 157, 0.2);
}

.cenai-home-testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(0, 67, 157, 0.25);
}

.cenai-home-testimonial-card-middle:hover {
	transform: translateY(-14px);
}

/* Avatar overlapping top-right – attractive frame with blue accent and soft glow */
.cenai-home-testimonial-avatar-wrap {
	position: absolute;
	top: -12px;
	right: -12px;
	width: 88px;
	height: 88px;
	border-radius: 14px;
	overflow: hidden;
	border: 2px solid rgba(0, 67, 157, 0.5);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 24px rgba(0, 67, 157, 0.15);
	z-index: 2;
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.cenai-home-testimonial-card:hover .cenai-home-testimonial-avatar-wrap {
	border-color: rgba(0, 67, 157, 0.7);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 32px rgba(0, 67, 157, 0.25);
}

.cenai-home-testimonial-card:hover .cenai-home-testimonial-text,
.cenai-home-testimonial-card:hover .cenai-home-testimonial-name,
.cenai-home-testimonial-card:hover .cenai-home-testimonial-role {
	color: #111;
}

.cenai-home-testimonial-card:hover .cenai-home-testimonial-text {
	color: rgba(0, 0, 0, 0.85);
}

.cenai-home-testimonial-card:hover .cenai-home-testimonial-role {
	color: rgba(0, 0, 0, 0.6);
}

.cenai-home-testimonial-avatar {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cenai-home-testimonial-stars {
	display: flex;
	align-items: center;
	gap: 0.2rem;
	margin-bottom: 0.75rem;
	color: #00439d;
	line-height: 1;
}
.cenai-home-testimonial-stars svg {
	flex-shrink: 0;
}

.cenai-home-testimonial-text {
    margin: 0 0 1rem;
    font-size: 14px;
    padding-top: 1;
    max-width: 267px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.85);
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-right: 2rem;
}

.cenai-home-testimonial-quote {
    position: absolute;
    bottom: 3.25rem;
    left: 1.5rem;
    font-size: 75px;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(0, 67, 157, 0.35);
    pointer-events: none;
}

.cenai-home-testimonial-name {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #111;
}

.cenai-home-testimonial-role {
	margin: 0.25rem 0 0;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: rgba(0, 0, 0, 0.6);
	font-family: 'Plus Jakarta Sans', sans-serif;
}

.cenai-home-testimonials-dots {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
}

.cenai-home-testimonials-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 2px solid rgba(0, 67, 157, 0.4);
	background: transparent;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.3s ease, border-color 0.3s ease;
}

.cenai-home-testimonials-dot:hover {
	border-color: rgba(0, 67, 157, 0.7);
	background: rgba(0, 67, 157, 0.15);
}

.cenai-home-testimonials-dot.active {
	background: #00439d;
	border-color: #00439d;
}

@media (max-width: 900px) {
	.cenai-home-testimonials-slide {
		flex-direction: column;
		align-items: center;
	}
	.cenai-home-testimonial-card,
	.cenai-home-testimonial-card-middle {
		max-width: 100%;
		transform: none;
	}
	.cenai-home-testimonial-card:hover,
	.cenai-home-testimonial-card-middle:hover {
		transform: translateY(-4px);
	}
}

/* ========== OUR RECENT ARTICLES BLOG SECTION ========== */
.cenai-home-blog {
	position: relative;
	padding: 5rem 1.5rem;
	background: #f5f5f7;
	overflow: hidden;
}

.cenai-home-blog::before {
	content: '';
	position: absolute;
	top: -20%;
	right: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(0, 67, 157, 0.08) 0%, transparent 65%);
	border-radius: 50%;
	filter: blur(60px);
	pointer-events: none;
	animation: cenai-blog-glow-float 12s ease-in-out infinite;
}

@keyframes cenai-blog-glow-float {
	0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
	50% { transform: translate(-20px, 15px) scale(1.1); opacity: 1; }
}

.cenai-home-blog-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
}

.cenai-home-blog-header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.cenai-home-blog-label {
	margin: 0 0 0.35rem;
	font-size: 11px;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	letter-spacing: 0.2em;
	color: #00439d;
}

.cenai-home-blog-title {
	margin: 0;
	font-size: 2rem;
	font-weight: 800;
	font-family: 'Plus Jakarta Sans', sans-serif;
	line-height: 1.2;
	color: #111;
}

.cenai-home-blog-cta-wrap {
	display: flex;
	align-items: stretch;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, #00439d 0%, #00439d 100%);
	box-shadow: 0 4px 16px rgba(0, 67, 157, 0.25);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cenai-home-blog-cta-wrap:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 67, 157, 0.4);
}

.cenai-home-blog-view-more {
	display: inline-flex;
	align-items: center;
	padding: 0.85rem 1.5rem;
	background: transparent;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	text-decoration: none;
	transition: opacity 0.25s ease;
}

.cenai-home-blog-view-more:hover {
	opacity: 0.95;
}

.cenai-home-blog-arrow-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	padding: 0;
	background: transparent;
	border: none;
	border-left: 1px solid rgba(255, 255, 255, 0.25);
	color: #f6f6f6;
	cursor: pointer;
	transition: opacity 0.25s ease;
}

.cenai-home-blog-arrow-btn:hover {
	opacity: 0.9;
}

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

@media (max-width: 900px) {
	.cenai-home-blog-cards,
	.cenai-home-bottom-tabs-cards {
		grid-template-columns: 1fr;
	}
}

/* ========== JOIN OUR NEWSLETTER ========== */
.cenai-home-newsletter {
	position: relative;
	padding: 5rem 1.5rem;
	overflow: hidden;
}

/* Animated shape (before) – soft orb that moves */
.cenai-home-newsletter::before {
	content: '';
	position: absolute;
	top: 20%;
	right: 5%;
	width: 220px;
	height: 220px;
	background: radial-gradient(circle, rgba(0, 67, 157, 0.2) 0%, transparent 65%);
	border-radius: 50%;
	filter: blur(40px);
	pointer-events: none;
	z-index: 0;
	animation: cenai-newsletter-orb-float 14s ease-in-out infinite;
}

@keyframes cenai-newsletter-orb-float {
	0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.9; }
	50% { transform: translate(-25px, 15px) scale(1.15); opacity: 1; }
}

.cenai-home-newsletter-bg {
	position: absolute;
	inset: 0;
}

/* Same banner background image as hero */
.cenai-home-newsletter-bg-image {
	position: absolute;
	inset: 0;
	background-image: url('../images/hero-banner-blue.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.cenai-home-newsletter-bg-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 12, 22, 0.78);
	pointer-events: none;
}

.cenai-home-newsletter-bg-overlay::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(0, 67, 157, 0.12) 0%, transparent 50%);
	pointer-events: none;
	transform-origin: 30% 50%;
	animation: cenai-newsletter-glow-breathe 4s ease-in-out infinite;
}

@keyframes cenai-newsletter-glow-breathe {
	0%, 100% { opacity: 0.9; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}

.cenai-home-newsletter-inner {
	position: relative;
	z-index: 1;
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 2.5rem;
}

.cenai-home-newsletter-content {
	position: relative;
	padding-left: 1.25rem;
	border-left: 4px solid #00439d;
	max-width: 36rem;
}

.cenai-home-newsletter-badge {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.85rem;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.15em;
    color: #dcebff;
    background: rgba(0, 67, 157, 0.12);
    border-radius: 6px;
}

.cenai-home-newsletter-title {
	margin: 0 0 0.75rem;
	font-size: 2.25rem;
	font-weight: 800;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #fff;
	line-height: 1.2;
	letter-spacing: -0.02em;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
input.cenai-home-newsletter-input {
    border: 0;
}
.cenai-home-newsletter-desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cenai-home-newsletter-form-wrap {
	flex-shrink: 0;
	margin-left: auto;
}

.cenai-home-newsletter-form {
	display: flex;
	align-items: stretch;
	gap: 0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 60px rgba(0, 67, 157, 0.15);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cenai-home-newsletter-form:focus-within {
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(0, 67, 157, 0.4), 0 0 80px rgba(0, 67, 157, 0.2);
	transform: translateY(-2px);
}

.cenai-home-newsletter-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1.25rem;
    background: rgb(255 255 255);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    border-radius: 16px 0 0 16px;
}

.cenai-home-newsletter-mail-icon {
	flex-shrink: 0;
	color: rgba(0, 67, 157, 0.7);
	transition: color 0.2s ease;
}

.cenai-home-newsletter-form:focus-within .cenai-home-newsletter-mail-icon {
	color: #00439d;
}

.cenai-home-newsletter-input {
	width: 260px;
	padding: 1.05rem 0;
	font-size: 1rem;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #111;
	background: transparent;
	border: none;
	outline: none;
	transition: opacity 0.2s ease;
}

.cenai-home-newsletter-input::placeholder {
	color: rgba(0, 0, 0, 0.4);
}

.cenai-home-newsletter-btn {
    padding: 1.05rem 1.85rem;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.08em;
    color: #0a0a0e;
    background: linear-gradient(135deg, #fff 0%, #aedeff 100%);
    border: none;
    border-radius: 0 16px 16px 0;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.cenai-home-newsletter-btn:hover {
	background: linear-gradient(135deg, #fff 0%, #fff 100%);
	box-shadow: inset 0 0 0 1px rgba(0, 67, 157, 0.2);
	transform: scale(1.02);
}

@media (max-width: 700px) {
	.cenai-home-newsletter {
		padding: 3.5rem 1.5rem;
	}
	.cenai-home-newsletter-inner {
		flex-direction: column;
		align-items: stretch;
	}
	.cenai-home-newsletter-content {
		padding-left: 0;
		border-left: none;
		border-top: 4px solid #00439d;
		padding-top: 1rem;
		margin-bottom: 0.5rem;
		text-align: center;
	}
	.cenai-home-newsletter-title,
	.cenai-home-newsletter-desc {
		visibility: visible;
		opacity: 1;
	}
	.cenai-home-newsletter-form-wrap {
		width: 100%;
		max-width: 100%;
	}
	.cenai-home-newsletter-form {
		flex-direction: column;
		border-radius: 16px;
		width: 100%;
	}
	.cenai-home-newsletter-input-wrap {
		width: 100%;
		min-height: 52px;
		padding: 0 1rem;
		border-right: none;
		border-radius: 16px 16px 0 0;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		gap: 0.75rem;
	}
	.cenai-home-newsletter-input {
		width: 100%;
		min-width: 0;
		min-height: 48px;
		padding: 0.875rem 0;
		font-size: 16px;
		box-sizing: border-box;
	}
	.cenai-home-newsletter-btn {
		border-radius: 0 0 16px 16px;
		min-height: 52px;
		padding: 1rem 1.25rem;
		font-size: 12px;
		white-space: nowrap;
	}
}

/* ========== FOOTER – unique, attractive design with background image ========== */
@keyframes cenai-footer-glow-pulse {
	0%, 100% {
		opacity: 0.9;
		box-shadow: 0 0 20px rgba(125, 211, 252, 0.4), 0 0 40px rgba(125, 211, 252, 0.2), 0 2px 24px rgba(125, 211, 252, 0.3);
	}
	50% {
		opacity: 1;
		box-shadow: 0 0 32px rgba(125, 211, 252, 0.6), 0 0 60px rgba(125, 211, 252, 0.25), 0 2px 28px rgba(125, 211, 252, 0.45);
	}
}

.cenai-home-footer {
	position: relative;
	background-color: #0f172a;
	background-image: url('../images/footer-bg.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	font-family: 'Plus Jakarta Sans', sans-serif;
	overflow: hidden;
}

.cenai-home-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, transparent 0%, rgba(125, 211, 252, 0.3) 10%, #7dd3fc 25%, rgba(125, 211, 252, 0.9) 50%, #7dd3fc 75%, rgba(125, 211, 252, 0.3) 90%, transparent 100%);
	z-index: 1;
	box-shadow: 0 0 24px rgba(125, 211, 252, 0.5), 0 0 48px rgba(125, 211, 252, 0.2), 0 2px 24px rgba(125, 211, 252, 0.35);
	animation: cenai-footer-glow-pulse 3s ease-in-out infinite;
}

.cenai-home-footer::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.92) 50%, rgba(15, 23, 42, 0.95) 100%);
	pointer-events: none;
	z-index: 0;
}

.cenai-home-footer-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.cenai-home-footer-top {
	padding: 4rem 0 3rem;
	position: relative;
	z-index: 1;
}

.cenai-home-footer-top .cenai-home-footer-inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 2.5rem;
}

.cenai-home-footer-col {
	position: relative;
}

.cenai-home-footer-col:not(.cenai-home-footer-brand) {
	padding-left: 1.25rem;
	border-left: 3px solid rgba(125, 211, 252, 0.35);
}

.cenai-home-footer-brand {
	padding-right: 0.5rem;
}

.cenai-home-footer-logo {
	display: inline-block;
	margin-bottom: 1.25rem;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.cenai-home-footer-logo:hover {
	opacity: 0.95;
	transform: scale(1.03);
}

.cenai-home-footer-logo:hover .cenai-home-footer-logo-img {
	filter: brightness(0) invert(1) drop-shadow(0 4px 14px rgba(125, 211, 252, 0.4));
}

.cenai-home-footer-logo-img {
	display: block;
	height: 44px;
	width: auto;
	object-fit: contain;
	filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
	transition: filter 0.35s ease;
}

.cenai-home-footer-logo img {
	width: 200px;
}
.cenai-home-footer-desc {
    margin: 0 0 1.25rem;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 280px;
}

.cenai-home-footer-phone {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.25rem;
}

.cenai-home-footer-phone-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #7dd3fc;
}

.cenai-home-footer-phone-num {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.cenai-home-footer-call {
    margin: 0 0 1rem;
    font-size: 13px;
    font-weight: 600;
    color: #7dd3fc;
    display: none;
    /* margin-bottom: 14px; */
}

.cenai-home-footer-follow {
    margin: 0 0 0.75rem;
    font-size: 14px;
    padding-top: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.cenai-home-footer-social {
	display: flex;
	gap: 0.5rem;
}

.cenai-home-footer-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #7dd3fc;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	border: 2px solid rgba(125, 211, 252, 0.3);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.cenai-home-footer-social-link:hover {
	background: #7dd3fc;
	color: #0f172a;
	border-color: #7dd3fc;
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 8px 28px rgba(125, 211, 252, 0.5), 0 0 20px rgba(125, 211, 252, 0.2);
}

.cenai-home-footer-heading {
	margin: 0 0 1.25rem;
	font-size: 1.1rem;
	font-weight: 800;
	color: #fff;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid transparent;
	border-image: linear-gradient(90deg, #7dd3fc 0%, rgba(125, 211, 252, 0.4) 50%, transparent 100%) 1;
	letter-spacing: 0.02em;
	transition: text-shadow 0.3s ease;
}

.cenai-home-footer-heading:hover {
	text-shadow: 0 0 20px rgba(125, 211, 252, 0.2);
}

.cenai-home-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cenai-home-footer-links li {
	margin-bottom: 0.6rem;
}

.cenai-home-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.25s ease, gap 0.25s ease, transform 0.25s ease, padding-left 0.25s ease;
}
.cenai-home-footer-links a::before {
	content: '→';
	color: #7dd3fc;
	font-size: 14px;
	font-weight: 700;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.cenai-home-footer-links a:hover {
	color: #7dd3fc;
	gap: 0.65rem;
	padding-left: 6px;
}

.cenai-home-footer-links a:hover::before {
	transform: translateX(6px);
}

.cenai-home-footer-insta {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
}

.cenai-home-footer-insta-item {
	display: block;
	aspect-ratio: 1;
	border-radius: 12px;
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(125, 211, 252, 0.1);
	transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.cenai-home-footer-insta-item:hover {
	border-color: #7dd3fc;
	transform: scale(1.08);
	box-shadow: 0 8px 32px rgba(0, 67, 157, 0.45), 0 0 24px rgba(125, 211, 252, 0.25), 0 0 0 2px rgba(125, 211, 252, 0.25);
}

.cenai-home-footer-insta-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cenai-home-footer-bottom {
	position: relative;
	z-index: 1;
	padding: 1.5rem 0;
	border-top: 2px solid rgba(125, 211, 252, 0.2);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%);
	box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.25);
}

.cenai-home-footer-bottom .cenai-home-footer-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1rem;
}

.cenai-home-footer-copy {
	grid-column: 2;
	justify-self: center;
	margin: 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
}

.cenai-home-footer-copy-brand {
	color: #7dd3fc;
	font-weight: 700;
}

.cenai-home-footer-payments {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1rem;
    display: none;
}

.cenai-home-footer-payment {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
}

.cenai-home-footer .cenai-heading-accent {
	color: #7dd3fc;
}

@media (max-width: 992px) {
	.cenai-home-footer-top .cenai-home-footer-inner {
		grid-template-columns: 1fr 1fr;
	}
	.cenai-home-footer-col:not(.cenai-home-footer-brand) {
		padding-left: 1rem;
		border-left-width: 2px;
	}
}

@media (max-width: 600px) {
	.cenai-home-footer-top .cenai-home-footer-inner {
		grid-template-columns: 1fr;
	}
	.cenai-home-footer-col:not(.cenai-home-footer-brand) {
		padding-left: 0;
		border-left: none;
		padding-top: 1.25rem;
		border-top: 1px solid rgba(125, 211, 252, 0.2);
		margin-top: 0.5rem;
	}
	.cenai-home-footer-bottom .cenai-home-footer-inner {
		grid-template-columns: 1fr;
		gap: 1rem;
		text-align: center;
	}
	.cenai-home-footer-copy {
		grid-column: 1;
		justify-self: center;
	}
	.cenai-home-footer-payments {
		grid-column: 1;
		justify-self: center;
	}
}

section.cenai-home-tools {
    display: none;
}

/* All heading text capitalize; same font size for non-banner headings (banner h1 stays bigger) */
.cenai-home-hero-title-white,
.cenai-home-hero-title-accent,
.cenai-home-roadmap-title,
.cenai-home-roadmap-card-title,
.cenai-home-clients-title,
.cenai-home-clients-card-title,
.cenai-home-verticals-title,
.cenai-home-ultimate-title,
.cenai-home-ultimate-card-title,
.cenai-home-tools-title,
.cenai-home-aifeatures-title,
.cenai-home-aifeatures-card-title,
.cenai-home-aitech-title,
.cenai-home-aitech-card-title,
.cenai-home-aitech-acc-title,
.cenai-home-explainer-title,
.cenai-home-explainer-step-title,
.cenai-home-bottom-tabs-title,
.cenai-home-article-card-title,
.cenai-home-testimonials-title,
.cenai-home-testimonials-title-line1,
.cenai-home-testimonials-title-line2,
.cenai-home-blog-title,
.cenai-home-newsletter-title,
.cenai-home-footer-heading {
	text-transform: capitalize;
}

/* Section titles – bigger than body text (body stays 14–16px) */
.cenai-home-roadmap-title, .cenai-home-clients-title, .cenai-home-verticals-title, .cenai-home-ultimate-title, .cenai-home-tools-title, .cenai-home-aifeatures-title, .cenai-home-aitech-title, .cenai-home-explainer-title, .cenai-home-bottom-tabs-title, .cenai-home-testimonials-title, .cenai-home-testimonials-title-line2, .cenai-home-blog-title, .cenai-home-newsletter-title {
    font-size: 34px;
    letter-spacing: 0.2px;
}
.cenai-home-testimonials-title-line1 {
	font-size: 1.125rem;
}

/* Card/sub headings – bigger than inner text, smaller than section title */
.cenai-home-roadmap-card-title, .cenai-home-clients-card-title, .cenai-home-ultimate-card-title, .cenai-home-aifeatures-card-title, .cenai-home-aitech-card-title, .cenai-home-aitech-acc-title, .cenai-home-explainer-step-title, .cenai-home-article-card-title, .cenai-home-footer-heading {
    font-size: 20px;
    letter-spacing: 0.2px;
}

@media (max-width: 768px) {
	.cenai-home-roadmap-title,
	.cenai-home-clients-title,
	.cenai-home-verticals-title,
	.cenai-home-ultimate-title,
	.cenai-home-tools-title,
	.cenai-home-aifeatures-title,
	.cenai-home-aitech-title,
	.cenai-home-explainer-title,
	.cenai-home-bottom-tabs-title,
	.cenai-home-testimonials-title,
	.cenai-home-testimonials-title-line2,
	.cenai-home-blog-title,
	.cenai-home-newsletter-title {
		font-size: 1.875rem;
	}
	.cenai-home-testimonials-title-line1 {
    font-size: 18px;
    letter-spacing: 0.2px;
}
	.cenai-home-roadmap-card-title,
	.cenai-home-clients-card-title,
	.cenai-home-ultimate-card-title,
	.cenai-home-aifeatures-card-title,
	.cenai-home-aitech-card-title,
	.cenai-home-aitech-acc-title,
	.cenai-home-explainer-step-title,
	.cenai-home-article-card-title,
	.cenai-home-footer-heading {
		font-size: 1.25rem;
	}
}

/* ========== Expedite section (intro + 2 cards + wide card) – homepage only ========== */
.cenai-expedite {
	background: #f5f5f7;
	padding: 4.5rem 1.5rem 5rem;
}

.cenai-expedite-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.cenai-expedite-intro {
	margin-bottom: 3rem;
}

.cenai-expedite-sub {
	margin: 0 0 0.5rem;
	font-size: 14px;
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
	color: rgba(0, 0, 0, 0.7);
	line-height: 1.5;
}

.cenai-expedite-title {
	margin: 0;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 800;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #111;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.cenai-expedite-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.cenai-expedite-card {
	background: rgba(0, 0, 0, 0.02);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cenai-expedite-card:hover {
	border-color: rgba(0, 67, 157, 0.25);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cenai-expedite-card:hover .cenai-expedite-card-title,
.cenai-expedite-card:hover .cenai-expedite-card-desc,
.cenai-expedite-card:hover .cenai-expedite-card-label {
	color: #111;
}

.cenai-expedite-card:hover .cenai-expedite-card-desc {
	color: rgba(0, 0, 0, 0.75);
}

.cenai-expedite-card:hover .cenai-expedite-card-label {
	color: rgba(0, 0, 0, 0.65);
}

.cenai-expedite-card-label {
	margin: 0;
	font-size: 12px;
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
	color: rgba(0, 0, 0, 0.6);
}

.cenai-expedite-card-title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #111;
	line-height: 1.35;
}

.cenai-expedite-card-desc {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
	color: rgba(0, 0, 0, 0.7);
	line-height: 1.6;
}

.cenai-expedite-card-img-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 4/3;
	border-radius: 12px;
	overflow: hidden;
	margin-top: auto;
}

.cenai-expedite-card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cenai-expedite-card-arrow {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.08);
	border: 2px solid rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	color: #111;
	font-size: 1.25rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.3s ease, border-color 0.3s ease;
}

.cenai-expedite-card-arrow:hover {
	background: rgba(0, 0, 0, 0.12);
	border-color: #111;
}

.cenai-expedite-wide {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: center;
	background: rgba(0, 0, 0, 0.02);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	padding: 2.5rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cenai-expedite-wide:hover {
	border-color: rgba(0, 0, 0, 0.12);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.cenai-expedite-wide:hover .cenai-expedite-wide-title,
.cenai-expedite-wide:hover .cenai-expedite-wide-desc {
	color: #111;
}

.cenai-expedite-wide:hover .cenai-expedite-wide-desc {
	color: rgba(0, 0, 0, 0.75);
}

.cenai-expedite-wide-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.cenai-expedite-wide-title {
	margin: 0;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 800;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #111;
	line-height: 1.35;
}

.cenai-expedite-wide-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	align-self: flex-start;
	margin-top: 0.5rem;
	padding: 0.85rem 1.5rem;
	font-size: 14px;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
	border: none;
	border-radius: 12px;
	text-decoration: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
	box-shadow: 0 4px 20px rgba(236, 72, 153, 0.35);
}

.cenai-expedite-wide-btn:hover {
	opacity: 0.95;
	transform: translateY(-2px);
}

.cenai-expedite-wide-img-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 1;
	max-height: 320px;
	border-radius: 12px;
	overflow: hidden;
}

.cenai-expedite-wide-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 992px) {
	.cenai-expedite-cards { grid-template-columns: 1fr; }
	.cenai-expedite-wide { grid-template-columns: 1fr; }
	.cenai-expedite-wide-img-wrap { max-height: 280px; order: -1; }
}

@media (max-width: 576px) {
	.cenai-expedite { padding: 3rem 1rem 4rem; }
	.cenai-expedite-wide { padding: 1.5rem; }
}

/* Section entrance animations (homepage) – subtle fade-in without changing layout */
@keyframes cenai-section-in {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

.cenai-home-tools-slider-inner { animation: cenai-section-in 0.6s ease-out 0.05s both; }
.cenai-home-roadmap-inner { animation: cenai-section-in 0.6s ease-out 0.08s both; }
.cenai-home-clients-inner { animation: cenai-section-in 0.6s ease-out 0.1s both; }
.cenai-home-verticals-inner { animation: cenai-section-in 0.6s ease-out 0.12s both; }
.cenai-home-ultimate-inner { animation: cenai-section-in 0.6s ease-out 0.14s both; }
.cenai-home-tools-inner { animation: cenai-section-in 0.6s ease-out 0.16s both; }
.cenai-home-aifeatures-inner { animation: cenai-section-in 0.6s ease-out 0.18s both; }
.cenai-home-aitech-inner { animation: cenai-section-in 0.6s ease-out 0.2s both; }
.cenai-home-explainer-inner { animation: cenai-section-in 0.6s ease-out 0.22s both; }
.cenai-home-bottom-tabs-inner { animation: cenai-section-in 0.6s ease-out 0.24s both; }
.cenai-home-testimonials-inner { animation: cenai-section-in 0.6s ease-out 0.26s both; }
.cenai-home-blog-inner { animation: cenai-section-in 0.6s ease-out 0.28s both; }
.cenai-home-newsletter-inner { animation: cenai-section-in 0.6s ease-out 0.3s both; }
.cenai-home-footer-inner { animation: cenai-section-in 0.6s ease-out 0.32s both; }

/* Mobile-friendly: prevent horizontal scroll, responsive tap targets */
body.cenai-home {
	overflow-x: hidden;
}

.cenai-home img {
	max-width: 100%;
	height: auto;
}

@media (max-width: 991px) {
	.cenai-home-logo-img {
		max-height: 48px;
		height: auto;
	}
}

@media (max-width: 768px) {
	.cenai-home-hero { padding: 2.5rem 1rem 3rem; }
	.cenai-home-roadmap { padding: 3rem 1rem 3.5rem; }
	.cenai-home-roadmap-title { margin-bottom: 2rem; }
	.cenai-home-roadmap-card { padding: 1.75rem 1.25rem 1.5rem; }
	.cenai-home-clients { padding: 3.5rem 1rem 4rem; }
	.cenai-home-verticals { padding: 3.5rem 1rem 4rem; }
	.cenai-home-aifeatures { padding: 3.5rem 1rem 4rem; }
	.cenai-home-aitech { padding: 3.5rem 1rem 4rem; }
	.cenai-home-explainer { padding: 3.5rem 1rem 4rem; }
	.cenai-home-ultimate { padding: 3.5rem 1rem 4rem; }
	.cenai-home-testimonials { padding: 3.5rem 1rem 4rem; }
	.cenai-home-bottom-tabs { padding: 3.5rem 1rem 4rem; }
	.cenai-home-newsletter { padding: 3rem 1rem 4rem; }
	.cenai-home-footer-top { padding: 3rem 1rem 3.5rem; }
}

@media (max-width: 480px) {
	body.cenai-home {
		font-size: 15px;
	}
	.cenai-home-hero {
		min-height: 80vh;
		padding: 2rem 0.75rem 2.5rem;
	}
	.cenai-home-hero-inner {
		padding: 0 0.25rem;
		box-sizing: border-box;
	}
	.cenai-home-roadmap { padding: 2.5rem 0.75rem 3rem; }
	.cenai-home-roadmap-title { margin-bottom: 1.5rem; }
	.cenai-home-roadmap-card { padding: 1.5rem 1rem 1.25rem; }
	.cenai-home-clients { padding: 2.5rem 0.75rem 3rem; }
	.cenai-home-verticals { padding: 2.5rem 0.75rem 3rem; }
	.cenai-home-aifeatures { padding: 2.5rem 0.75rem 3rem; }
	.cenai-home-aitech { padding: 2.5rem 0.75rem 3rem; }
	.cenai-home-explainer { padding: 2.5rem 0.75rem 3rem; }
	.cenai-home-ultimate { padding: 2.5rem 0.75rem 3rem; }
	.cenai-home-testimonials { padding: 2.5rem 0.75rem 3rem; }
	.cenai-home-bottom-tabs { padding: 2.5rem 0.75rem 3rem; }
	.cenai-home-newsletter { padding: 2.5rem 0.75rem 3rem; }
	.cenai-home-newsletter-content { padding-left: 0; padding-right: 0; }
	.cenai-home-newsletter-input-wrap { padding: 0 0.875rem; }
	.cenai-home-newsletter-input { padding: 0.75rem 0; font-size: 16px; }
	.cenai-home-newsletter-btn { padding: 0.875rem 1rem; }
	.cenai-home-footer-top { padding: 2.5rem 0.75rem 3rem; }
	.cenai-home-icon-btn,
	.cenai-home-menu-btn {
		min-width: 44px;
		min-height: 44px;
	}
	.cenai-home-logo-img {
		max-height: 44px;
	}
}
.cenai-home-hero-filters {
    display: none;
}