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

*:not(dialog) {
	margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
	html {
		interpolate-size: allow-keywords;
		overflow-x: hidden;
	}}

body {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
}

input, button, textarea, select {
	font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
}

p {
	text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
	text-wrap: balance;
}

#root, #__next {
	isolation: isolate;
}

/* END of CSS Reset */

/* Fonts */
@font-face {
	font-family: 'DM Sans';
	src: url('../font/DMSans-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'DM Sans';
	src: url('../font/DMSans-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* END of Fonts */
/* MAIN CONFIG */
:root {
	--primary-slate: #3D5A6C;
	--secondary-turq: #1B8B9B;
	--accent-vibrant-green: #1BD07F;
	--accent-neon-green: #3CE498;
	--underline-green: #3BE498;

	--fs-hero: clamp(3.25rem, 2.2433rem + 3.391vw, 6.3125rem);
	--fs-h2: clamp(3rem, 2.7243rem + 2.1569vw, 5.3125rem);
	--fs-h3: clamp(2.625rem, 2.3382rem + 1.1765vw, 3.75rem);
	--fs-h4: clamp(2.25rem, 2.1863rem + 0.2614vw, 2.5rem);
	--fs-h5: clamp(1.375rem, 1.2475rem + 0.5229vw, 1.875rem);
	--fs-sub: clamp(1.75rem, 1.6544rem + 0.3922vw, 2.125rem);
	--fs-body: clamp(1.125rem, 1.0613rem + 0.2614vw, 1.375rem);
}

body {
	color: var(--primary-slate);
	font-family: "DM Sans";
	overflow-x: hidden;
	font-size: var(--fs-body);
}

h1 {
	font-size: var(--fs-hero) !important;
}

.sub-headline, .description-text {
	font-size: var(--fs-sub) !important;
}

h2 {
	font-size: var(--fs-h2);
}

.h2-mb {
	font-size: calc(var(--fs-h2) * 0.95);
}

h3 {
	font-size: var(--fs-h3);
}

h4, .heading4 {
	font-size: var(--fs-h4);
}

h5, .heading5 {
	font-size: var(--fs-h5);
}

.color-slate {
	color: var(--primary-slate) !important;
}

.color-turq {
	color: var(--secondary-turq) !important;
}

.color-vb-green {
	color: var(--accent-vibrant-green) !important;
}

.bg-slate {
	background-color: var(--primary-slate);
}

.bg-vb-green {
	background-color: var(--accent-vibrant-green) !important;
}

.text-balance {
	text-wrap: balance;
}

.background-image-section {
	background-size: cover;
	background-repeat: no-repeat;
}

.custom-underline {
	background-image: url("../images/svg/underline-stroke.svg");
	background-repeat: no-repeat;
	background-size: 100% 0.6em;
	background-position: left 100%;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	padding: 0 4px;
}

.custom-underline-thick {
	background-image: linear-gradient(
		transparent 60%,
		#75E8B6 60%
	);
	background-repeat: no-repeat;
	background-size: 0% 100%;
	padding: 0 4px;
	margin: 0 -4px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

/* END of MAIN CONFIG */

.header-bg-image {
	font-family: 'DM Sans', sans-serif;
	background: url('../images/jpg/2x/white-background-effect-2x.jpg') center center no-repeat;
	background-size: cover;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

/* Logo Styling */
.logo-icon {
	max-height: 50px;
}

.logo-text {
	font-size: 2.5rem;
	margin: 0;
	letter-spacing: -1px;
}

/* Headline and Underline */
.main-headline {
	font-size: var(--fs-hero);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -0.8px;
	color: var(--primary-slate);
	overflow-wrap: normal;
}

.sub-headline, .description-text {
	/* 25.6px - Originally 1.625~26px */
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.3;
}

/* Stats Section Styling */
.stat-card {
	text-align: left;
	padding: 1rem;
}

.header-stat {
	max-width: 400px;
}

.stat-icon {
	width: 24px;
	height: 24px;
}

.stat-title {
	font-size: clamp(1.625rem, 1.5613rem + 0.2614vw, 1.875rem);
	letter-spacing: -0.91px;
}

.stat-body {
	display: flex;
	align-items: baseline;
	gap: 12px;
}

.stat-number {
	font-size: clamp(3.375rem, 3.0245rem + 1.4379vw, 4.75rem);
	font-weight: 500;
	line-height: 1;
}

.stat-label {
	/* 16px */
	font-size: 1rem;
	text-wrap: balance;
	line-height: 1.4;
}

.stat-extra-label {
	max-width: 100%;
}

/* Process Section */
.process-section {
	background-color: #3D5A6C;
	color: white;
}

.text-accent {
	color: #3CE498;
}

.text-light-muted {
	color: #BDC9CF;
	font-size: 0.95rem;
}

/* White Info Card */
.card-heading {
	font-size: clamp(1.5rem, 1.361rem + 0.5704vw, 2.0454375rem);
}

.info-card {
	background: white;
	color: #3D5A6C;
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	padding: 43px 43px 43px 35px;
}

.info-card h3 {
	line-height: 1.3;
}

/* Step Badges */
.badge-step {
	background-color: #3BE49820;
	padding: 10px 14px;
	font-weight: 400;
	letter-spacing: 0.05rem;
	font-size: 1rem;
	border: 1.5px solid #3BE49840;
	color: #FFFFFF;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.badge-step::before {
   content: "";
   width: 11.5px;
   height: 11.5px;
   background-color: #3CE498;
   border-radius: 50%;
   display: inline-block;
   animation: pulse-green-ring 2s infinite;
}

@keyframes pulse-green-ring {
    0% {
        box-shadow: 0 0 8px rgba(60, 228, 152, 0.6), 0 0 0 0 rgba(60, 228, 152, 0.7);
    }
    70% {
        box-shadow: 0 0 8px rgba(60, 228, 152, 0.6), 0 0 0 6px rgba(60, 228, 152, 0);
    }
    100% {
        box-shadow: 0 0 8px rgba(60, 228, 152, 0.6), 0 0 0 0 rgba(60, 228, 152, 0);
    }
}

/* END of Process Section */
/* Strategy Section */
.strategy-section {
	background-image: url('../images/jpg/2x/white-rising-bar-background-2x.jpg');
}

/* END of Strategy Section */
/* Marketeers Section */

/* END of Marketeers Section */
/* Challenges Section */
.challenges-section {
	background-image: url('../images/jpg/2x/white-block-background-2x.jpg');
}

.challenge-grid {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	column-gap: 0.75rem;
	align-items: center;
}

.challenge-icon {
	grid-column: 1;
	grid-row: 1;
	width: 24px;
	height: 24px;
	margin-top: 0.25em;
}

.challenge-grid h4 {
	grid-column: 2;
	grid-row: 1;
}

.challenge-grid p {
	grid-column: 2;
	grid-row: 2;
}

.challenges-card {
	border: 1px solid #3CE49840;
}

.challenges-card-text {
	font-size: clamp(1.375rem, 1.3272rem + 0.1961vw, 1.5625rem);
}

.card-quote {
	font-size: clamp(1.75rem, 1.6321rem + 0.4837vw, 2.2125rem);
}

.challenge-progress-increasing {
	background: linear-gradient(to right, #60B08C 0%, #3CE498 100%);
	transition: none !important;
}
.counter-value-container {
    display: inline-block;
    min-width: 4ch;
    font-variant-numeric: tabular-nums;
}

/* END of Challenges Section */
/* Clients Section */
.clients-section {
	background-image: url('../images/jpg/2x/dark-block-background-2x.jpg');
}

.client-card {
	position: relative;
	background: #3D5A6C;
	border: 1px solid #FFFFFF35;
	border-radius: 24px;
	height: 325px;
	overflow: hidden;
	transition: all 0.3s ease;
}

/* The neon green indicator at the top */
.neon-tab {
	position: absolute;
	top: 0;
	left: 85%;
	transform: translateX(-50%);
	width: 12px;
	height: 16px;
	background-color: #3BE498;
	border-radius: 0 0 4px 4px;
	box-shadow: 0 0 10px rgba(60, 228, 152, 0.8);
	z-index: 3;
}

/* Default Logo View */
.card-front {
	height: 100%;
	width: 100%;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.client-logo {
	max-width: 75%;
}

/* Hover Logic */
.client-card:hover {
	border-color: #3CE498;
	transform: translateY(-5px);
	background-color: #3CE498;
}

.client-card:hover .card-front {
	transform: scale(0.9);
}

/* END of Clients Section */
/* Developed Tools Section */
.developed-tools-section {
	background: url('../images/jpg/2x/white-pill-background-test-2x.jpg');
	background-position-y: -10%;
}

.solution-card {
	border: 1px solid #E8E4DC;
	transition: all .5s ease;
}

.solution-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.solution-icon {
	max-height: 70px;
	width: auto;
}

.solution-divider {
	color: #E8E4DC;
	border-color: #E8E4DC;
	height: 1.5px;
	opacity: 1;
}

.list-color-turq li::marker {
	color: var(--accent-neon-green);
}

/* END of Developed Tools Section */
/* Behind AI Section */
.behind-ai-section {
	background-image: url('../images/jpg/2x/white-pill-group-background-test-2x.jpg');
	background-position-y: -10%;
}

/* END of Behind AI Section */
/* Info Block Section */
.info-block-grid {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	column-gap: 0.75rem;
	align-items: center;
}

.info-block-icon {
	grid-column: 1;
	grid-row: 1;
	width: 24px;
	height: 24px;
	margin-top: 0.25em;
}

.info-block-grid h4 {
	grid-column: 2;
	grid-row: 1;
}

.info-block-grid p {
	grid-column: 2;
	grid-row: 2;
}

/* END of Info Block Section */
/* Book Call Section */
.book-call-section {
	background-image: url('../images/jpg/2x/white-background-effect-2x.jpg');
	background-position: center;
}

/* END of Book Call Section */
/* Pharma Footer Section */
.footer-icon {
	max-width: 62px;
	height: auto;
}

.footer-links a {
	font-size: clamp(1.75rem, 1.527rem + 0.915vw, 2.625rem);
	letter-spacing: -0.565px;
}

/* END of Pharma Footer Section */