/* =====================================================
   Cardio Health — Modern Design Tokens & Layout
   Matching Cardiac Home page Updated.png 1-to-1
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inclusive+Sans:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

:root {
	--ch-navy-hero: #070d24;
	--ch-navy-900: #0e1543;
	--ch-navy-800: #131b54;
	--ch-navy-700: #1a2468;
	--ch-blue-primary: #00064E;
	--ch-blue-hover: #00064E;
	--ch-red: #D41A22;
	--ch-red-dark: #be123c;
	--ch-cream: #fff5f5;
	--ch-gray-bg: #F3F3F5;
	--ch-gray-border: #e2e8f0;
	--ch-text-dark: #0F1543;
	--ch-text-muted: #646464;
	--ch-text-light: #94a3b8;
	--ch-white: #ffffff;
	--ch-radius-sm: 8px;
	--ch-radius: 16px;
	--ch-radius-lg: 24px;
	--ch-font-heading: "Inclusive Sans", sans-serif;
	--ch-font-body: "Inclusive Sans", sans-serif;
	--ch-font-accent: "Geist", sans-serif;
	--ch-font-lora: "Lora", serif;
	--ch-container: 1440px;
	--ch-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
	--ch-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08);
	--ch-shadow-lg: 0 20px 40px -10px rgba(14, 21, 67, 0.2);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--ch-font-body);
	color: var(--ch-text-dark);
	background: var(--ch-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	font-size: 16px;
	font-weight: 500;
}

h1,
h2,
h3,
h4 {
	font-family: var(--ch-font-heading);
	font-weight: 500;
	margin: 0 0 16px;
	line-height: 1.20;
	color: var(--ch-text-dark);
	letter-spacing: -0.2px;
}

h1 {
	font-size: clamp(40px, 3.5vw, 58px);
	font-weight: 600;
}

h2 {
	font-size: clamp(28px, 3.5vw, 48px);
	letter-spacing: -0.05em;
	color: #0F1543;
	font-weight: 600;
}

h3 {
	font-size: clamp(18px, 3.5vw, 24px);
	font-weight: 600;
}

p {
	margin: 0 0 16px;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all .2s ease;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

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

button {
	font-family: inherit;
	cursor: pointer;
}

.ch-container {
	max-width: var(--ch-container);
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

/* Buttons */
.ch-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 30px;
	border-radius: 8px;
	font-weight: 500;
	font-size: 15px;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
}

.ch-btn--primary {
	background: var(--ch-red);
	color: #ffffff;
}

.ch-btn--primary:hover {
	background: var(--ch-red-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(225, 29, 72, 0.45);
}

.ch-btn--ghost,
.ch-btn-blue {
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.25);
	background: transparent;
}

.ch-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.4);
	color: #ffffff;
}

.ch-btn-blue {
	background-color: var(--ch-blue-primary);
}

.ch-btn--outline-light {
	border-color: rgba(255, 255, 255, 0.3);
	color: #ffffff;
}

.ch-btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #ffffff;
}

.ch-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 255, 255, 0.12);
	color: #cbd5e1;
	border: 1px solid rgba(255, 255, 255, 0.18);
	padding: 6px 16px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 30px;
	letter-spacing: 0;
	font-family: var(--ch-font-accent);
}

.ch-link {
	color: var(--ch-blue-primary);
	font-weight: 600;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.ch-link.red {
	color: var(--ch-red);
}

.ch-link:hover {
	color: var(--ch-blue-hover);
	text-decoration: underline;
}

.ch-link--sm {
	font-size: 13px;
}

/*Global component*/

.section {
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
}


a.ch-logo>img {
	max-width: 250px;
}

/* Section heads */
.ch-section-head {
	max-width: 760px;
	margin-bottom: 60px;
}

/* .ch-section-head h2 {
	font-size: clamp(28px, 3.5vw, 40px);
} */

.ch-section-head--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.ch-section-head--light {
	color: #fff;
}

.ch-section-head--light h2 {
	color: #ffffff;
}

/* .ch-section-head--light p {
	color: var(--ch-text-light);
} */

.ch-section-head--split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	max-width: none;
}

.ch-section-head--split p {
	max-width: 500px;
	margin-bottom: 0;
}

.ch-section-title--center {
	text-align: center;
	margin-bottom: 48px;
}



/* ---- Section heading ------------------------------------------------ */
.ch-section-head--center {
	text-align: center;
	margin-bottom: 70px;
}

.ch-section-head--center h2 {
	margin: 0 0 12px;
}

.ch-section-head--center p {
	margin: 0;
}

/*Section patterns*/
.checked-pattern-tb {
	position: relative;
}

.checked-pattern-tb:after,
.checked-pattern-tb::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 580px;
	height: 340px;
	background-repeat: no-repeat;
	background-image: url(../images/checked-pattern-white.png);
	background-size: contain;
}

.checked-pattern-tb:after {
	top: auto;
	bottom: 0;
	left: auto;
	right: 0;
}

.blue-pattern {
	position: absolute;
	width: 498px;
	height: 498px;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	z-index: 0;

}

.blue-pattern.bottom-left {
	bottom: 0;
	left: 0;
	background-image: url(../images/blue-pattern-bl.png);
}

.blue-pattern.bottom-right {
	bottom: 0;
	right: 0;
	background-image: url(../images/blue-pattern-br.png);
}

.blue-pattern.top-left {
	top: 0;
	left: 0;
	background-image: url(../images/blue-pattern-tl.png);
}

.blue-pattern.top-right {
	top: 0;
	right: 0;
}

.ch-img-placeholder--hero {
	min-height: 440px;
	border-radius: var(--ch-radius-lg);
}

.ch-img-placeholder--card {
	min-height: 180px;
}

.ch-img-placeholder--icon {
	width: 48px;
	height: 48px;
	min-height: 48px;
	border-radius: 12px;
}

.ch-img-placeholder--icon-sm {
	width: 40px;
	height: 40px;
	min-height: 40px;
	border-radius: 10px;
}

.ch-img-placeholder--mockup {
	min-height: 320px;
	border-radius: var(--ch-radius);
}

.ch-img-placeholder--phones {
	min-height: 460px;
	border-radius: var(--ch-radius);
}

.ch-img-placeholder--avatar {
	width: 48px;
	height: 48px;
	min-height: 48px;
	border-radius: 50%;
}

.ch-hero__media {
	position: relative;
}

.ch-hero__media:before {
	content: "";
	position: absolute;
	top: -29%;
	left: -34%;
	background: url('../images/heart-bg-shadow.png') no-repeat center;
	width: 130%;
	height: 130%;
	background-size: contain;
}

/* =====================================================
   Header - Floating White Card Bar
   ===================================================== */
.ch-header {
	position: fixed;
	top: 24px;
	left: 0;
	right: 0;
	z-index: 9999;
	background: transparent;
}


.ch-header__inner {
	background: #ffffff;
	border-radius: 12px;
	padding: 10px 12px 10px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.ch-logo__img {
	height: 38px;
	width: auto;
	display: block;
	object-fit: contain;
}


.menu-wrapper {
	margin: 0 auto;
}

.ch-nav__list {
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ch-nav__list a {
	font-size: 16px;
	font-weight: 500;
	color: #2F2F2F;
	transition: color 0.2s ease;
}

.ch-nav__list a:hover {
	color: var(--ch-red);
}

.ch-header__cta {
	background: var(--ch-red);
	color: #ffffff;
	border-radius: 4px;
	padding: 10px 24px;
	font-size: 14px;
	font-weight: 500;
	border: 0;
}

.ch-header__cta:hover {
	background: var(--ch-red-dark);
	color: #ffffff;
	transform: translateY(-1px);
}

.ch-nav__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	padding: 8px;
}

.ch-nav__toggle span {
	width: 24px;
	height: 2px;
	background: var(--ch-text-dark);
	border-radius: 2px;
}

/* =====================================================
   Hero Section - Background hero-banner.png + 3D Heart GIF
   ===================================================== */
.ch-hero {
	position: relative;
	background-color: #070d24;
	background-image: linear-gradient(90deg, rgba(7, 13, 36, 0.95) 0%, rgba(7, 13, 36, 0.75) 45%, rgba(7, 13, 36, 0.45) 100%), url('../images/hero-banner.png');
	background-size: cover;
	background-position: center center;
	padding: 100px 0 100px;
	color: #ffffff;
	overflow: hidden;
}

.ch-hero__grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 40px;
	align-items: center;
}

.ch-hero__content {
	max-width: 660px;
	z-index: 2;
	margin-top: 25%;
	margin-bottom: 12%;
}

.ch-hero__content h1 {
	color: #ffffff;
	font-size: clamp(38px, 4.6vw, 60px);
	font-weight: 500;
	line-height: 1.15;
	margin-bottom: 24px;
	letter-spacing: -0.02em;
	font-family: var(--ch-font-accent);
}

.ch-hero__content p {
	color: #fff;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 32px;
	max-width: 580px;
}

.ch-hero__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

/* .ch-play-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1.5px solid #ffffff;
	font-size: 10px;
	margin-right: 4px;
	line-height: 1;
} */

/* 3D Heart Animation Media (Right side) */
.ch-hero__media {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}

.ch-hero__media img {
	max-width: 460px;
	max-height: 814px;
	width: 100%;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.6));
}

/* =====================================================
   Challenges / Solutions (Rounded Curve Transition)
   ===================================================== */
/* =====================================================
   Challenges / Solutions Section
   ===================================================== */
.ch-challenges {
	border-top-left-radius: 36px;
	border-top-right-radius: 36px;
	margin-top: -36px;
	position: relative;
	z-index: 10;
	background: #ffffff;
	padding: 80px 0 60px;
}

.ch-challenges .ch-section-head h2 {
	/* font-size: clamp(30px, 3.8vw, 48px);
	font-weight: 600;
	color: #0F1543; */
	margin-bottom: 24px;
	/* letter-spacing: -0.02em; */
}

.ch-challenges .ch-section-head p {
	font-size: 16px;
	color: #0F1543;
	max-width: 780px;
	margin: 0 auto;
	line-height: 1.6;
}

.ch-challenges__card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: 16px;
	overflow: hidden;
	border: 1.5px solid transparent;
	margin-top: 48px;
	gap: 20px;
}

.ch-panel--pain {
	background: #FFDAD633;
	padding: 50px 40px;
	border-right: 1px dashed #FFDAD680;
	border-radius: 10px;
	box-shadow: 0px 4px 24px 0px #1820620D;
	backdrop-filter: blur(12px);

}

.ch-panel--solution {
	background: linear-gradient(180deg, #162055 0%, #0c1236 100%);
	padding: 44px 48px;
	border-radius: 10px;
	position: relative;
	z-index: 1;
}

.ch-panel--solution:after {
	content: '';
	position: absolute;
	bottom: auto;
	left: auto;
	width: 100%;
	background: url(../images/blue-shape1.png) center top / cover no-repeat;
	pointer-events: none;
	top: 0;
	right: -30px;
	height: 100%;
	z-index: -1;
}


.ch-panel__title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 32px;
}

.ch-panel__title--pain {
	color: #D11C22;
}

.ch-panel__title--solution {
	color: #ffffff;
}

.ch-panel__list {
	display: flex;
	flex-direction: column;
}

.ch-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	padding: 16px 0;
	border-bottom: 1px solid #FFD9D3;
}

.ch-panel--solution .ch-item {
	border-bottom-color: #464D7D;
}

.ch-item:last-child {
	border-bottom: 0;
}

.ch-item__icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
	color: #fff;
}

.ch-item__icon--pain {
	color: #000000;
}

/* .ch-item__icon--solution {
	background: rgba(37, 99, 235, 0.15);
	color: #60a5fa;
	border: 1px solid rgba(96, 165, 250, 0.25);
} */

.ch-item__content h4 {
	font-size: 20px;
	font-weight: 500;
	margin: 0 0 16px;
	line-height: 1.3;
}

.ch-panel--pain .ch-item__content h4 {
	color: #1F1F1F;
}

.ch-panel--solution .ch-item__content h4 {
	color: #ffffff;
}

.ch-item__content p {
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
}

.ch-panel--pain .ch-item__content p {
	color: #464650;
}

.ch-panel--solution .ch-item__content p {
	color: #EAEAEA;
}

/* =====================================================
   Stats Section
   ===================================================== */
.ch-stats {
	background-color: #0F1543;
	padding: 80px 0;
	position: relative;
	z-index: 1;
	overflow: hidden;

}

.ch-stats::after {
	content: '';
	background-image: url('../images/blue-bg-pattern1.png');
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	pointer-events: none;
	bottom: auto;
	left: auto;
	top: 0;
	right: 0;
	height: 100%;
	z-index: -1;
	position: absolute;
}

.ch-stats .ch-section-head p {
	max-width: 610px;
	margin: 0 auto 16px auto;
}

.ch-stats__grid {
	display: flex;
	position: relative;
}

.ch-stats__grid:after {
	content: "";
	position: absolute;
	left: -100%;
/* 	border-top: 1px solid #FFFFFF4D; */
/* 	border-bottom: 1px solid #FFFFFF4D; */
	height: 100%;
	width: 300%;
	z-index: -1;
}

.ch-stat {
	text-align: center;
	padding: 109px;
/* 	border-right: 1px solid #FFFFFF4D; */
	width: 33.33%;
}

/* .ch-stat:first-child {
	border-left: 1px solid #FFFFFF4D;
} */

.ch-stat__number {
	display: block;
	font-family: var(--ch-font-heading);
	font-size: 80px;
	font-weight: 400;
	color: #DB2127;
	letter-spacing: -0.02em;
	line-height: 1.1;
}

.ch-stat__label {
	display: block;
	color: #fff;
	margin-top: 30px;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: -0.5px;
}

/* =====================================================
   Feature Grid
   ===================================================== */
.ch-feature-grid {
	padding: 80px 0;
	background: var(--ch-gray-bg);
	overflow: hidden;
}

.ch-feature-grid .ch-section-head__content {
	max-width: 390px;
}

.ch-feature-grid .ch-section-head--split {
	align-items: center;
}

.ch-feature-grid__slider {
	width: 100vw !important;
	left: 0 !important;
	margin-left: auto;
	margin-right: calc(-100vw / 2 + 100% / 2) !important;
	max-width: 100vw !important;
}

.ch-feature-grid h2 {
	max-width: 600px;
}

.ch-feature-grid__side {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 20px;
	max-width: 100%;
	margin-top: 40px;
}

.ch-slider-nav {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.ch-slider-nav__btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid var(--ch-navy-900);
	color: var(--ch-navy-900);
	transition: all .25s ease;
}

.ch-slider-nav__btn--next {
	background: var(--ch-navy-900);
	color: #ffffff;
	border-color: var(--ch-navy-900);
}

.ch-slider-nav__btn:hover {
	background: var(--ch-red);
	border-color: var(--ch-red);
	color: #ffffff;
}

.ch-slider-nav__btn.swiper-button-disabled {
	opacity: .35;
	cursor: default;
}

.ch-feature-grid__cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 32px;
}

.ch-feature-swiper {
	overflow: hidden;
	margin-top: 55px;
}

.ch-feature-swiper .swiper-slide {
	height: auto;
}

.ch-feature-card {
	background: #ffffff;
	border: 1px solid var(--ch-gray-border);
	border-radius: var(--ch-radius);
	padding: 28px;
	box-shadow: var(--ch-shadow-sm);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.ch-feature-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--ch-shadow);
	border-color: rgba(37, 99, 235, 0.3);
}

.ch-feature-card__icon {
	margin-bottom: 40px;
}

.ch-feature-card__icon img {
	width: 44px;
	height: 44px;
	object-fit: contain;
}

.ch-feature-card h3 {
	font-size: 20px;
	margin-bottom: 10px;
	font-weight: 600;
	font-family: var(--ch-font-accent);
	letter-spacing: -0.4px;
}

.ch-feature-card p {
	font-size: 16px;
	margin-bottom: 24px;
	color: var(--ch-text-muted);
	flex-grow: 1;
}

.ch-feature-card__image {
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 16/10;
	border: 1px solid var(--ch-gray-border);
}

.ch-feature-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* =====================================================================
   HOW IT WORKS 
   ===================================================================== */

.ch-how-it-works {
	position: relative;
	z-index: 0;
	background: #ffffff;
	overflow: hidden;
}

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

/* ---- Faint graph-paper grid in the corners (decorative) ------------- */
.ch-how-it-works::before,
.ch-how-it-works::after {
	content: "";
	position: absolute;
	z-index: -1;
	width: 30%;
	height: 25%;
	background-image: linear-gradient(#eceef3 1px, transparent 1px),
		linear-gradient(90deg, #eceef3 1px, transparent 1px);
	background-size: 26px 26px;
	pointer-events: none;
	opacity: 0.7;
	-webkit-mask-image: radial-gradient(closest-side, #000 40%, transparent 100%);
	mask-image: radial-gradient(closest-side, #000 40%, transparent 100%);
}

.ch-how-it-works::before {
	top: -40px;
	right: -40px;
}

/* top-right   */
.ch-how-it-works::after {
	bottom: -120px;
	right: -40px;
}

.ch-how-it-works .ch-section-head--center {
	margin-bottom: 40px;
}

/* bottom-left */


/* ---- Steps wrapper -------------------------------------------------- */
.ch-steps {
	display: flex;
	flex-direction: column;
	gap: 70px;
	position: relative;
}

/* ---- A single step (row) ------------------------------------------- */
.ch-step {
	position: relative;
	display: flex;
	align-items: center;
	gap: 26px;
}

/* Laptop / screenshot mockup */
.ch-step__media {
	flex: 0 0 50%;
	max-width: 50%;
}

.ch-step__media img,
.ch-step__media .ch-img-placeholder {
	display: block;
	width: 100%;
	height: auto;
}

/* Big grey number with the red bar to its left */
.ch-step__number {
	position: relative;
	flex: 0 0 auto;
	padding-left: 26px;
	color: #0F154333;
	font-weight: 700;
	font-size: clamp(4.25rem, 8vw, 99px);
	line-height: 1;
	letter-spacing: -0.02em;
	font-family: var(--ch-font-accent);
}

.ch-step__number::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 82px;
	background: var(--ch-red);
	border-radius: 1px;
}

/* Title + description */
.ch-step__content {
	flex: 0 1 340px;
	max-width: 340px;
	margin-right: 5%;
}

.ch-step__content h3 {
	margin: 0 0 10px;
	color: #000;
	font-weight: 600;
	font-size: 20px;
	font-family: var(--ch-font-accent);
}

.ch-step__content p {
	margin: 0;
	color: #646464;
	font-size: 16px;
	line-height: 1.6;
	font-family: var(--ch-font-accent);
}

/* ---- Alternating layout -------------------------------------------- */
/* LEFT rows: [media] ......big gap...... [number][copy]                 */
.ch-step--left .ch-step__number {
	margin-left: auto;
	margin-right: 14px;
}

/* RIGHT rows: [number][copy] ......big gap...... [media]                */
.ch-step--right .ch-step__number {
	order: 1;
}

.ch-step--right .ch-step__content {
	order: 2;
}

.ch-step--right .ch-step__media {
	order: 3;
	margin-left: auto;
}

/* ---- Dotted connector curves between steps ------------------------- */
.ch-step:not(:last-child)::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 66%;
	width: 82%;
	height: 315px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center top;
	pointer-events: none;
	background-image: url("../images/line.svg");
}

/* curve flows top-right -> bottom-left after a LEFT row */
.ch-step--left:not(:last-child)::after {
	left: 6%;
}

/* mirror it (top-left -> bottom-right) after a RIGHT row */
.ch-step--right:not(:last-child)::after {
	left: 5%;
	transform: scaleX(-1);
}

/* ---- Responsive: stack everything ---------------------------------- */
@media (max-width: 900px) {
	.ch-how-it-works {
		padding: 60px 0 70px;
	}

	.ch-steps {
		gap: 56px;
	}

	.ch-step,
	.ch-step--right {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 16px;
	}

	.ch-step__media,
	.ch-step--right .ch-step__media {
		flex: 0 0 auto;
		max-width: 92%;
		order: 0;
		margin: 0;
	}

	.ch-step__number,
	.ch-step--left .ch-step__number,
	.ch-step--right .ch-step__number {
		order: 0;
		margin: 4px 0 0;
		padding-left: 0;
	}

	/* center the number and place the red bar just under it on mobile */
	.ch-step__number::before {
		left: 50%;
		top: auto;
		bottom: -12px;
		transform: translateX(-50%);
		width: 34px;
		height: 4px;
	}

	.ch-step__content,
	.ch-step--right .ch-step__content {
		order: 0;
		flex: 0 1 auto;
		max-width: 440px;
	}

	/* connectors don't make sense in a single column */
	.ch-step::after {
		display: none !important;
	}

	.ch-how-it-works::before,
	.ch-how-it-works::after {
		display: none;
	}
}

/* =====================================================
   Global (Dark) Section
   ===================================================== */
.ch-global {
	background: var(--ch-navy-900);
	padding: 100px 0;
	position: relative;
}

.ch-global .ch-section-head {
	max-width: 920px;
}

.ch-global .ch-section-head h2 {
	margin-bottom: 30px;
}

.ch-global .ch-section-head p {
	max-width: 740px;
	margin: 0 auto;
}

.ch-global__grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 24px;
	align-items: stretch;
	margin-bottom: 56px;
}

.ch-global__blocks {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: start;
}

.ch-global__block {
	background: linear-gradient(180deg, rgba(15, 21, 67, 0) 0%, #0F1543 100%);

	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 40px 40px 30px 30px;
	border-radius: var(--ch-radius);
	height: 100%;
}

.ch-global__block--wide {
	grid-column: 1 / -1;
}

.ch-global__block h3 {
	color: #ffffff;
	font-size: 24px;
	margin-bottom: 22px;
	letter-spacing: -0.5px;
}

.ch-global__block p {
	font-size: 16px;
	color: #FFFFFFCC;
	margin-bottom: 40px;
	line-height: 1.5;
}

.ch-global__block .ch-link,
.ch-global__media-card .ch-link {
	color: var(--ch-red);
}

.ch-global__media-card {
	background: linear-gradient(180deg, rgba(15, 21, 67, 0) 0%, #0F1543 100%);

	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 40px;
	border-radius: var(--ch-radius);
	display: flex;
	flex-direction: column;
}

.ch-global__media-card-img {
	margin-bottom: 20px;
}

.ch-global__media-card-img img {
	width: 100%;
	display: block;
}

.ch-global__media-card h3 {
	color: #ffffff;
	font-size: 24px;
	margin-bottom: 10px;
}

.ch-global__media-card p {
	font-size: 16px;
	color: var(--ch-text-light);
	margin-bottom: 16px;
	line-height: 1.5;
	flex-grow: 1;
}

.ch-global__actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* =====================================================
   Pocket / Mobile Section
   ===================================================== */
.ch-pocket {
	padding: 80px 0;
	background: #F3F3F5;
}

.ch-pocket__content h2 {
	margin-bottom: 24px;
	font-weight: 600;
}

.ch-pocket__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.ch-pocket__points {
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin-top: 80px;
	max-width: 430px;
}

.ch-pocket__point {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.ch-pocket__point-icon {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	background: var(--ch-cream);
	border-radius: var(--ch-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
}

.ch-pocket__point-icon img {
	width: 38px;
	height: 38px;
	object-fit: contain;
}

.ch-pocket__point:not(:last-child) {
	padding-bottom: 15px;
	border-bottom: 1px solid #e2e8f036;
}

.ch-pocket__point h4 {
	color: #000000;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 6px;
}

.ch-pocket__point p {
	margin: 0;
	color: var(--ch-text-muted);
}

.ch-pocket__media img {}

/* =====================================================
   News / Blog
   ===================================================== */
.ch-news {
	padding: 60px 0;
	background: #fff;
}

.ch-news .ch-section-head {
	margin-bottom: 40px;
}

.ch-news__grid[hidden] {
	display: none;
}

.ch-news__tabs {
	display: flex;
	gap: 32px;
	border-bottom: 1px solid #E4E6EE;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.ch-news__tab {
	background: none;
	border: 0;
	padding: 11px 22px;
	font-size: 16px;
	font-weight: 600;
	color: var(--ch-text-muted);
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	transition: color .2s ease;
}

.ch-news__tab.is-active {
	color: var(--ch-navy-900);
	border-bottom-color: var(--ch-red);
}

.ch-news__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.ch-news-card {
	background: #ffffff;
	border-radius: var(--ch-radius);
	overflow: hidden;
	box-shadow: 0px 4px 24px 0px #1820620D;
	backdrop-filter: blur(12px);
	transition: transform .3s ease;
}

.ch-news-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--ch-shadow);
}

.ch-news-card__media {
	display: block;
	overflow: hidden;
}

.ch-news-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.ch-news-card:hover .ch-news-card__media img {
	transform: scale(1.05);
}

.ch-news-card__body {
	padding: 24px;
}

.ch-news-card__cat {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	color: var(--ch-red);
	background: var(--ch-cream);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 5px 12px;
	border-radius: 999px;
}

.ch-news-card__body h3 {
	font-size: 18px;
	font-weight: 600;
	margin: 16px 0 10px;
	line-height: 1.4;
}

.ch-news-card__body p {
	color: #646464;
	margin-bottom: 16px;
	line-height: 1.6;
}

.ch-news-card__body h3 a {
	color: var(--ch-text-dark);
}

.ch-news-card__body h3 a:hover {
	color: var(--ch-blue-primary);
}

.ch-news__empty {
	grid-column: 1 / -1;
	color: var(--ch-text-muted);
	padding: 20px 0;
}

/* =====================================================
   CTA Banner
   ===================================================== */
.ch-cta {
	padding: 20px 0;
	position: relative;
	background-color: #0F1543;
	z-index: 1;
	margin-top: 138px;
}

.ch-cta:after,
.ch-global:after {
	content: '';
	background-image: url('../images/ch-cta-bg.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	pointer-events: none;
	bottom: auto;
	left: auto;
	top: 0;
	right: 0;
	height: 100%;
	z-index: -1;
	position: absolute;
}

.ch-global {
	z-index: 1;
	position: relative;
}

.ch-global:after {
	background-image: url('../images/ch-global-bg1.png');
}

.ch-cta__inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 48px;
	align-items: center;
}

.ch-cta__text {
	max-width: 712px;
	color: #fff;
}

.ch-cta h2 {
	color: #ffffff;
	font-size: clamp(28px, 3.5vw, 42px);
	margin-bottom: 16px;
	letter-spacing: -2px;
}

.ch-cta p {
	font-size: 16px;
	margin-bottom: 32px;
}

.ch-cta__media {
	display: flex;
	justify-content: flex-end;
	margin-top: -27%;
}

.ch-cta__media img {
	max-height: 600px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

/* =====================================================
   Testimonials
   ===================================================== */
.ch-testimonials {
	padding: 100px 0;
	background: #ffffff;
}

.ch-testimonial-swiper {
	overflow: hidden;
}

.ch-testimonial-swiper .swiper-slide {
	height: auto;
}

.ch-testimonial {
	background: #ffffff;
	border: 1px solid var(--ch-gray-border);
	border-radius: var(--ch-radius);
	padding: 32px;
	box-shadow: var(--ch-shadow-sm);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.ch-testimonial__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.ch-testimonial__quote-mark {
	flex-shrink: 0;
}

.ch-testimonial p {
	font-size: 15px;
	margin: 0;
	color: var(--ch-text-muted);
	line-height: 1.6;
}

.ch-testimonial__author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.ch-testimonial__author img {
	border-radius: 50%;
	width: 48px;
	height: 48px;
	object-fit: cover;
	flex-shrink: 0;
}

.ch-testimonial__author strong {
	display: block;
	font-size: 15px;
	color: var(--ch-text-dark);
}

.ch-testimonial__author span {
	font-size: 12px;
	font-weight: 300;
	color: var(--ch-text-muted);
}

.ch-testimonials .ch-testimonials__dots {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 40px;
	bottom: -30px;
}

.ch-testimonials__dots .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--ch-gray-border);
	opacity: 1;
	cursor: pointer;
	transition: all .3s ease;
	margin: 0 !important;

}

.ch-testimonials__dots .swiper-pagination-bullet-active {
	background: var(--ch-red);
	width: 10px;
	border-radius: 6px;
}

/* =====================================================
   FAQ Accordion
   ===================================================== */
.ch-faq {
	background: #0F15430D;
}

.ch-faq__inner {}

.ch-faq h2 {
	text-align: left;
	margin-bottom: 40px;
}

.ch-accordion__item {
	margin-bottom: 0;
	overflow: hidden;
	border-bottom: 1px solid #E4E6EE;
}

.ch-accordion__item.is-open {}

.ch-accordion__trigger {
	width: 100%;
	text-align: left;
	background: none;
	border: 0;
	padding: 28px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 16px;
	color: #182062;
	transition: color .2s ease;
}

.ch-accordion__item.is-open .ch-accordion__trigger {
	color: var(--ch-red);
}

.ch-accordion__icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: transparent;
	border: 1px solid #0F1543;
	position: relative;
	flex-shrink: 0;
	transition: background .2s ease, border-color .2s ease;
}

.ch-accordion__item.is-open .ch-accordion__icon {
	background: var(--ch-red);
	border-color: var(--ch-red);
}

.ch-accordion__icon::before,
.ch-accordion__icon::after {
	content: '';
	position: absolute;
	background: var(--ch-text-muted);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.ch-accordion__item.is-open .ch-accordion__icon::before,
.ch-accordion__item.is-open .ch-accordion__icon::after {
	background: #ffffff;
}

.ch-accordion__icon::before {
	width: 10px;
	height: 2px;
}

.ch-accordion__icon::after {
	width: 2px;
	height: 10px;
	transition: transform .25s ease;
}

.ch-accordion__item.is-open .ch-accordion__icon::after {
	transform: translate(-50%, -50%) scaleY(0);
}

.ch-accordion__panel {
	padding: 0 28px 0 0;
	max-width: 840px;
	display: none;
}

.ch-accordion__item.is-open .ch-accordion__panel {
	display: block;
	padding-bottom: 24px;
}

.ch-accordion__panel p {
	margin: 0;
	color: var(--ch-text-muted);
	line-height: 1.6;
}

.ch-pocket.ch-contact {
	background: #0F1543;
	color: #fff;
}

.ch-pocket.ch-contact p,
.ch-pocket.ch-contact h4,
.ch-pocket.ch-contact h2,
.ch-pocket.ch-contact h3 {
	color: #fff;
}

.ch-contact_form .from-group {
	margin-bottom: 15px;
}

.ch-contact_form .from-group span.wpcf7-form-control-wrap {
	display: block;
}

.ch-contact_form .from-group span.wpcf7-form-control-wrap .wpcf7-form-control {
	width: 100%;
	height: 40px;
	background: #6c708c2e;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	outline: none;
	padding: 10px 20px;
}

.ch-contact_form .from-group span.wpcf7-form-control-wrap textarea.wpcf7-form-control {
	height: 100px;
}

.ch-pocket.ch-contact .ch-pocket__grid {
	align-items: flex-start;
}

.ch-pocket.ch-contact .ch-pocket__points {
	margin-top: 0;
}

.ch-contact_form {
	padding: 40px 30px;
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(15, 21, 67, 0) 0%, #0F1543 100%);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.wpcf7 form .wpcf7-response-output {
	border: none;
	text-align: center;
}

.ch-pocket.ch-contact .ch-pocket__point-icon img {
	width: 30px;
	height: 30px;
}

main.ch-main.ch-legal {
	padding-top: 120px;
}


.custom-404 {
	min-height: 75vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 20px;
	text-align: center;
	background: #f8fafc;
	box-sizing: border-box;
}

.custom-404 * {
	box-sizing: border-box;
}

.custom-404__content {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}

.custom-404__number {
	margin: 0;
	font-size: clamp(100px, 20vw, 220px);
	line-height: .85;
	font-weight: 900;
	letter-spacing: -10px;
	color: #e2e8f0;
}

.custom-404__title {
	position: relative;
	margin: -15px 0 15px;
	font-size: clamp(30px, 5vw, 52px);
	line-height: 1.15;
	font-weight: 800;
	color: #0f172a;
}

.custom-404__text {
	max-width: 560px;
	margin: 0 auto 30px;
	font-size: 18px;
	line-height: 1.7;
	color: #64748b;
}

.custom-404__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 35px;
}

.custom-404__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 25px;
	border-radius: 10px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	transition: all .2s ease;
}

.custom-404__search {
	max-width: 520px;
	margin: 0 auto;
}

.custom-404__search-title {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 700;
	color: #475569;
}

.custom-404__search-form {
	display: flex;
	gap: 8px;
}

.custom-404__search-form input[type="search"] {
	flex: 1;
	min-width: 0;
	height: 50px;
	padding: 0 16px;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	outline: none;
	background: #fff;
	color: #0f172a;
	font-size: 16px;
}

.custom-404__search-form input[type="search"]:focus {
	border-color: var(--ch-blue-hover);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.custom-404__search-form button {
	height: 50px;
	padding: 0 20px;
	border: 0;
	border-radius: 10px;
	background: #0f172a;
	color: #fff;
	cursor: pointer;
	font-size: 15px;
	font-weight: 700;
	transition: background .2s ease;
}

.custom-404__search-form button:hover {
	background: #1e293b;
}

@media (max-width: 520px) {
	.custom-404 {
		min-height: 70vh;
		padding: 60px 16px;
	}

	.custom-404__number {
		letter-spacing: -5px;
	}

	.custom-404__text {
		font-size: 16px;
	}

	.custom-404__actions {
		flex-direction: column;
	}

	.custom-404__button {
		width: 100%;
	}

	.custom-404__search-form {
		flex-direction: column;
	}

	.custom-404__search-form input[type="search"],
	.custom-404__search-form button {
		width: 100%;
	}
}

/* =====================================================
   Footer
   ===================================================== */
.ch-footer {
	background: #ffffff;
	padding: 64px 0 32px;
	color: var(--ch-text-muted);
}

.ch-footer__top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 64px;
}

.ch-footer__tagline {
	font-weight: 400;
	color: #0F1543;
	font-family: var(--ch-font-lora);
	font-style: italic;
	font-size: 16px;
	line-height: 1.4;
	margin: 15px 0;
}

.ch-footer__social {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ch-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: var(--ch-gray-bg);
	color: var(--ch-text-muted);
}

.ch-footer__social-link:hover {
	background: var(--ch-navy-900);
	color: #ffffff;
}

.ch-footer__social-link:hover svg {
	fill: #fff;
}

.ch-footer h4 {
	color: #000000B2;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
	margin-bottom: 20px;
	font-family: var(--ch-font-accent);
}

.ch-footer__list li {
	margin-bottom: 11px;
}

.ch-footer__list a {
	color: var(--ch-text-muted);
	font-size: 14px;
	font-family: var(--ch-font-accent);
	font-weight: 400;
}

.ch-footer__list a:hover {
	color: var(--ch-navy-900);
}

.ch-footer__bottom {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	padding-top: 28px;
	color: #000000;
	font-size: 13px;
	font-family: var(--ch-font-accent);
	font-weight: 400;
}

.ch-footer__legal {
	display: flex;
	gap: 24px;
}

.ch-footer__legal a {
	color: #000000;
}

.ch-footer__legal a:hover {
	color: var(--ch-navy-900);
}

/* =====================================================
   Responsive Adjustments
   ===================================================== */
@media (min-width: 992px) {
	.ch-nav__toggle_close {
		display: none;
	}

}

@media (max-height: 800px) {
	.ch-hero__content {
		margin-top: 6%;
		margin-bottom: 12%;
	}

	.ch-hero {
		padding: 80px 0 100px;
	}
}

@media (max-width: 1024px) {

	.ch-hero__grid,
	.ch-challenges__grid,
	.ch-global__grid,
	.ch-pocket__grid,
	.ch-cta__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.ch-global__blocks {
		grid-template-columns: 1fr 1fr;
	}

	.ch-footer__top {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 992px) {
	.ch-header__cta {
		margin-left: auto;
	}

	.ch-header {
		top: 0;
		padding: 12px 0;
	}

	.ch-header__inner {
		border-radius: 0;
	}

	.ch-nav__toggle_close {
		position: absolute;
		width: 40px;
		height: 40px;
		padding: 0;
		border: 0;
		background: transparent;
		cursor: pointer;
		left: auto;
		right: 10px;
		top: 10px;
	}

	.ch-nav__toggle_close span {
		position: absolute;
		left: 50%;
		top: 50%;
		width: 24px;
		height: 2px;
		background: #000;
		transform-origin: center;
	}

	.ch-nav__toggle_close span:nth-child(1) {
		transform: translate(-50%, -50%) rotate(45deg);
	}

	.ch-nav__toggle_close span:nth-child(2) {
		display: none;
	}

	.ch-nav__toggle_close span:nth-child(3) {
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	.menu-wrapper {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 99;
		display: none;
		background: #fff;
	}

	.menu-open .menu-wrapper {
		display: block;
	}

	nav.ch-nav .ch-nav__list {
		flex-direction: column;
		gap: 20px 0;
		padding: 60px 0;
	}

	.ch-nav__toggle {
		display: flex;
	}

	.ch-hero {
		padding: 40px 0 60px;
	}

	.ch-feature-grid__cards,
	.ch-stats__grid,
	.ch-news__grid,
	.ch-testimonials__grid,
	.ch-global__blocks {
		grid-template-columns: 1fr;
	}

	.ch-step,
	.ch-step--right {
		grid-template-columns: 1fr;
		text-align: left !important;
	}

	.ch-step--right .ch-step__content,
	.ch-step--right .ch-step__content p {
		text-align: left;
		margin-left: 0;
	}

	.ch-step__media,
	.ch-step__content,
	.ch-step__number {
		order: initial !important;
	}

	.ch-stat {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		padding: 16px 0;
	}

	.ch-stat:last-child {
		border-bottom: 0;
	}

	.ch-footer__top {
		grid-template-columns: 1fr;
	}

	.ch-hero__content {
		margin-top: 40px;
		margin-bottom: 40px;
	}

	.ch-challenges__card {
		grid-template-columns: 1fr;
	}

	.ch-stat__number {
		font-size: 54px;
	}

	.ch-stat__label {
		margin-top: 10px;
		font-size: 18px;
	}

	.ch-cta__media {
		margin: 0 auto;
	}
}

@media (max-width: 767px) {
	a.ch-logo>img {
		max-width: 150px;
	}

	.ch-stats__grid {
		flex-direction: column;
	}

	.ch-pocket__point {
		word-break: break-word;
	}

	.ch-stat {
		width: 100%;
	}

	.ch-stat:first-child {
		border: none;
	}

	.ch-section-head--split {
		flex-direction: column;
	}

	.ch-feature-swiper {
		margin-left: 0 !important;
		margin-right: 0 !important;
		width: 100% !important;
	}

	.ch-news__tabs {
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
	}

	.ch-step__content,
	.ch-step--right .ch-step__content {
		max-width: 100%;
		margin-top: 20px;
		text-align: center;
	}

	.ch-step--right .ch-step__content,
	.ch-step--right .ch-step__content p {
		text-align: center;
	}
}

/* New Css for the Privacy Policy Page 1 September OR 01-09-2026 */

.ch-legal__hero {
    padding: 80px 0;
    background: #071f35;
    color: #fff;
}

.ch-legal__hero h1 {
    margin: 0;
    font-size: 48px;
}

/* .ch-container h1 {
    color: #fff;	
	text-align:center;
} */
.ch-legal .ch-legal__hero h1 {
    color: #fff;
    text-align: center;
}

.ch-legal__body {
    padding: 60px 0;
}

.ch-legal__content {
    max-width: 900px;
}

.ch-legal__content h2 {
    margin: 40px 0 15px;
    font-size: 28px;
}

.ch-legal__content h2:first-child {
    margin-top: 0;
}

.ch-legal__content p {
    margin: 0 0 20px;
    line-height: 1.7;
    color: #555;
}

.ch-legal__content a {
    color: #007ea7;
    text-decoration: underline;
}

.ch-legal__content .privacy-policy-tutorial {
    color: #777;
}


/* Css For the Stats cards 01-09-2026 */

.ch-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ch-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    min-height: 400px;
	width: 100%;
	min-width: 0;
    padding: 30px 35px;

    border: 1px solid rgba(65, 132, 230, 0.85);
    border-radius: 26px;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(41, 78, 168, 0.35),
            transparent 48%
        ),
        linear-gradient(
            145deg,
            rgba(18, 38, 91, 0.92),
            rgba(8, 24, 64, 0.92)
        );

    box-sizing: border-box;
}


/* Icon */

.ch-stat__icon {
    width: 125px;
    height: 125px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border: 2px solid #ff3038;
    border-radius: 50%;

    background: rgba(255, 48, 56, 0.05);

    box-shadow:
        0 0 20px rgba(255, 40, 50, 0.28),
        inset 0 0 20px rgba(255, 40, 50, 0.08);
}

.ch-stat__icon svg {
    width: 65px;
    height: 65px;

    fill: none;
    stroke: #ffffff;

    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ch-stat__icon svg polyline {
    stroke: #ff3038;
}


/* Number */

.ch-stat__number {
    color: #ff3038;

    font-size: clamp(54px, 2vw, 88px);
    line-height: 1;

    font-weight: 600;
}


/* Divider */

.ch-stat__line {
    width: 52px;
    height: 3px;

    margin: 20px 0;

    background: #ff3038;
    border-radius: 5px;

    box-shadow: 0 0 8px rgba(255, 48, 56, 0.35);
}


/* Label */

.ch-stat__label {
    color: #ffffff;

    font-size: clamp(20px, 1.7vw, 28px);
    line-height: 1.25;

    font-weight: 600;
}


/* Description */

.ch-stat__description {
    max-width: 330px;

    margin: 12px 0 0;

    color: #aebbd7;

    font-size: 16px;
    line-height: 1.5;
}


/* Tablet */

@media (max-width: 1000px) {

    .ch-stats__grid {
        gap: 16px;
    }

    .ch-stat {
        min-height: 410px;
        padding: 25px 20px;
    }

    .ch-stat__icon {
        width: 105px;
        height: 105px;
    }

    .ch-stat__icon svg {
        width: 55px;
        height: 55px;
    }

    .ch-stat__description {
        font-size: 14px;
    }
}


/* Mobile */

@media (max-width: 767px) {

    .ch-stats__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ch-stat {
        min-height: auto;
        padding: 30px 25px 35px;
    }

    .ch-stat__number {
        font-size: 62px;
    }

    .ch-stat__label {
        font-size: 22px;
    }
}


/* Small Mobile */

@media (max-width: 480px) {

    .ch-stat__icon {
        width: 90px;
        height: 90px;
    }

    .ch-stat__icon svg {
        width: 48px;
        height: 48px;
    }

    .ch-stat__number {
        font-size: 54px;
    }

    .ch-stat__label {
        font-size: 20px;
    }

    .ch-stat__description {
        font-size: 14px;
    }
}



/*Trusted By Clients Section*/

/* =========================================
   TRUSTED CLIENTS SECTION
   Scoped ONLY to #trusted-clients
   ========================================= */

#trusted-clients {
    padding: 80px 20px 85px;
    background: #f8fafc;
    text-align: center;
}

#trusted-clients .ch-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Main Heading */
#trusted-clients h1 {
    margin: 0 0 18px;
    color: #10194c;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1.2px;
}

/* Sub Heading */
#trusted-clients p {
    margin: 0 auto 48px;
    max-width: 850px;
    color: #17255c;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}


/* =========================================
   LOGOS
   ========================================= */

/*
   This targets the logo elements generated
   inside the repeater.
*/

#trusted-clients .trusted-client-logos {
    width: 100%;
    overflow: hidden;
}

#trusted-clients .trusted-client-logos .swiper-wrapper {
    display: flex;
    align-items: center;
}

#trusted-clients .trusted-client-logo {
    width: 245px;
    height: 125px;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e7ebf2;
    border-radius: 12px;
    box-sizing: border-box;
    flex-shrink: 0;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

/* Individual logo box */
#trusted-clients .trusted-client-logo {
    width: 245px;
    height: 125px;
    padding: 18px 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid #e7ebf2;
    border-radius: 12px;

    box-sizing: border-box;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

/* Hover */
#trusted-clients .trusted-client-logo:hover {
    transform: translateY(-4px);
    border-color: #d8deea;
    box-shadow: 0 10px 25px rgba(16, 25, 76, 0.08);
}

/* Logo */
#trusted-clients .trusted-client-logo img {
    display: block;

    width: auto;
    max-width: 100%;
    height: 75px;

    object-fit: contain;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 991px) {

    #trusted-clients {
        padding: 65px 20px 70px;
    }

    #trusted-clients h1 {
        font-size: 42px;
    }

    #trusted-clients p {
        font-size: 17px;
        margin-bottom: 40px;
    }


    #trusted-clients .trusted-client-logo {
        width: 220px;
        height: 115px;
    }

    #trusted-clients .trusted-client-logo img {
        height: 68px;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    #trusted-clients {
        padding: 50px 16px 55px;
    }

    #trusted-clients h1 {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: -0.5px;
        margin-bottom: 14px;
    }

    #trusted-clients p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 32px;
    }


    #trusted-clients .trusted-client-logo {
        width: 100%;
        height: 105px;
        padding: 15px;
        border-radius: 10px;
    }

    #trusted-clients .trusted-client-logo img {
        max-width: 100%;
        height: 58px;
    }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {

    #trusted-clients h1 {
        font-size: 28px;
    }

    #trusted-clients p {
        font-size: 15px;
    }


    #trusted-clients .trusted-client-logo {
        height: 100px;
    }
}