/**
* ====================================================================
* ALYEA THERAPEUTICS - MODULAR MASTER STYLESHEET (style.css)
* ====================================================================
* Fully modular architecture with clean section boundaries.
* Fully responsive, CSS variables-driven design system.
*
* TABLE OF CONTENTS:
* --------------------------------------------------------------------
* 00. CSS VARIABLES & THEME TOKENS (:root)
* 01. BASE STYLES, RESET & TYPOGRAPHY
* 02. HEADER & NAVIGATION MODULE (.navbar, mobile-menu)
* 03. FOOTER MODULE (.footer, newsletter, copyright)
* 04. BLOCK: HERO SECTION (.main-hero)
* 05. BLOCK: ABOUT SECTION (.innner-about-grid, video)
* 06. BLOCK: STATS / THE OPIOID ISSUE (.opiod-faq, .issues-grid)
* 07. BLOCK: INNOVATION DUAL-SCROLL (.home-scroll_section)
* 08. BLOCK: SOLUTIONS SECTION (.solutions, .solutions-lkister)
* 09. BLOCK: CTA & INVESTORS (.cta, .investors, .brain)
* 10. BLOCK: TEAM & LEADERSHIP (.lead-grid, .dr-grid)
* 11. BLOCK: MEDICAL STUDIES & PUBLICATIONS (.studies-list)
* 12. BLOCK: FAQ ACCORDION (.faq-grid, .faq-item)
* 13. BLOCK: TESTIMONIALS & QUOTES (.quote, .quote-inner)
* 14. BLOCK: CORE VALUES & ALTERNATIVE (.alt-grid, .left-alt)
* 15. BLOCK: CONTACT MODAL & FORM (.contact-fly, .form-block)
* 16. ANIMATION & HELPER UTILITIES (.split-chars, [fade-in])
* 17. RESPONSIVE BREAKPOINTS (Mobile & Tablet Media Queries)
* ====================================================================
*/


/* ====================================================================
* 00. CSS VARIABLES & THEME TOKENS
* --------------------------------------------------------------------
* Global color palette, typography tokens, spacing, and border radii.
* ==================================================================== */
:root {
	/* --- Brand Color Palette --- */
	--alyea-blue: #4da8bf;
	--alyea-light-blue: #badeed;
	--alyea-green: #73bdb8;
	--blue: #558dc6;
	--white: #ffffff;
	--font: #505050;
	--text-dark: #1a1a1a;
	--text-muted: #666666;
	--bg-light: #eef6f7;
	--bg-dark: #15505f;
	--border-light: rgba(77, 168, 191, 0.3);
	--border-white: rgba(255, 255, 255, 0.2);

	/* --- Typography --- */
	--font-family-base: "neuemontreal", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-size-base: 18px;
	--line-height-base: 1.4;

	/* --- Spacing & Layout --- */
	--container-max-width: 1800px;
	--transition-smooth: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
	--transition-fast: all 0.2s ease;

	/* --- Radius & Shadows --- */
	--radius-sm: 5px;
	--radius-md: 10px;
	--radius-pill: 1000px;
	--shadow-nav: none;
	--shadow-card: none;
}

@font-face {
	font-family: neuemontreal;
	src: url("https://cdn.prod.website-files.com/677c0666aed7e7f2bcaba3f8/677c21a35ba2ec92bb941e4a_PPNeueMontreal-Variable.ttf") format("truetype");
	font-weight: 100 700;
	font-style: normal;
	font-display: swap;
}


/* ====================================================================
* 01. BASE STYLES, RESET & TYPOGRAPHY
* --------------------------------------------------------------------
* Global box-sizing reset, base body styles, and typography rules.
* ==================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	scroll-behavior: auto;
	/* Lenis handles smooth scrolling */
}

body {
	margin: 0;
	padding: 0;
	color: var(--font);
	font-family: var(--font-family-base);
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
	background-color: var(--white);
	background-image: url("../img/nno-bg.svg");
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	overflow-x: hidden;
}

/* WordPress Logged-in Admin Bar Top Adjustments */
body.admin-bar {
	margin-top: -32px !important;
}

body.admin-bar .navbar {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar {
		margin-top: -46px !important;
	}

	body.admin-bar .navbar {
		top: 46px;
	}
}

/* ====================================================================
* FULLSCREEN VIDEO INTRO PRELOADER
* ==================================================================== */
.site-preloader {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	background-color: #ffffff;
	background-image: url("../img/bg-intro-loader.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	pointer-events: all;
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
}

.site-preloader .preloader-video {
	width: auto;
	max-width: 760px;
	max-height: 72vh;
	object-fit: contain;
	display: block;
}

.site-preloader .preloader-center-img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 250px;
	width: auto;
	height: auto;
	z-index: 2;
	pointer-events: none;
	animation: preloaderPulse 2.2s ease-in-out infinite;
}

@media screen and (max-width: 767px) {
	.site-preloader .preloader-video {
		max-width: 85vw;
		max-height: 60vh;
	}

	.site-preloader .preloader-center-img {
		max-width: 200px;
	}
}

@keyframes preloaderPulse {

	0%,
	100% {
		opacity: 0.88;
		transform: translate(-50%, -50%) scale(1);
	}

	50% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.03);
	}
}

.site-preloader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--text-dark);
	margin-top: 0;
	font-weight: 500;
	line-height: 1.15;
}

h1 {
	font-size: 70px;
	margin-bottom: 20px;
}

h2 {
	font-size: 30px;
	margin-bottom: 15px;
}

h3 {
	font-size: 24px;
	margin-bottom: 12px;
}

h4 {
	font-size: 20px;
	margin-bottom: 10px;
}

p {
	margin-top: 0;
	margin-bottom: 15px;
}

a {
	color: var(--blue);
	text-decoration: none;
	transition: var(--transition-fast);
}

a:hover {
	color: var(--alyea-blue);
}

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

/* --- Container Wrappers --- */
.container {
	width: 100%;
	max-width: var(--container-max-width);
	margin-left: auto;
	margin-right: auto;
	padding: 100px 60px;
}

/* Default Hero Container: Bottom Positioned (Left / Right) */
.container.hero-cont {
	position: absolute;
	inset: auto 0% 0%;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 4;
	padding-bottom: 80px;
	padding-top: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

/* Center Aligned Hero Container (X and Y Axis Center) */
.container.hero-cont.hero-cont-center,
.main-hero.text-center .container.hero-cont {
	inset: 0% 0% 0% 0%;
	top: 0;
	bottom: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 0;
	padding-bottom: 0;
}

.container.foot {
	padding-top: 120px;
	padding-bottom: 60px;
}

.container.less-tb {
	padding-top: 50px;
	padding-bottom: 50px;
}

.container.less-t {
	padding-top: 50px;
}

.container.less-b {
	padding-bottom: 50px;
}

.container.nop {
	padding: 0;
}

/* --- Global Button Styles --- */
.btn,
.w-button {
	display: inline-block;
	background-color: var(--alyea-blue);
	color: var(--white);
	font-weight: 500;
	text-align: center;
	border-radius: var(--radius-pill);
	padding: 12px 40px;
	font-size: 16px;
	line-height: 20px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: var(--transition-fast);
}

.btn:hover,
.w-button:hover {
	background-color: var(--alyea-green);
	color: var(--white);
}

.btn.biggerb {
	padding: 16px 45px;
	font-size: 18px;
}

.btn.o1 {
	background-color: var(--alyea-blue);
}

.btn.mb {
	margin-top: 40px;
	padding: 20px;
	font-size: 20px;
	width: 100%;
}


/* ====================================================================
* 02. HEADER & NAVIGATION MODULE
* --------------------------------------------------------------------
* Fixed header, brand logos, desktop nav menu, and mobile drawer.
* ==================================================================== */
.navbar,
.w-nav {
	position: fixed;
	inset: 0% 0% auto;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 115px;
	background-color: rgba(238, 246, 247, 0);
	will-change: width, height, background;
	transition: height 0.35s ease, background-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.navbar.is-scrolled {
	height: 80px;
	background-color: rgb(255, 255, 255);
	box-shadow: none;
	backdrop-filter: blur(10px);
}

.nav-container {
	flex: 1;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 100%;
	max-width: var(--container-max-width);
	margin-left: auto;
	margin-right: auto;
	padding: 0 50px;
	transition: padding 0.35s ease;
}

.inner-nav {
	flex: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: var(--radius-pill);
}

.brand,
.w-nav-brand {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	text-decoration: none;
	height: 100%;
}

/* Inner Pages Initial State (Unscrolled): White Logo */
.brand .logo-img {
	display: block;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.brand .logo-imgdark {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

/* Home Page Initial State (Unscrolled): Primary Color Logo & White Menu Text */
body.home .navbar:not(.is-scrolled) .brand .logo-img,
body.front-page .navbar:not(.is-scrolled) .brand .logo-img {
	opacity: 0 !important;
	visibility: hidden !important;
}

body.home .navbar:not(.is-scrolled) .brand .logo-imgdark,
body.front-page .navbar:not(.is-scrolled) .brand .logo-imgdark {
	opacity: 1 !important;
	visibility: visible !important;
}

body.home .navbar:not(.is-scrolled) .nav-menu-list li a,
body.home .navbar:not(.is-scrolled) .nav-menu li a,
body.home .navbar:not(.is-scrolled) .nav-link,
body.home .navbar:not(.is-scrolled) .w-nav-link,
body.home .navbar:not(.is-scrolled) .menu-button,
body.front-page .navbar:not(.is-scrolled) .nav-menu-list li a,
body.front-page .navbar:not(.is-scrolled) .nav-menu li a,
body.front-page .navbar:not(.is-scrolled) .nav-link,
body.front-page .navbar:not(.is-scrolled) .w-nav-link,
body.front-page .navbar:not(.is-scrolled) .menu-button {
	color: #ffffff !important;
}

/* Contact & Single Solution Pages Initial State (Unscrolled): Color Logo & Dark Text */
body.single-solution .navbar:not(.is-scrolled) .brand .logo-img,
body.single .navbar:not(.is-scrolled) .brand .logo-img {
	opacity: 0 !important;
	visibility: hidden !important;
}

body.single-solution .navbar:not(.is-scrolled) .brand .logo-imgdark,
body.single .navbar:not(.is-scrolled) .brand .logo-imgdark {
	opacity: 1 !important;
	visibility: visible !important;
}

body.single-solution .navbar:not(.is-scrolled) .nav-menu-list li a,
body.single-solution .navbar:not(.is-scrolled) .nav-menu li a,
body.single-solution .navbar:not(.is-scrolled) .nav-link,
body.single-solution .navbar:not(.is-scrolled) .w-nav-link,
body.single-solution .navbar:not(.is-scrolled) .menu-button,
body.single .navbar:not(.is-scrolled) .nav-menu-list li a,
body.single .navbar:not(.is-scrolled) .nav-menu li a,
body.single .navbar:not(.is-scrolled) .nav-link,
body.single .navbar:not(.is-scrolled) .w-nav-link,
body.single .navbar:not(.is-scrolled) .menu-button {
	color: rgb(36, 36, 36) !important;
}

/* Scrolled State (All Pages): Solid White Background + Primary Color Logo + Dark Links */
.navbar.is-scrolled {
	height: 80px;
	background-color: rgb(255, 255, 255) !important;
	box-shadow: none;
	backdrop-filter: blur(10px);
}

.navbar.is-scrolled .brand .logo-img {
	opacity: 0 !important;
	visibility: hidden !important;
}

.navbar.is-scrolled .brand .logo-imgdark {
	opacity: 1 !important;
	visibility: visible !important;
}

.navbar.is-scrolled .nav-menu-list li a,
.navbar.is-scrolled .nav-menu li a,
.navbar.is-scrolled .nav-link,
.navbar.is-scrolled .w-nav-link,
.navbar.is-scrolled .menu-button {
	color: rgb(36, 36, 36) !important;
}

.nav-menu,
.w-nav-menu {
	display: flex;
	align-items: center;
	margin-left: 25px;
}

/* --- WordPress Desktop Nav Menu List & Items --- */
.nav-menu-list,
.nav-menu ul,
ul.nav-menu-list {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	grid-gap: 0;
	gap: 0;
}

.nav-menu-list li,
.nav-menu li,
li.menu-item {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-flex;
	align-items: center;
}

.nav-menu-list li a,
.nav-menu li a,
.nav-link,
.w-nav-link {
	color: var(--white);
	font-weight: 500;
	font-size: 16px;
	padding: 20px 13px;
	text-decoration: none;
	transition: color 0.3s ease;
	display: inline-block;
	line-height: 1.2;
}

.navbar.is-scrolled .nav-menu-list li a,
.navbar.is-scrolled .nav-menu li a,
.navbar.is-scrolled .nav-link,
.navbar.is-scrolled .w-nav-link {
	color: rgb(36, 36, 36);
}

.nav-menu-list li a:hover,
.nav-menu li a:hover,
.nav-link:hover,
.w-nav-link:hover {
	color: var(--alyea-light-blue);
}

.navbar.is-scrolled .nav-menu-list li a:hover,
.navbar.is-scrolled .nav-menu li a:hover,
.navbar.is-scrolled .nav-link:hover,
.navbar.is-scrolled .w-nav-link:hover {
	color: var(--alyea-blue);
}

/* Active Menu Item States & Underline */
.nav-menu-list li.current-menu-item>a,
.nav-menu-list li.current_page_item>a,
.nav-menu-list li.current-menu-ancestor>a,
.nav-menu li.current-menu-item>a,
.nav-menu li.current_page_item>a,
.nav-menu li.current-menu-ancestor>a,
.nav-link.w--current,
.w-nav-link.w--current {
	color: var(--white);
	text-decoration: underline !important;
	text-underline-offset: 8px !important;
	text-decoration-thickness: 2px !important;
}

body.single-solution:not(.is-scrolled) .nav-menu-list li.current-menu-item>a,
body.single-solution:not(.is-scrolled) .nav-menu-list li.current_page_item>a,
body.single-solution:not(.is-scrolled) .nav-menu-list li.current-menu-ancestor>a,
body.single-solution:not(.is-scrolled) .nav-link.w--current,
body.single:not(.is-scrolled) .nav-menu-list li.current-menu-item>a,
body.single:not(.is-scrolled) .nav-menu-list li.current_page_item>a,
body.single:not(.is-scrolled) .nav-menu-list li.current-menu-ancestor>a,
body.single:not(.is-scrolled) .nav-link.w--current {
	color: #1a1a1a !important;
}

.navbar.is-scrolled .nav-menu-list li.current-menu-item>a,
.navbar.is-scrolled .nav-menu-list li.current_page_item>a,
.navbar.is-scrolled .nav-menu-list li.current-menu-ancestor>a,
.navbar.is-scrolled .nav-menu li.current-menu-item>a,
.navbar.is-scrolled .nav-menu li.current_page_item>a,
.navbar.is-scrolled .nav-menu li.current-menu-ancestor>a,
.navbar.is-scrolled .nav-link.w--current,
.navbar.is-scrolled .w-nav-link.w--current {
	color: #1a1a1a !important;
	text-decoration: underline !important;
	text-underline-offset: 8px !important;
	text-decoration-thickness: 2px !important;
}

.cont-btn {
	background-color: var(--alyea-blue);
	color: var(--white);
	border-radius: var(--radius-pill);
	padding: 12px 40px;
	font-weight: 500;
	margin-left: auto;
	text-decoration: none;
	display: inline-block;
	transition: var(--transition-fast);
}

.cont-btn:hover {
	background-color: var(--alyea-green);
	color: var(--white);
}

/* --- Mobile Menu Drawer --- */
.menu-button {
	display: none;
	color: var(--white);
	cursor: pointer;
	align-items: center;
	justify-content: center;
}

.mobile-menu {
	position: fixed;
	inset: 0%;
	z-index: 10000;
	background-color: var(--alyea-light-blue);
	display: none;
	overflow-y: auto;
}

.mob-nav-contain {
	padding: 25px 20px;
}

.mob-nav-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.close-btn {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.inner-mob-menu {
	display: flex;
	flex-direction: column;
	padding: 30px 20px;
}

.mob-menu-list,
.inner-mob-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.mob-menu-list li,
.inner-mob-menu li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mob-menu-list li a,
.inner-mob-menu li a,
.mob-menu-link {
	display: block;
	color: var(--text-dark);
	font-size: 30px;
	line-height: 1;
	font-weight: 500;
	padding: 15px 0;
	text-decoration: none;
	transition: color 0.2s ease, padding-left 0.2s ease;
}

.mob-menu-list li a:hover,
.inner-mob-menu li a:hover,
.mob-menu-link:hover {
	color: var(--alyea-blue);
}


/* ====================================================================
* 03. FOOTER MODULE (   )
* --------------------------------------------------------------------
*  ,  ,     
* ==================================================================== */
.footer {
	background-color: var(--alyea-blue);
	color: var(--white);
}

.top-footer {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1.75fr;
	grid-column-gap: 40px;
	grid-row-gap: 40px;
}

.footer-link-box {
	display: flex;
	flex-direction: column;
	grid-gap: 15px;
}

.foot-h {
	color: var(--white);
	font-size: 23px;
	font-weight: 500;
	margin-bottom: 10px;
}

.foot-link {
	color: #f1f1f1;
	font-size: 16px;
	text-decoration: none;
	max-width: max-content;
}

.foot-link:hover {
	color: var(--alyea-light-blue);
}

.right-side-foot {
	display: flex;
	flex-direction: column;
	grid-gap: 15px;
}

.news-sub {
	color: #e9e9e9;
	font-size: 16px;
}

.form {
	display: flex;
	align-items: center;
	background-color: transparent;
	gap: 5px;
}

.text-field {
	background-color: transparent;
	color: var(--white);
	border: 1px solid white;
	border-radius: 200px 0 0 200px;
	height: 50px;
	padding: 0 20px;
	font-size: 16px;
	outline: none;
	flex: 1;
	width: 100%;
}

.text-field::placeholder {
	color: #e4e4e4;
}

.submit-button {
	background-color: transparent;
	color: var(--white);
	border: 1px solid white;
	border-radius: 0 200px 200px 0;
	width: 55px;
	height: 50px;
	cursor: pointer;
	transition: var(--transition-fast);
	flex-shrink: 0;
	padding: 0;
}

.submit-button:hover {
	background-color: rgba(255, 255, 255, 0.15);
	color: var(--white);
}

.bottom-footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 140px;
}

.disc {
	color: #e5e5e5;
	font-size: 14px;
}

.disc-link-box {
	display: flex;
	align-items: center;
	grid-gap: 30px;
}

.disc-link {
	color: #e4e4e4;
	font-size: 14px;
	text-decoration: none;
}

.disc-link:hover {
	color: var(--alyea-light-blue);
}

/* Newsletter Success / Error messages */
.w-form-done,
.success-message {
	display: none;
	background-color: transparent;
	color: var(--white);
	font-size: 16px;
	padding: 12px 0;
}

.w-form-done.is-visible,
.success-message.is-visible {
	display: block;
}


/* ====================================================================
* 04. BLOCK: HERO SECTION
* --------------------------------------------------------------------
*   , ,    
* ==================================================================== */
/* Home Page Hero Section: Fixed Fullscreen Viewport */
body.home .main-hero,
body.front-page .main-hero {
	position: relative;
	height: 100vh;
	min-height: 700px;
	max-height: 1000px;
	background-color: #fff;
	background-image: url("../img/bg-hero-home.png");
	background-position: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

/* All Other Pages Hero Section (Inner Pages): 80vh Height */
.main-hero.hero-banner-inner,
body:not(.home):not(.front-page) .main-hero {
	position: relative;
	height: 80vh;
	min-height: 650px;
	max-height: 900px;
	background-color: #fff;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center right;
	overflow: hidden;
}

.inner-hero {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 790px;
	grid-gap: 0;
	gap: 8px;
}

.hero-badge-img {
	margin-bottom: 10px;
	width: auto;
}

.main-h {
	color: var(--white);
	font-size: 70px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 8px;
}

.main-h.split-text {
	font-size: 90px;
	color: var(--white);
	line-height: 1;
	margin-bottom: 8px;
}

.main-hero p,
.main-hero .sub-text,
.sub-text {
	color: var(--white) !important;
	font-size: 24px;
	line-height: 1.444;
}

/* --- Hero Text Alignment Utilities (Left, Center, Right) --- */
.main-hero.text-left .inner-hero {
	align-items: flex-start;
	text-align: left;
	margin-right: auto;
	margin-left: 0;
}

.main-hero.text-center .inner-hero {
	align-items: center;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.main-hero.text-center .inner-hero .letter-animation,
.main-hero.text-center .inner-hero .main-h {
	text-align: center;
	width: 100%;
}

.main-hero.text-center .inner-hero .sub-text {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.main-hero.text-center .inner-hero .hero-badge-img {
	margin-left: auto;
	margin-right: auto;
}

.main-hero.text-center .hero-cta-wrap {
	justify-content: center;
}

.main-hero.text-right .inner-hero {
	align-items: flex-end;
	text-align: right;
	margin-left: auto;
	margin-right: 0;
}

.main-hero.text-right .inner-hero .letter-animation,
.main-hero.text-right .inner-hero .main-h {
	text-align: right;
	width: 100%;
}

.main-hero.text-right .inner-hero .sub-text {
	margin-left: auto;
	margin-right: 0;
}

.main-hero.text-right .hero-cta-wrap {
	justify-content: flex-end;
}

/* --- Hotspot Ambient Glow Element --- */
.hotspot {
	position: absolute;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: var(--alyea-blue);
	pointer-events: none;
	right: 36%;
	top: 21%;
	opacity: 0.55;
	transform-style: preserve-3d;
	will-change: transform, opacity;
	z-index: 1;
}

.hotspot.about-hot {
	right: 7.5%;
	top: 48%;
}

.hotspot.chron-spot {
	right: 32%;
	top: 25%;
}

.hotspot.inno-spot {
	right: 35%;
	top: 18%;
}

.hotspot.solz {
	right: 25%;
	top: 35%;
}

.hotspot.invest {
	right: 30%;
	top: 22%;
}

.hotspot.anklehot {
	right: 20%;
	top: 40%;
}

.hotspot.arm-spot {
	right: 24%;
	top: 32%;
}


/* ====================================================================
* 05. BLOCK: ABOUT SECTION (     )
* --------------------------------------------------------------------
*   ,   ,      .  
* ==================================================================== */
/* --- Sub Hero (Inner Pages Banner) --- */
.sub-hero {
	position: relative;
	height: 80vh;
	min-height: 550px;
	max-height: 850px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.sub-hero.ab {
	background-image: url("../img/bg-hero-about.png");
}

.sub-cont {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	grid-gap: 20px;
	position: relative;
	z-index: 2;
}

.sub-h {
	color: var(--white);
	font-size: 75px;
	font-weight: 500;
	line-height: 1.05;
	text-align: center;
	margin-bottom: 10px;
}

.paragraph.white.cent-top {
	color: var(--white);
	text-align: center;
	font-size: 20px;
	line-height: 1.4;
	max-width: 650px;
}

.about-hot {
	position: absolute;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(186, 222, 237, 0.4) 50%, rgba(255, 255, 255, 0) 70%);
	filter: blur(8px);
	pointer-events: none;
	bottom: 35%;
	left: 15%;
}



/* ====================================================================
* BLOCK: STATISTICS & METRICS (The Opioid Issue)
* ==================================================================== */
.opiod-faq {
	background-color: #eef6f7;
	position: relative;
	width: 100%;
}

.stats-container {
	width: 100%;
	max-width: var(--container-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 60px;
	padding-right: 60px;
}

.top-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0;
	width: 100%;
}

.stats-title {
	color: var(--alyea-blue);
	font-size: 50px;
	font-weight: 500;
	line-height: 1;
	margin: 0;
}

.stats-btn-wrap {
	display: flex;
	align-items: center;
}

.issues-grid {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 35px;
	width: 100%;
}

.issue-item,
.grid-boxer {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	padding: 60px 31px;
	box-sizing: border-box;
}

@media screen and (min-width: 992px) {
	.issue-item:not(:first-child) {
		margin-left: 40px;
		gap: 10px;
	}
}

.issue-h {
	color: #4ea8bc;
	font-size: 72px;
	font-weight: 500;
	line-height: 1.05;
	margin-bottom: 18px;
	letter-spacing: -0.02em;
}

.issue-sub {
	color: #1a1a1a;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 12px;
}

.issue-desc,
.issue-p {
	color: #4a4a4a;
	font-size: 15px;
	line-height: 1.55;
	margin: 0;
}

p.issue-desc {
	max-width: 300px;
	font-size: 18px;
	line-height: 130%;
}

.vert-line {
	width: 2px;
	height: 300px;
	min-height: 300px;
	max-height: 300px;
	background-color: rgba(78, 168, 188, 0.35);
	flex-shrink: 0;
	align-self: center;
	margin: 0;
}

/* --- Responsive Statistics & Metrics --- */
@media screen and (max-width: 991px) {
	.stats-container {
		padding-left: 30px;
		padding-right: 30px;
	}

	.top-flex {
		flex-direction: column;
		align-items: flex-start;
		gap: 25px;
		margin-bottom: 25px;
	}

	.stats-title {
		font-size: 36px;
	}

	.issues-grid {
		flex-direction: column;
		gap: 0;
	}

	.issue-item,
	.grid-boxer {
		width: 100%;
		padding: 25px 0;
	}

	.vert-line {
		width: 100%;
		height: 2px;
		min-height: 2px;
		max-height: 2px;
		background-color: rgba(78, 168, 188, 0.35);
		margin: 15px 0;
		align-self: auto;
	}

	.issue-h {
		font-size: 56px;
	}

	.issue-sub {
		font-size: 18px;
	}

	p.issue-desc,
	.issue-desc {
		font-size: 15px;
		max-width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.stats-container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.stats-title {
		font-size: 32px;
	}

	.issue-h {
		font-size: 52px;
		margin-bottom: 15px;
	}

	.text-size-h1 {
		font-size: 26px !important;
		margin-bottom: 6px !important;
	}
}

/* --- Sub Hero Left Aligned (Inner Pages: Innovation, Chronic Pain, Solutions, Investors) --- */
.sub-hero-left {
	position: relative;
	height: 80vh;
	min-height: 550px;
	max-height: 850px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	overflow: hidden;
}

.sub-hero-left.inno {
	background-image: url("../img/bg-hero-innovation.png");
}

.sub-hero-left.cp {
	background-image: url("../img/bg-hero-chronic-pain.png");
}

.sub-hero-left.sol {
	background-image: url("../img/bg-hero-solutions.png");
}

.sub-hero-left.inv {
	background-image: url("../img/bg-hero-investors.png");
}

.sub-cont-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 780px;
	grid-gap: 20px;
	position: relative;
	z-index: 2;
}

.sub-h-left {
	color: var(--white);
	font-size: 70px;
	font-weight: 500;
	line-height: 1.08;
	margin-bottom: 10px;
}

.inno-spot,
.chron-spot,
.arm-spot,
.anklehot {
	position: absolute;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(186, 222, 237, 0.4) 50%, rgba(255, 255, 255, 0) 70%);
	filter: blur(8px);
	pointer-events: none;
}

.inno-spot {
	bottom: 25%;
	right: 25%;
}

.chron-spot {
	bottom: 30%;
	right: 20%;
}

.arm-spot {
	top: 35%;
	left: 20%;
}

.anklehot {
	bottom: 20%;
	right: 20%;
}

.toper-med-desc {
	font-size: 18px;
	color: var(--font);
	line-height: 1.45;
	max-width: 800px;
	margin-top: 15px;
	margin-bottom: 30px;
}

.works-img-box {
	position: relative;
	width: 100%;
}

.works-img {
	width: 100%;
	border-radius: var(--radius-md);
}

/* --- About Grid & Media/Content Split --- */
.main-grid {
	background-color: var(--white);
	position: relative;
	width: 100%;
}

.innner-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 70px;
	grid-row-gap: 50px;
	align-items: center;
}

.innner-about-grid.media-left-order {
	grid-template-columns: 1fr 1fr;
}

.left-about-div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
}

.left-about-div h2.bigger,
.left-about-div h2 {
	color: var(--alyea-blue);
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 30px;
	font-weight: 500;
	line-height: 33px;
}

.rich-content-box {
	width: 100%;
	color: var(--font);
	font-size: 16px;
	line-height: 1.55;
}

.rich-content-box p {
	color: #333;
	font-size: 18px;
	line-height: 1.4;
}

span.blue-text {
	color: var(--alyea-blue);
}

.rich-content-box p:last-child {
	margin-bottom: 0;
}

.rich-content-box h3,
.rich-content-box h4 {
	color: var(--alyea-blue);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
	margin-top: 24px;
	margin-bottom: 14px;
}

.rich-content-box ul,
.rich-content-box ol {
	margin: 0 0 20px 0;
	padding-left: 22px;
}

.rich-content-box li {
	margin-bottom: 8px;
	line-height: 1.5;
	color: #333;
	font-size: 18px;
}

.rich-content-box strong,
.rich-content-box b {
	font-weight: 600;
	color: #1a1a1a;
}

.img-box {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.abt-shoulder {
	border-radius: var(--radius-md);
	width: 100%;
	height: auto;
	object-fit: cover;
}

.home-anim {
	width: 100%;
	border-radius: var(--radius-md);
	overflow: hidden;
}

.home-anim video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-md);
	display: block;
}

.media-caption {
	font-size: 13px;
	color: #777;
	margin-top: 14px;
	text-align: center;
	line-height: 1.4;
	width: 100%;
}

@media screen and (max-width: 991px) {
	.innner-about-grid {
		grid-template-columns: 1fr;
		grid-gap: 40px;
	}

	.innner-about-grid.media-left-order {
		grid-template-columns: 1fr;
	}

	.left-about-div {
		max-width: 100% !important;
	}

	.left-about-div h2.bigger {
		font-size: 26px;
	}

	.opiod-faq .stats-btn-wrap {
		display: none;
	}
}

/* --- Core Values Section with Video Split --- */
.about-grider {
	background-color: var(--white);
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
}

.full-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	min-height: 600px;
}

@media screen and (max-width: 991px) {
	.about-grider {
		padding: 0;
	}
}

.about-animation {
	width: 100%;
	min-height: 520px;
	position: relative;
	overflow: hidden;
	display: flex;
}

.about-animation video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.right-grid-contain {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 90px 70px;
	background-color: var(--bg-light);
	background: linear-gradient(135deg, #a8dce8 0%, #bfe6ef 45%, #cbebf3 100%);
	background-position: center;
	background-size: cover;
}

.inner-core {
	display: flex;
	flex-direction: column;
	max-width: 620px;
}

.cor-h {
	color: var(--alyea-blue);
	font-size: 50px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 20px;
}

.right-grid-contain .paragraph {
	font-size: 18px;
	line-height: 1.4;
	color: #333;
	margin-bottom: 10px;
}

.core-di {
	display: flex;
	flex-direction: column;
}

.value-item:first-child {
	border-top: none;
}

.value-item {
	display: flex;
	align-items: center;
	padding: 19px 0 18px;
	border-top: 1px solid rgba(77, 168, 191, 0.4);
}

.value-item:last-child {
	border-bottom: 1px solid rgba(77, 168, 191, 0.4);
}

.value-icon {
	margin-right: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
}

.value-icon-img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	display: block;
}

.value-icon svg {
	width: 40px;
	height: 40px;
	display: block;
}

.value-item-h {
	color: var(--alyea-blue);
	font-size: 24px;
	font-weight: 500;
	line-height: 1.25;
	margin: 0;
}

@media screen and (max-width: 991px) {
	.full-grid {
		grid-template-columns: 1fr;
	}

	.right-grid-contain {
		order: 1;
		padding: 60px 30px;
	}

	.about-animation {
		order: 2;
		min-height: 380px;
		height: 380px;
	}

	.cor-h {
		font-size: 42px;
	}

	.value-item-h {
		font-size: 20px;
	}
}



@media screen and (max-width: 767px) {
	.alyea-solutions-section {
		padding: 50px 0;
	}

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

	.solutions-section-title {
		font-size: 26px;
		margin-bottom: 25px;
	}

	.solution-grid-img-card,
	.solution-row-img-card {
		height: 260px;
		padding: 15px;
	}

	.solution-grid-title,
	.solution-row-title {
		font-size: 22px;
	}
}

/* ====================================================================
* BLOCK: EXPERT PROFILE & 2-COLUMN SPLIT (.dr-soin)
* ==================================================================== */
.dr-soin {
	background-color: var(--white);
	position: relative;
	width: 100%;
}

.dr-soin-container {
	width: 100%;
	max-width: var(--container-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 60px;
	padding-right: 60px;
}

.dr-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

.dr-content-col {
	display: flex;
	flex-direction: column;
}

.dr-media-col {
	display: flex;
	flex-direction: column;
}

/* Image on Left */
.dr-grid.media-left-order .dr-media-col {
	order: 1;
}

.dr-grid.media-left-order .dr-content-col {
	order: 2;
}

.dr-soin-title {
	color: var(--alyea-blue);
	font-size: 34px;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 25px;
}

.dr-main-p,
.dr-caption-p {
	color: #333;
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 28px;
}

.dr-badges-wrap {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.sr-items {
	border: 1px solid var(--alyea-blue);
	border-radius: var(--radius-sm);
	padding: 9px 15px;
	background-color: var(--white);
	transition: border-color 0.2s ease;
}

.blue-p {
	color: var(--alyea-blue);
	font-size: 18px;
	line-height: 1.4;
	margin: 0;
	font-weight: 400;
}

.dr-img-wrap {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	width: 100%;
}

.dr-s-pic {
	width: 100%;
	height: auto;
	border-radius: var(--radius-md);
	object-fit: contain;
	display: block;
}

@media screen and (max-width: 991px) {
	.dr-soin {
		padding: 60px 0;
	}

	.dr-soin-container {
		padding-left: 25px;
		padding-right: 25px;
	}

	.dr-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.dr-grid.media-left-order .dr-media-col,
	.dr-grid.media-left-order .dr-content-col {
		order: unset;
	}

	.dr-soin-title {
		font-size: 28px;
	}
}

/* ====================================================================
* BLOCK: DIRECTORS & GOVERNANCE CREDENTIALS
* ==================================================================== */
.alyea-credentials-block {
	background-color: var(--white);
	position: relative;
	width: 100%;
}

.credentials-container {
	width: 100%;
	max-width: var(--container-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 60px;
	padding-right: 60px;
}

.credentials-title {
	color: #4ea8bc;
	font-size: 32px;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 45px;
	text-align: left;
}

.credentials-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 40px;
	align-items: start;
	width: 100%;
}

.credential-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

.credential-name {
	color: #4ea8bc;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 6px;
}

.credential-role {
	color: #1a1a1a;
	font-size: 14.5px;
	font-weight: 500;
	line-height: 1.35;
	margin-bottom: 14px;
}

.credential-bio p {
	color: #4a4a4a;
	font-size: 13.5px;
	line-height: 1.55;
	margin: 0;
}

@media screen and (max-width: 1024px) {
	.credentials-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 35px;
	}

	.credentials-container {
		padding-left: 30px;
		padding-right: 30px;
	}
}

@media screen and (max-width: 767px) {

	.alyea-credentials-block,
	.dr-soin {
		padding: 60px 0;
	}

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

	.credentials-title {
		font-size: 26px;
		margin-bottom: 30px;
	}

	.credentials-grid {
		grid-template-columns: 1fr;
		grid-gap: 30px;
	}
}


/* ====================================================================
* 07. BLOCK: INNOVATION DUAL-SCROLL (   )
* --------------------------------------------------------------------
*        
* ==================================================================== */
.innovation {
	background-color: var(--white);
	position: relative;
	width: 100%;
}

.home-scroll_section {
	display: flex;
	position: relative;
	align-items: flex-start;
}

.home-scroll_visual {
	position: sticky;
	top: 115px;
	width: 50%;
	height: calc(100vh - 115px);
	max-height: calc(100vh - 130px);
	min-height: 500px;
}

.home-scroll_img-wrap {
	position: relative;
	width: 100%;
	height: 100%;
}

.home-scroll_img-list {
	position: relative;
	width: 100%;
	height: 100%;
}

.home-scroll_img-item {
	position: absolute;
	inset: 0%;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.home-scroll_img-item.is-active {
	opacity: 1;
}

.home-scroll_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-md);
	display: block;
}

.home-scroll_content {
	width: 50%;
	padding-left: 48px;
	padding-top: 0;
	padding-bottom: 10vh;
}

.home-scroll_text-item {
	min-height: 80vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 80px;
}

.home-scroll_text-item:first-child {
	padding-top: 0;
}

.home-scroll_photo {
	display: none;
	width: 100%;
	border-radius: var(--radius-md);
	margin-bottom: 25px;
}

.text-size-h1 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.15;
	margin-bottom: 20px;
}

.text-size-h1.split-text {
	color: var(--alyea-blue);
}

.paragraph.inno {
	font-size: 17px;
	line-height: 1.55;
	color: var(--font);
	max-width: 520px;
}


/* ====================================================================
* 08. BLOCK: SOLUTIONS SECTION
* --------------------------------------------------------------------
*        
* ==================================================================== */
.solutions {
	overflow: hidden;
}

.solutions-wrap {
	margin-top: 35px;
	width: 100%;
}

.solutions-lkister {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 45px;
	grid-row-gap: 45px;
}

.sol-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.sol-img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-light);
	margin-bottom: 22px;
	transition: transform 0.3s ease;
	display: block;
}

.sol-item:hover .sol-img {
	transform: translateY(-5px);
}

.h3 {
	color: var(--alyea-blue);
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 12px;
	line-height: 1.25;
}

.sol-ex {
	font-size: 18px;
	line-height: 1.4;
	color: #333;
	margin-bottom: 24px;
}

/* --- Solutions Dedicated Page Listing --- */
.soluitions-listing {
	background-color: var(--white);
	padding: 40px 0 80px;
}

.main-solutions-wrap {
	width: 100%;
}

.main-solutions-list {
	display: flex;
	flex-direction: column;
	grid-gap: 50px;
}

.main-solutions-list .h3 {
	font-size: 50px;
}

@media screen and (max-width: 767px) {
	.main-solutions-list .h3 {
		font-size: 35px;
	}
}

.main-solutions-item {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	grid-column-gap: 60px;
	align-items: center;
}

.main-sol-img {
	width: 100%;
	border-radius: var(--radius-md);
}

.right-sol-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	grid-gap: 20px;
}

.right-sol-info p {
	font-size: 18px;
	line-height: 1.5;
	color: var(--font);
}

.sub-hero-left.sola {
	background-image: url("../img/bg-hero-solutions.png");
}

.solz {
	bottom: 25%;
	right: 25%;

}

@media screen and (max-width: 767px) {
	.sol-ex {
		font-size: 16px;
	}
}



/* ====================================================================
* 09. BLOCK: CTA & INVESTORS
* --------------------------------------------------------------------
*         
* ==================================================================== */
.cta {
	background-color: #eaf5f7;
	background-image: url("../img/bg-innovation-shape.svg");
	background-position: center;
	background-size: cover;
	min-height: 600px;
}

.cta-grid {
	display: grid;
	grid-template-columns: 1.75fr 1fr;
	grid-column-gap: 30px;
	align-items: center;
}

.cta-h {
	color: var(--alyea-blue);
	font-size: 75px;
	line-height: 1.05;
	margin-bottom: 25px;
}

.bigger-p {
	color: var(--font);
	font-size: 26px;
	line-height: 1.4;
	max-width: 680px;
	margin-bottom: 30px;
}

.brain {
	width: 100%;
	max-width: 500px;
	margin-left: auto;
}


/* ====================================================================
* 10. BLOCK: TEAM & LEADERSHIP
* --------------------------------------------------------------------
*   , ,    
* ==================================================================== */
.lead-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 40px;
	grid-row-gap: 40px;
	margin-top: 50px;
}

.lead-grid._4grid {
	grid-template-columns: repeat(4, 1fr);
}

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

.lead-grid.btm-sp {
	margin-bottom: 60px;
}

.lead-h {
	color: var(--alyea-blue);
	font-size: 25px;
	font-weight: 500;
	margin-bottom: 6px;
}

.pos {
	color: var(--font);
	font-size: 19px;
	font-weight: 500;
}

.p-smal {
	font-size: 16px;
	line-height: 1.4;
	margin-top: 10px;
}

.sub-hero-left.vestors {
	background-image: url("../img/bg-hero-investors.png");
}

.hotspot.invest {
	bottom: 25%;
	right: 25%;
}

.inv-brain {
	width: 100%;
	max-width: 550px;
}

.media {
	background-color: var(--white);
	position: relative;
	width: 100%;
}

.media-container {
	width: 100%;
	max-width: var(--container-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 60px;
	padding-right: 60px;
}

.top-media {
	display: flex;
	gap: 0;
	margin-bottom: 40px;
	flex-wrap: wrap;
	flex-direction: column;
}

.media-main-title {
	color: var(--alyea-blue);
	font-size: 30px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 10px;
	white-space: nowrap;
}

.media-p {
	font-size: 18px;
	line-height: 1.4;
	color: #333;
	margin: 0;
	max-width: 720px;
}

.media-p br {
	display: none;
}

/* ====================================================================
* 11. BLOCK: MEDICAL STUDIES & PUBLICATIONS
* --------------------------------------------------------------------
* ==================================================================== */
.studies-wrap {
	margin-top: 0;
	width: 100%;
}

.studies-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 30px;
	grid-row-gap: 30px;
	width: 100%;
}

.strud-item {
	border: 1px solid var(--alyea-blue);
	border-radius: var(--radius-sm);
	padding: 23px 23px 30px;
	background-color: var(--white);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	min-height: 100%;
	height: 100%;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.strud-item:hover {
	border-color: var(--alyea-blue);
	transform: translateY(-3px);
}

.med-logo-wrap {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}

.med-logo {
	object-fit: contain;
	max-width: 250px;
	height: 120px;
	max-height: 100px;
}

.med-h {
	color: var(--alyea-blue);
	margin-top: 10px;
	margin-bottom: 28px;
	font-size: 21px;
	font-weight: 500;
	line-height: 26px;
}

.readmore {
	color: #4a4a4a;
	font-size: 14px;
	font-weight: 400;
	text-decoration: underline;
	transition: color 0.2s ease;
}

.readmore:hover {
	color: var(--alyea-blue);
}

@media screen and (max-width: 991px) {
	.media {
		padding: 60px 0;
	}

	.media-container {
		padding-left: 25px;
		padding-right: 25px;
	}

	.top-media {
		flex-direction: column;
		gap: 12px;
		align-items: flex-start;
		margin-bottom: 30px;
	}

	.media-main-title {
		font-size: 26px;
		white-space: normal;
	}

	.studies-list {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}


/* ====================================================================
* 12. BLOCK: FAQ ACCORDION
* --------------------------------------------------------------------
* ==================================================================== */
.faqs {
	background-color: var(--white);
	position: relative;
	width: 100%;
}

.faqs-container {
	width: 100%;
	max-width: var(--container-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 60px;
	padding-right: 60px;
}

.faq-grid {
	display: grid;
	grid-template-columns: 0.8fr 1fr;
	grid-column-gap: 80px;
	align-items: start;
}

.left-faq {
	display: flex;
	flex-direction: column;
}

.faq-main-title {
	color: var(--alyea-blue);
	font-size: 30px;
	font-weight: 500;
	line-height: 1.15;
	margin-bottom: 20px;
}

.faq-left-desc {
	font-size: 18px;
	line-height: 1.4;
	color: #333;
	margin: 0;
}

.right-faq {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.faq-item {
	border-bottom: 1px solid #d4d4d4;
	padding: 14px 0;
}

.faq-tigger {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding: 8px 0;
	gap: 15px;
}

.faq-question-text {
	font-size: 20px;
	font-weight: 400;
	color: rgb(80, 80, 80);
	line-height: 1.4;
}

.is-open .faq-question-text {
	color: var(--alyea-blue);
}

.plusicon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.faq-tigger.active .plusicon {
	transform: rotate(45deg);
}

.faq-answer {
	overflow: hidden;
	color: #333;
	line-height: 1.4;
	font-size: 16px;
}

@media screen and (max-width: 991px) {
	.faqs-container {
		padding-left: 25px;
		padding-right: 25px;
	}

	.faq-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.faq-main-title {
		font-size: 26px;
	}
}


/* ====================================================================
* 13. BLOCK: TESTIMONIALS & QUOTES (   )
* --------------------------------------------------------------------
*  ,    
* ==================================================================== */
.quote {
	background-color: #f7fafb;
	background-image: url("../img/bg-quote-pattern.svg");
	background-position: center;
	background-size: cover;
}

.quote-inner {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.quote-text {
	font-size: 35px;
	line-height: 1.25;
	color: var(--text-dark);
	font-weight: 400;
}

.bottom-quote {
	display: flex;
	justify-content: center;
	align-items: center;
	grid-gap: 20px;
	margin-top: 30px;
}

.quote-source-box {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.quote-name {
	font-size: 20px;
	font-weight: 500;
}

.quote-source-post {
	margin-top: 4px;
}

@media screen and (max-width: 767px) {
	.quote-text {
		font-size: 24px;

	}

	.bottom-quote {
		display: flex;
		flex-wrap: wrap;
	}

	.quote-source-box {
		align-items: center;
	}
}

/* ====================================================================
* 14. BLOCK: BREAKTHROUGH ALTERNATIVE
* --------------------------------------------------------------------
* Split section: Left narrative & CTA, Right structured feature bullets.
* ==================================================================== */
.breakthrough {
	background: linear-gradient(135deg, #dcf0f4 0%, #eef8fa 40%, #e0f2f5 100%);
	background-image: url("../img/bg-chronic-shape.svg");
	background-position: center;
	background-size: cover;
	position: relative;
	width: 100%;
}

.breakthrough-container {
	width: 100%;
	max-width: var(--container-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 60px;
	padding-right: 60px;
}

.alt-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	grid-gap: 80px;
	align-items: start;
}

.left-alt {
	display: flex;
	flex-direction: column;
}

.left-alt h2.bigger,
.left-alt .bigger {
	color: var(--alyea-blue);
	font-size: 50px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 25px;
}

.left-brea p {
	color: #333;
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 30px;
}

.right-alt {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.feature-group-item {
	display: flex;
	flex-direction: column;
}

.smallh3 {
	color: var(--alyea-blue);
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 8px;
	line-height: 1.25;
}

.feature-bullets-list,
.right-alt ul {
	list-style: disc;
	padding-left: 20px;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.feature-bullets-list li p,
.right-alt ul li p {
	color: #333;
	font-size: 18px;
	line-height: 1.3;
	margin: 0;
	display: inline;
}

@media screen and (max-width: 991px) {
	.breakthrough-container {
		padding-left: 25px;
		padding-right: 25px;
	}

	.alt-grid {
		grid-template-columns: 1fr;
	}

	.left-alt h2.bigger,
	.left-alt .bigger {
		font-size: 35px;
	}
}


/* ====================================================================
* 15. SINGLE SOLUTION PAGE
* ====================================================================
* Template: single-solution.php
* ==================================================================== */

/* --- Hero --- */
.single-sol-hero {
	padding-top: 130px;
	padding-bottom: 50px;
	background-color: var(--white);
	position: relative;
	width: 100%;
}

.single-sol-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	align-items: center;
	gap: 70px;
	padding-top: 50px;
	padding-bottom: 50px;
}

.single-sol-hero-text {
	max-width: 480px;
}

.single-sol-title {
	color: var(--alyea-blue);
	font-size: 60px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 24px;
}

.single-sol-tagline {
	color: #333;
	font-size: 18px;
	line-height: 1.4;
}

.single-sol-hero-img-wrap {
	width: 100%;
	background: transparent;
	display: block;
}

.single-sol-hero-img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-md);
	border: 1px solid rgba(77, 168, 191, 0.45);
	display: block;
	object-fit: contain;
	padding: 0;
	transition: transform 0.3s ease;
}

.single-sol-hero-img:hover {
	transform: translateY(-4px);
}

/* --- Highlights --- */
.single-sol-highlights {
	background-color: var(--white);
}

.single-sol-highlights-inner {
	padding-top: 60px;
	padding-bottom: 60px;
}

.single-sol-sec-title {
	color: var(--alyea-blue);
	font-size: 50px;
	font-weight: 500;
	margin-bottom: 40px;
	line-height: 1;
}

section.single-sol-how h2 {
	font-size: 30px;
	font-weight: 500;
	line-height: 33px;
	margin-bottom: 8px;
}

.sol-highlights-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.sol-highlight-card {
	border: 1px solid var(--alyea-blue);
	border-radius: 5px;
	width: 100%;
	padding: 23px 23px 30px;
}



.sol-highlight-card p {
	color: var(--alyea-blue);
	font-size: 21px;
	line-height: 1.2;
	margin: 0;
	font-weight: 500;
}

/* --- How It Works --- */
.single-sol-how {
	background-color: var(--white);
}

.single-sol-how-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 80px;
	padding-top: 80px;
	padding-bottom: 80px;
}

.single-sol-how-img-wrap {
	border-radius: var(--radius-md);
	overflow: hidden;
}

.single-sol-how-img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: var(--radius-md);
}

.single-sol-how-desc {
	color: #333;
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 0;
}

.single-sol-bullets {
	list-style: disc;
	padding-left: 20px;
	color: #333;
	font-size: 18px;
	line-height: 1.4;
}

.single-sol-bullets li {
	margin-bottom: 6px;
}

/* --- Video --- */
.single-sol-video {
	background-color: var(--white);
}

.single-sol-video-wrap {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	border-radius: var(--radius-md);
	overflow: hidden;
}

.single-sol-video-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* --- Related Solution --- */
.single-sol-related {
	background: linear-gradient(135deg, #dcf0f4 0%, #eef8fa 40%, #e0f2f5 100%);
	background-image: url("../img/bg-chronic-shape.svg");
	background-position: center;
	background-size: cover;
	width: 100%;
	position: relative;
}

.single-sol-related-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 70px;
}

.sol-related-img-wrap {
	width: 100%;
	background: transparent;
	display: block;
}

.sol-related-img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-md);
	border: 1px solid rgba(77, 168, 191, 0.45);
	display: block;
	object-fit: contain;
	padding: 0;
	transition: transform 0.3s ease;
}

.sol-related-img:hover {
	transform: translateY(-4px);
}

.sol-related-label {
	display: block;
	color: #4a4a4a;
	font-size: 13.5px;
	margin-bottom: 12px;
	font-weight: 400;
}

.sol-related-title {
	color: var(--alyea-blue);
	font-size: 38px;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 18px;
}

.sol-related-desc {
	color: #4a4a4a;
	font-size: 15.5px;
	line-height: 1.6;
	margin-bottom: 26px;
	max-width: 520px;
}

/* Responsive */
@media screen and (max-width: 991px) {

	.single-sol-hero-inner,
	.single-sol-how-inner,
	.single-sol-related-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.sol-highlights-grid {
		grid-template-columns: 1fr;
	}

	.single-sol-title {
		font-size: 40px;
	}

	.sol-related-title {
		font-size: 32px;
	}
}


/* ====================================================================
* 16. CONTACT FORM & INPUT UTILITIES
* --------------------------------------------------------------------
* Form input fields, buttons, and validation styles.
* ==================================================================== */

/* --- Dedicated Contact Page Styles --- */
.cont-body {
	background-color: #f5fbfc;
	background-image:
		radial-gradient(ellipse 400px 400px at top left, rgba(77, 168, 191, 0.22) 0%, transparent 70%),
		url("../img/contact-bg.svg");
	background-position: top left, 50% 0;
	background-repeat: no-repeat, no-repeat;
	background-size: auto, cover;
	min-height: 100vh;
	border-top-left-radius: 200px;
}

.contact-inside {
	padding-top: 150px;
	padding-bottom: 100px;
	min-height: 85vh;
}

.container.contac {
	padding-top: 20px;
}

.inner-cont-grid {
	display: grid;
	grid-template-columns: auto auto;
	grid-column-gap: 20px;
	align-items: center;
}

.left-cont {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 959px;
}

.h1-cont {
	color: var(--alyea-blue);
	font-size: 65px;
	font-weight: 500;
	line-height: 1.1;
	margin-bottom: 20px;
}

section.contact-inside h1 {
	color: var(--alyea-blue);
	font-size: 90px;
	font-weight: 500;
	line-height: 100%;
	margin-bottom: 24px;
}

.cont-fade {
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
	width: 100%;
}

.cont-link {
	color: var(--alyea-blue);
	font-size: 20px;
	font-weight: 500;
	text-decoration: none;
	transition: var(--transition-fast);
}

.cont-link:hover {
	color: var(--alyea-green);
}

.form-block-2 {
	margin-top: 15px;
	width: 100%;
}

.form-block-2 form {
	display: flex;
	flex-direction: column;
	grid-gap: 16px;
}

.text-feld {
	width: 100%;
	height: 52px;
	border: 1px solid #d4dde0;
	border-radius: var(--radius-sm);
	padding: 12px 18px;
	font-size: 16px;
	color: var(--font);
	background-color: #fafcfc;
	outline: none;
	transition: var(--transition-fast);
	font-family: inherit;
}

.text-feld:focus {
	border-color: var(--alyea-blue);
	background-color: var(--white);
	box-shadow: 0 0 0 3px rgba(32, 70, 116, 0.1);
}

.text-feld.mess {
	height: 140px;
	resize: vertical;
}

.a-logo {
	width: 100%;
	margin-top: -50px;
}

/* --- Contact Submit Button (full-width like original) --- */
.cont-submit,
.form-contact input[type="submit"] {
	width: 100%;
	padding: 16px 40px;
	font-size: 17px;
}

/* --- Contact Form 7 Compatibility --- */
.cf7-wrap .wpcf7 {
	width: 100%;
}

.cf7-wrap .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cf7-wrap p {
	margin: 0 !important;
}

.cf7-wrap .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.cf7-wrap input[type="text"],
.cf7-wrap input[type="email"],
.cf7-wrap input[type="tel"],
.cf7-wrap input[type="url"],
.cf7-wrap select,
.cf7-wrap textarea {
	width: 100%;
	border: 1px black;
	border-radius: var(--radius-sm);
	padding: 12px 18px;
	font-size: 16px;
	color: var(--font);
	background-color: #eaf5f7;
	outline: none;
	transition: var(--transition-fast);
	font-family: inherit;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
	height: 61px;
	font-size: 18px;
}

.cf7-wrap textarea {
	height: 140px;
	resize: vertical;
}

.cf7-wrap input[type="text"]:focus,
.cf7-wrap input[type="email"]:focus,
.cf7-wrap input[type="tel"]:focus,
.cf7-wrap textarea:focus {
	border-color: var(--alyea-blue);
	background-color: var(--white);
	outline: none;
}

.cf7-wrap input[type="submit"],
.cf7-wrap .wpcf7-submit {
	width: max-content;
	height: auto;
	padding: 16px 40px;
	font-size: 17px;
	background-color: var(--alyea-blue);
	color: var(--white);
	border: none;
	border-radius: var(--radius-pill);
	cursor: pointer;
	font-family: inherit;
	font-weight: 500;
	transition: var(--transition-fast);
	-webkit-appearance: none;
	appearance: none;
}

.cf7-wrap input[type="submit"]:hover,
.cf7-wrap .wpcf7-submit:hover {
	background-color: var(--alyea-green);
}

.cf7-wrap .wpcf7-not-valid-tip {
	color: #e05252;
	font-size: 13px;
	margin-top: 4px;
	display: block;
}

.cf7-wrap .wpcf7-response-output {
	margin: 12px 0 0 0 !important;
	padding: 12px 18px !important;
	border-radius: var(--radius-sm) !important;
	font-size: 15px;
	border: none !important;
}

.cf7-wrap .wpcf7-mail-sent-ok {
	background-color: #e8f8f1;
	color: #1a7a4a;
}

.cf7-wrap .wpcf7-mail-sent-ng,
.cf7-wrap .wpcf7-spam-blocked,
.cf7-wrap .wpcf7-validation-errors {
	background-color: #fef0f0;
	color: #c0392b;
}

@media screen and (max-width: 991px) {
	section.contact-inside h1 {
		font-size: 60px;
	}
}

.cf7-wrap p br {
	display: none;
}

.cf7-wrap p span {
	margin-bottom: 14px;
}

/* ====================================================================
* 16. ANIMATION & HELPER UTILITIES
* --------------------------------------------------------------------
* Split text reveals, blur transitions, and ScrollTrigger helper classes.
* ==================================================================== */
.split-text.h2 {
	color: var(--alyea-blue);
}

.split-text.h2.bigh {
	font-size: 50px;
	line-height: 1.1;
}

.split-words {
	display: inline-block;
	position: relative;
}

.split-chars {
	display: inline-block;
	position: relative;
	will-change: transform, opacity, filter;
}

.letter-animation {
	display: flex;
	flex-direction: column;
}


/* ====================================================================
* 17. RESPONSIVE BREAKPOINTS
* --------------------------------------------------------------------
* Tablet (<= 991px), Mobile Landscape (<= 767px), Mobile Portrait (<= 479px).
* ==================================================================== */

/* --- Tablet Devices (<= 991px) --- */
@media screen and (max-width: 991px) {
	.container {
		padding: 70px 30px;
	}

	.nav-container {
		padding: 20px 30px;
	}

	.nav-menu {
		display: none;
		/* Show mobile drawer button instead */
	}

	.cont-btn {
		display: none;
	}

	.menu-button {
		display: flex;
	}

	/* All Other Pages Hero Headings & Subtext (<= 991px) */
	.main-h,
	.main-h.split-text,
	.main-hero h1,
	.hero-banner-inner h1 {
		font-size: 55px !important;
	}

	.sub-text,
	.main-hero p.sub-text,
	.hero-banner-inner p.sub-text {
		font-size: 16px !important;
	}

	/* Home Page Hero Heading & Subtext (<= 991px) */
	body.home .main-h,
	body.home .main-h.split-text,
	body.home .main-hero h1,
	body.front-page .main-h,
	body.front-page .main-h.split-text,
	body.front-page .main-hero h1 {
		font-size: 65px !important;
	}

	body.home .sub-text,
	body.home .main-hero p.sub-text,
	body.front-page .sub-text,
	body.front-page .main-hero p.sub-text {
		font-size: 20px !important;
	}

	.innner-about-grid {
		grid-template-columns: 1fr;
		grid-column-gap: 40px;
		grid-row-gap: 40px;
	}

	.main-solutions-item {
		grid-template-columns: 1fr;
		grid-row-gap: 30px;
	}

	.contact-inside {
		padding-top: 120px;
		padding-bottom: 60px;
	}

	.inner-cont-grid {
		grid-template-columns: 1fr;
		grid-row-gap: 50px;
	}

	.a-logo {
		display: none;
	}

	.lead-grid,
	.lead-grid._4grid,
	.lead-grid._2cols {
		grid-template-columns: 1fr;
		grid-row-gap: 25px;
	}

	.home-scroll_visual {
		display: none;
	}

	.home-scroll_content {
		width: 100%;
		padding-left: 0;
		padding-top: 0;
		padding-bottom: 0;
	}

	.home-scroll_text-item {
		min-height: auto;
		padding-bottom: 40px;
	}

	.home-scroll_photo {
		display: block;
	}

	.solutions-lkister {
		grid-template-columns: 1fr;
		grid-row-gap: 40px;
	}

	.cta-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.cta-content {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.brain {
		max-width: 350px;
		margin: 40px auto 0;
	}

	.top-footer {
		grid-template-columns: 1fr 1fr;
	}

	.bottom-footer {
		flex-direction: column;
		align-items: center;
		grid-gap: 30px;
	}

	.contact-fly {
		width: 80%;
	}

	.lead-grid {
		grid-template-columns: 1fr 1fr;
	}

	.studies-list {
		grid-template-columns: 1fr;
	}

	.faq-grid {
		grid-template-columns: 1fr;
	}
}

/* --- Mobile Landscape & Small Tablets (<= 767px) --- */
@media screen and (max-width: 767px) {
	.container {
		padding: 50px 20px;
	}

	/* Home Page Mobile Hero Height (800px) */
	body.home .main-hero,
	body.front-page .main-hero {
		height: 800px;
		min-height: 800px;
		max-height: 800px;
	}

	.nav-container {
		padding: 15px 20px;
	}

	/* All Other Pages Hero Headings (<= 767px) */
	.main-h,
	.main-h.split-text,
	.main-hero h1,
	.hero-banner-inner h1 {
		font-size: 40px !important;
	}

	/* Home Page Hero Heading (<= 767px) */
	body.home .main-h,
	body.home .main-h.split-text,
	body.home .main-hero h1,
	body.front-page .main-h,
	body.front-page .main-h.split-text,
	body.front-page .main-hero h1 {
		font-size: 55px !important;
	}

	.cta-h {
		font-size: 45px;
	}

	.bigger-p {
		font-size: 20px;
	}

	.top-footer {
		grid-template-columns: 1fr;
	}

	.contact-fly {
		width: 100%;
	}

	.lead-grid {
		grid-template-columns: 1fr;
	}
}

/* --- Mobile Portrait (<= 479px) --- */
@media screen and (max-width: 479px) {
	.main-h.split-text {
		font-size: 38px;
	}

	.issue-number {
		font-size: 60px;
	}
}

div#email-form .wpcf7-not-valid-tip {
	display: none!important;
}
div#email-form .wpcf7-response-output {
	margin: 0;
	border: none;
	color: yellow;
	max-width: max-content;
}
div#email-form .form p {
	margin-bottom: 4px;
	display: flex;
	align-items: center;
	gap: 4px;
}
div#email-form .wpcf7-spinner {
	flex: 0 0 24px;
	margin: 0;
}