@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
	--primary: #16633f;
	--accent: #BDFA04;
	--secondary: #164935;
	--dark: #1F1D1D;
	--white: #FFFFFF;
	--bg-light: #F8F9FA;
	--bg-cream: #F5F0E8;
	--text-main: #1F1D1D;
	--text-muted: #666666;
	--brand-green: #0F3D2E;
	--brand-lime: #BDFA04;
	--brand-bg: #F5F0E8;
	--brand-text: #1F1D1D;
	--gradient-accent: linear-gradient(135deg, var(--accent), var(--primary));
	--gradient-accent2: linear-gradient(135deg, var(--primary), var(--accent));
	--transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 32px;
	--shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
	--container: 1280px;
}

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

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: "Rokkitt", serif;
	background: var(--bg-cream);
	color: var(--text-main);
	overflow-x: hidden;
	line-height: 1.6;
	width: 100vw;
}

p,
td,
th,
li,
a {
	font-size: clamp(14px, 0.8vw + 10px, 18px) !important;
	font-family: "Rokkitt", serif;
	line-height: 1.6 !important;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {

	font-family: "Playfair Display", serif;
	font-optical-sizing: auto;
	letter-spacing: 1px;
	text-transform: none !important;
}

h4 {
	font-family: "Rokkitt", serif;
	font-size: 18px !important;

}

/* ── UTILITIES ── */
.section-pad {
	padding: 110px 0;
}

.section-pad-sm {
	padding: 70px 0;
}

.container-xl {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 32px;
}

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

.lime-text {
	background: linear-gradient(135deg, var(--accent), #8ee800);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.title-type-2 {
	margin-bottom: 30px;
	color: var(--white) !important;
	font-weight: 500;
	font-size: clamp(36px, 6vw, 54px);
	line-height: 1.1;
	letter-spacing: 1px;
}

/* ── SCROLL REVEAL ── */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity .75s cubic-bezier(0.16, 1, 0.3, 1), transform .75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity .75s cubic-bezier(0.16, 1, 0.3, 1), transform .75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity .75s cubic-bezier(0.16, 1, 0.3, 1), transform .75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
	opacity: 1;
	transform: none;
}

.delay-1 {
	transition-delay: .1s;
}

.delay-2 {
	transition-delay: .2s;
}

.delay-3 {
	transition-delay: .3s;
}

.delay-4 {
	transition-delay: .4s;
}

.delay-5 {
	transition-delay: .5s;
}

.delay-6 {
	transition-delay: .6s;
}

/* ── PROGRESS BAR ── */
#progress-bar {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: var(--accent);
	z-index: 9999;
	width: 0%;
	transition: width .1s linear;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 5px 60px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(15, 61, 46, 0.06);
	transition: var(--transition);

}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
	.site-nav {
		padding: 10px 25px;
	}
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
	.site-nav {
		padding: 10px 20px;
	}
}

/* Mobile Small (<576px) */
@media (max-width: 575px) {
	.site-nav {
		padding: 8px 5px;
	}
}

.site-nav.scrolled {
	padding: 5px 45px;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav-links-list {
	padding-left: 20px;
}

.site-nav.scrolled .info-icon {
	color: var(--primary);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.nav-logo {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.nav-logo img {
	height: 72px;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.logo-white {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.logo-dark {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	visibility: hidden;
}

/* After scroll */
.site-nav.scrolled .logo-white {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
}

.site-nav.scrolled .logo-dark {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%);
}

.site-nav {
	transition: all 0.4s ease;
}

.site-nav.scrolled {
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.nav-links-list {
	display: flex;
	align-items: center;
	gap: 36px;
}

.nav-links-list a {
	font-size: 22px !important;
	font-weight: 600;
	color: var(--primary);
	position: relative;
}

.nav-links-list a::after {
	content: '';
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	transition: var(--transition);
}

.nav-links-list a:hover::after {
	width: 100%;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.btn-nav-ghost {
	padding: 9px 20px;
	border: 1.5px solid var(--primary);
	border-radius: 100px;
	font-size: 14px;
;
	font-weight: 700;
	color: var(--primary);
	transition: var(--transition);
}

.btn-nav-ghost:hover {
	background: var(--primary);
	color: var(--white);
}

.btn-nav-primary {
	padding: 10px 22px;
	background: var(--primary);
	border-radius: 100px;
	font-size: 14px;
;
	font-weight: 700;
	color: var(--white);
	transition: var(--transition);
}

.btn-nav-primary:hover {
	background: var(--secondary);
	transform: translateY(-1px);
}

.nav-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	width: 36px;
}

.nav-hamburger span {
	display: block;
	height: 2px;
	background: var(--primary);
	border-radius: 2px;
	transition: var(--transition);
}

.nav-hamburger.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
	opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

.btn-accent {
	background: var(--accent);
	color: var(--primary);
	border: none;
	border-radius: 100px;
	padding: 10px 22px;
	font-size: 14px;
;
	font-weight: 700;
	transition: var(--transition);
}

.btn-view-all {
	font-size: 14px;
	font-weight: 700;
	border: none;
	background: transparent;
}

.view-all-wrapper {
	display: flex;
	justify-content: end;
	padding: 12px 0;
}

.close-btn {
	background: transparent;
	border: none;
	cursor: pointer;
	color: var(--primary);
	font-size: 20px;
	transition: var(--transition);
}

.dropdown {
	position: relative;
}

.dropdown>a {
	display: flex;
	align-items: center;
	gap: 6px;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: -60px !important;
	background-color: transparent;
	padding: 25px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: .3s ease;
	z-index: 999;
	border: none;

}

.dropdown-menu-content {
	min-width: 220px;
	background: #fff;
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu li {
	list-style: none;
}

.dropdown-menu li a {
	display: block;
	padding: 12px 20px;
	color: #222;
	text-decoration: none;
	transition: .3s;
}

.dropdown-menu li a:hover {
	background: #f5f5f5;
	color: #77a800;
}

/* ===========================
   HERO CAROUSEL
=========================== */

/*==================================================
            HERO SECTION
==================================================*/

.hero-section {
	position: relative;
	overflow: hidden;
	background: #fff;
	padding: 100px 0 60px 0 !important;
	min-height: auto;
}

/*.hero-section::before {*/
/*	content: "";*/
/*	position: absolute;*/
/*	width: 550px;*/
/*	height: 550px;*/
/*	background: radial-gradient(circle,*/
/*			rgba(189, 250, 4, .18) 0%,*/
/*			rgba(189, 250, 4, 0) 70%);*/
/*	left: -220px;*/
/*	top: -180px;*/
/*	pointer-events: none;*/
/*}*/

.hero-section::after {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle,
			rgba(15, 61, 46, .06) 0%,
			rgba(15, 61, 46, 0) 70%);
	right: -250px;
	bottom: -220px;
	pointer-events: none;
}

/*==================================
    Responsive Container Spacing
===================================*/
.container-fluid {
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 90px;
}

/* Large Desktop */
@media (max-width: 1600px) {
	.container-fluid {
		padding: 0 70px;
	}
}

/* Desktop */
@media (max-width: 1400px) {
	.container-fluid {
		padding: 0 60px;
	}
}

/* Laptop */
@media (max-width: 1200px) {
	.container-fluid {
		padding: 0 40px;
	}
}

/* Tablet */
@media (max-width: 992px) {
	.container-fluid {
		padding: 0 30px;
	}
}

/* Large Mobile */
@media (max-width: 768px) {
	.container-fluid {
		padding: 0 20px;
	}
}

/* Mobile */
@media (max-width: 576px) {
	.container-fluid {
		padding: 0 15px;
	}
}

/* Small Mobile */
@media (max-width: 375px) {
	.container-fluid {
		padding: 0 12px;
	}
}

.hero-content {
	position: relative;
	z-index: 5;
}

.hero-subtitle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 28px;
	color: var(--primary);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.hero-subtitle::before {
	content: "";
	width: 55px;
	height: 2px;
	background: var(--accent);
}


.hero-content h1,
.about-section-container h1 {
	font-family: "Inter", sans-serif;
	font-size: clamp(2rem, 5vw, 3.1rem);
	line-height: 1.08;
	font-weight: 800;
	color: #081a3d;
	margin-bottom: 28px;
	letter-spacing: -0.03em;
}

/* Large Desktop (1600px+) */
@media (min-width: 1680px) {

	.hero-content h1,
	.about-section-container h1 {
		font-size: 3.1rem;
	}
}

/* Desktop (1200px–1599px) */
@media (max-width: 1499px) {

	.hero-content h1,
	.about-section-container h1 {
		font-size: 2.5rem;
		/* 64px */
	}
}

/* Laptop (992px–1199px) */
@media (max-width: 1299px) {

	.hero-content h1,
	.about-section-container h1 {
		font-size: 2rem;
		/* 56px */
	}
}

/* Tablet (768px–991px) */
@media (max-width: 991px) {

	.hero-content h1,
	.about-section-container h1 {
		font-size: 3rem;
		/* 48px */
		line-height: 1.15;
	}
}

/* Mobile Large (576px–767px) */
@media (max-width: 767px) {

	.hero-content h1,
	.about-section-container h1 {
		font-size: 2.5rem;
		/* 40px */
		line-height: 1.2;
		margin-bottom: 20px;
	}
}

/* Mobile Small (<576px) */
@media (max-width: 575px) {

	.hero-content h1,
	.about-section-container h1 {
		font-size: 2rem;
		/* 32px */
		line-height: 1.25;
		margin-bottom: 16px;
	}
}

.hero-content h1 span,
.about-section-container h1 span {
	color: var(--primary);
	position: relative;
}

.hero-content h1 .hero-rotating-word {
	display: inline-block;
	min-width: 12ch;
	color: var(--primary);
	position: relative;
}

.hero-content h1 .hero-rotating-word.is-changing {
	animation: heroWordFade 0.7s ease;
}


.hero-content h1 span::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 100%;
	height: 4px;
	background: var(--accent);
	border-radius: 20px;
}

@keyframes heroWordFade {
	0% {
		opacity: 0;
		transform: translateY(8px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes heroCursorBlink {

	0%,
	50% {
		opacity: 1;
	}

	51%,
	100% {
		opacity: 0;
	}
}

.hero-content p {
	max-width: 560px;
	font-size: 21px;
	color: #0a4403 !important;
	margin-bottom: 42px;
	line-height: 1.8 !important;
}

.hero-buttons {
	display: flex !important;
	align-items: center;
	gap: 24px;
	margin-bottom: 55px;
}

/*============================
        BUTTONS
============================*/

.btn-primary-custom,
.btn-outline-custom {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 300px;
	padding: 10px 20px;
	/* min-height: 82px; */
	border-radius: 9px;
	font-family: "Inter", sans-serif;
	font-size: 16px !important;
	font-weight: 600;
	text-align: center;
	transition: .35s ease;
	position: relative;
	overflow: hidden;
}

.btn-primary-custom {
	background: var(--primary);
	color: #fff;
	box-shadow: 0 20px 45px rgba(15, 61, 46, .22);
}

.btn-primary-custom:hover {
	background: #124b39;
	color: #fff;
	transform: translateY(-6px);
	box-shadow: 0 28px 55px rgba(15, 61, 46, .28);
}

.btn-outline-custom {
	background: #fff;
	color: #12263c;
	border: 2px solid rgba(15, 61, 46, .22);
	box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
}

.btn-outline-custom:hover {
	color: #fff;
	background: var(--primary);
	border-color: var(--primary);
	transform: translateY(-6px);
}

/*============================
        FEATURES
============================*/

.hero-features {
	display: flex;
	align-items: center;
	gap: clamp(12px, 3vw, 20px);
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.feature-item i {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(15, 61, 46, .08);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-item span {
	color: #3d3d3d;
	font-size: 14px;
;
	font-weight: 600;
	font-family: "Inter", sans-serif;
	line-height: 1.5;
}

/* Laptop */
@media (max-width: 1299px) {
	.feature-item span {
		font-size: 14px;
;
	}
}

/* Tablet */
@media (max-width: 991px) {
	.feature-item span {
		font-size: 12.5px;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.feature-item span {
		font-size: 14px;
;
	}
}

/* Small Mobile */
@media (max-width: 575px) {
	.feature-item span {
		font-size: 11.5px;
	}
}

/*============================
        RIGHT IMAGE
============================*/

.hero-image {
	position: relative;
	margin-left: auto;
}

.hero-main-image {
	width: 100%;
	border-radius: 34px;
	object-fit: cover;
	box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

/*============================
      FLOATING CARDS
============================*/

.floating-cards {
	position: absolute;
	left: 20px;
	top: 42px;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.info-card {
	width: 300px;
	height: 60px;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 0 26px;
	border-radius: 18px;

	/* Glass Effect */
	background: rgba(255, 255, 255, 0.747);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);

	border: 1px solid rgba(255, 255, 255, 0.35);

	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.12),
		inset 0 1px 1px rgba(255, 255, 255, 0.35);

	transition: all 0.35s ease;
}

.info-card:hover {
	transform: translateX(10px) translateY(-3px);
	background: rgba(255, 255, 255, 0.25);
	box-shadow:
		0 15px 40px rgba(0, 0, 0, 0.18),
		inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

.info-card i {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);

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

	color: var(--primary);
	font-size: 20px;

	border: 1px solid rgba(255, 255, 255, 0.4);
}

.info-card span {
	color: var(--primary) !important;

	font-weight: 600;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/*============================
        SLIDER DOTS
============================*/

/*==================================================
        ANIMATIONS
==================================================*/

@keyframes floatY {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(0px);
	}
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-content {
	animation: fadeUp .8s ease forwards;
}

.hero-image {
	animation: fadeUp 1s ease forwards;
}

.info-card:nth-child(1) {
	animation: floatY 4s ease-in-out infinite;
}

.info-card:nth-child(2) {
	animation: floatY 4s ease-in-out infinite .4s;
}

.info-card:nth-child(3) {
	animation: floatY 4s ease-in-out infinite .8s;
}

.info-card:nth-child(4) {
	animation: floatY 4s ease-in-out infinite 1.2s;
}

.info-card:nth-child(5) {
	animation: floatY 4s ease-in-out infinite 1.6s;
}

/*==================================================
            LARGE DESKTOP
==================================================*/

@media (max-width:1400px) {


	.hero-main-image {
		border-radius: 30px;
	}

	.floating-cards {
		left: -45px;
	}

	.info-card {
		width: 280px;
	}
}

/*==================================================
            DESKTOP
==================================================*/


@media (max-width:1200px) {

	.hero-content p {
		font-size: 18px;
	}

	.btn-primary-custom,
	.btn-outline-custom {
		min-width: 250px;
		min-height: 74px;
		font-size: 18px !important;
	}

	.floating-cards {
		left: -20px;
		top: 35px;
	}

	.info-card {
		width: 250px;
		height: 76px;
		padding: 0 20px;
	}

	.info-card span {
		font-size: 16px;
	}

	.info-card i {
		width: 46px;
		height: 46px;
		font-size: 20px;
	}

	.hero-features {
		gap: 2px;
	}

	.feature-item i {
		background-color: transparent;
	}
}

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

@media (max-width:991px) {

	.hero-content {
		text-align: center;
		margin-bottom: 40px;
	}

	.hero-content p {
		margin: 0 auto 35px;
	}

	.hero-buttons {
		justify-content: center;
	}

	.hero-features {
		justify-content: center;
		gap: 20px;
	}

	.hero-image {
		max-width: 700px;
		margin: auto;
	}

	.floating-cards {
		left: 20px;
		top: 25px;
	}

	.info-card {
		width: 240px;
	}
}

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

@media (max-width:767px) {

	.hero-subtitle {
		font-size: 14px;
;
		justify-content: center;
	}

	.hero-content p {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.hero-buttons {
		flex-direction: column;
		gap: 18px;
		margin-bottom: 40px;
	}

	.btn-primary-custom,
	.btn-outline-custom {
		width: 100%;
		max-width: 340px;
		min-width: auto;
		min-height: 68px;
		font-size: 17px !important;
		border-radius: 18px;
	}

	.hero-image {
		margin-top: 20px;
	}

	.hero-main-image {
		border-radius: 22px;
	}

	.floating-cards {
		position: relative;
		left: 0;
		top: 0;
		margin-bottom: 20px;
		gap: 12px;
	}

	.info-card {
		width: 100%;
		height: 68px;
		border-radius: 18px;
	}

	.info-card span {
		font-size: 15px;
	}

	.info-card i {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.hero-features {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.feature-item {
		width: 100%;
	}
}

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

@media (max-width:575px) {

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


	.hero-content p {
		font-size: 15px;
	}

	.btn-primary-custom,
	.btn-outline-custom {
		max-width: 100%;
		min-height: 62px;
		font-size: 16px !important;
	}

	.hero-features {
		align-items: center;
	}

	.feature-item span {
		font-size: 14px;
	}

	.slider-dots {
		margin-top: 20px;
	}

	.slider-dots span {
		width: 10px;
		height: 10px;
	}

	.slider-dots span.active {
		width: 14px;
		height: 14px;
	}
}

/*==================================================
            HOVER EFFECTS
==================================================*/

.slider-dots span {
	cursor: pointer;
}

.hero-buttons a {
	text-decoration: none;
}

/* -----------Hero end ------------------ */

/* Buttons */
.hero-btns-new {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.btn-main {
	border: 2px solid var(--accent);
	background: rgb(208, 255, 58, .05);
	color: var(--accent);
	font-size: calc(14px + 0.2vw);
	box-shadow: 0px 0px 5px rgba(189, 250, 4);
}

.btn-main:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 35px rgba(189, 250, 4, 0.3);
	background: #d0ff3a;
}

.btn-main-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	color: var(--white);
	padding: 16px 40px;
	border-radius: 60px;
	font-weight: 700;
	font-size: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	transition: 0.3s ease;
}

.btn-main-secondary:hover {
	border-color: var(--accent);
	color: var(--accent);
	transform: translateY(-3px);
}


.btn-secondary-new {
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	backdrop-filter: blur(10px);
}

.btn-main:hover,
.btn-secondary-new:hover {
	border-color: var(--primary);
	background: var(--primary);
	color: var(--white);
	box-shadow: 0 0 5px #fff;
}


.btn-main,
.btn-secondary-new {
	display: inli2ne-flex;
	align-items: center;
	font-weight: 500;
	gap: 10px;
	font-size: calc(14px + 0.3vw);
	padding: 12px 28px;
	border-radius: 999px;
	text-decoration: none;
	transition: transform 0.3s, box-shadow 0.3s;
}


/* Pulse Animation */
.pulse-button {
	animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
	0% {
		box-shadow: 0 0 0 0 rgba(189, 250, 4, .7);
	}

	70% {
		box-shadow: 0 0 0 20px rgba(189, 250, 4, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(189, 250, 4, 0);
	}
}

.carousel-inner {
	border-radius: 30px;
	overflow: hidden;
}

/* Indicators */
.carousel-indicators {
	position: absolute;
	right: 0;
	bottom: -50px !important;
}

.carousel-indicators button {
	width: 15px !important;
	height: 15px !important;
	border-radius: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.carousel-indicators .active {
	background: var(--primary) !important;
	width: 18px !important;
	height: 18px !important;
}

.carousel-indicators [data-bs-target] {
	border: 10px !important;
	background-color: var(--primary);
}

.carousel-indicators {
	position: none !important;
}

/* <!-- ═══════════════════════ HOW IT WORKS SECTION ══════════════════════ --> */

.journey-section {
	background: #fff;
	padding: 90px 0;
}

.section-title .sub-title {
	color: var(--primary);
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 15px;
	display: block;
	margin-bottom: 12px;
	font-family: Inter, sans-serif;
}

.section-title h2 {
	font-size: 42px;
	font-weight: 700;
	color: #081b45;
	margin-bottom: 15px;
	font-family: Inter, sans-serif;
}

.title-line {
	width: 70px;
	height: 4px;
	background: var(--primary);
	display: inline-block;
	border-radius: 50px;
}

.journey-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.journey-item {
	flex: 1;
	text-align: center;
	position: relative;
}

.journey-item .icon-box {
	width: 130px;
	height: 130px;
	margin: auto;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #edf1ef;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .4s;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.icon-box i {
	font-size: 40px;
	color: var(--primary);
	transition: .4s;
}

.journey-item:hover .icon-box {
	transform: translateY(-10px);
	box-shadow: 0 25px 45px rgba(15, 61, 46, .15);
}

.journey-item:hover .icon-box i {
	transform: scale(1.1);
}

.journey-item h4 {
	margin-top: 28px;
	font-size: 26px;
	font-weight: 700;
	color: #081b45;
	line-height: 1.35;
	font-family: Inter, sans-serif;
}

.journey-item p {
	margin-top: 18px;
	color: #666;
	font-size: 17px;
	line-height: 1.9;
	max-width: 260px;
	margin-left: auto;
	margin-right: auto;
}

.journey-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 75px;
	position: relative;
}

.journey-arrow::before {
	content: "";
	width: 55px;
	height: 2px;
	border-top: 2px dashed #8bc79c;
	position: absolute;
	left: 0;
}

.journey-arrow::after {
	content: "";
	width: 55px;
	height: 2px;
	border-top: 2px dashed #8bc79c;
	position: absolute;
	right: 0;
}

.journey-arrow i {
	background: #fff;
	color: var(--primary);
	font-size: 22px;
	padding: 0 10px;
	z-index: 2;
}

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

@media(max-width:1200px) {

	.journey-wrapper {
		flex-wrap: wrap;
		justify-content: center;
	}

	.journey-arrow {
		display: none;
	}

	.journey-item {
		flex: 0 0 33.33%;
		margin-bottom: 40px;
	}

}

@media(max-width:768px) {

	.section-title h2 {
		font-size: 34px;
	}

	.journey-item {
		flex: 0 0 100%;
	}

	.icon-box {
		width: 130px;
		height: 130px;
	}

	.icon-box i {
		font-size: 42px;
	}

	.journey-item h4 {
		font-size: 22px;
	}

}

/* <!-- ══════════════════  WHO IS IT FOR ═══════════════════ --> */

.col-lg-2-4 {
	width: 20%;
}

@media(max-width:992px) {
	.col-lg-2-4 {
		width: 50%;
	}
}

@media(max-width:576px) {
	.col-lg-2-4 {
		width: 100%;
	}
}

/* =========================================================
   AUDIENCE SECTION
========================================================= */

.audience-section {
	position: relative;
	background:
		radial-gradient(circle at 10% 20%,
			rgba(189, 250, 4, 0.08),
			transparent 30%),
		#f7f8f3;
	overflow: hidden;
}


/* Section title */

.audience-section .section-title {
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}

.audience-section .sub-title {
	display: inline-block;
	margin-bottom: 10px;

	font-size: 14px;
;
	font-weight: 800;
	letter-spacing: 2px;

	color: var(--primary, #0f3d2e);
}

.audience-section .section-title h2 {
	margin: 0;

	color: #10271e;

	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.15;
	font-weight: 800;
}

.audience-section .title-line {
	display: block;

	width: 65px;
	height: 4px;

	margin: 18px auto;

	border-radius: 50px;

	background: var(--accent, #bdfa04);
}

.section-description {
	max-width: 700px;

	margin: 0 auto;

	color: #66706b;

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


/* =========================================================
   GRID
========================================================= */

#audienceCards {
	row-gap: 30px !important;
}


/* =========================================================
   CARD COLUMN
========================================================= */

.audience-card-column {
	width: 20%;
}


/* =========================================================
   CARD
========================================================= */

.audience-card {
	position: relative;

	height: 100%;
	min-height: 445px;

	perspective: 1400px;

	cursor: pointer;
}


/* =========================================================
   CARD INNER
========================================================= */

.audience-card-inner {
	position: relative;

	width: 100%;
	height: 100%;

	min-height: 445px;

	transform-style: preserve-3d;

	transition:
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);

	border-radius: 18px;
}


/* Desktop hover */

@media (min-width: 769px) {

	.audience-card:hover .audience-card-inner {
		transform: rotateY(180deg);
	}

}


/* JS controlled state */

.audience-card.is-flipped .audience-card-inner {
	transform: rotateY(180deg);
}


/* =========================================================
   FRONT + BACK
========================================================= */

.audience-card-front,
.audience-card-back {
	position: absolute;

	inset: 0;

	width: 100%;
	height: 100%;

	overflow: hidden;

	border-radius: 18px;

	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;

	box-shadow:
		0 15px 40px rgba(15, 61, 46, 0.10),
		0 5px 15px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   FRONT
========================================================= */

.audience-card-front {
	background: #ffffff;

	display: flex;
	flex-direction: column;
}


/* Image */

.audience-image {
	position: relative;

	width: 100%;
	height: 245px;

	overflow: hidden;
}

.audience-image img {
	width: 100%;
	height: 100%;

	object-fit: cover;

	display: block;

	transition:
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}


/* Image overlay */

.audience-image::after {
	content: "";

	position: absolute;
	inset: 0;

	background:
		linear-gradient(to bottom,
			transparent 45%,
			rgba(0, 0, 0, 0.32));

	pointer-events: none;
}


/* Icon */

.audience-icon {
	position: absolute;

	right: 18px;
	bottom: 18px;

	z-index: 2;

	width: 46px;
	height: 46px;

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

	border-radius: 50%;

	background: rgba(255, 255, 255, 0.94);

	box-shadow:
		0 8px 25px rgba(0, 0, 0, 0.18);

	transition:
		transform 0.35s ease,
		background 0.35s ease;
}

.audience-icon i {
	color: var(--primary, #0f3d2e);

	font-size: 18px;
}


/* Front content */

.audience-content {
	flex: 1;

	display: flex;
	flex-direction: column;
	justify-content: center;

	padding: 25px;
}

.audience-content h4 {
	margin: 0 0 12px;

	color: #10271e;

	font-size: 21px;
	line-height: 1.25;
	font-weight: 800;
}

.audience-content p {
	margin: 0;

	color: #68716c;

	font-size: 14px;
	line-height: 1.7;
}


/* =========================================================
   HOVER IMAGE
========================================================= */

@media (min-width: 769px) {

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

	.audience-card:hover .audience-icon {
		transform: scale(1.08) rotate(8deg);
		background: var(--accent, #bdfa04);
	}

}


/* =========================================================
   BACK
========================================================= */


.audience-card-back {
	transform: rotateY(180deg);
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	display: flex;
	flex-direction: column;
}


/* Back image */

.audience-back-image {
 
    padding: 20px;
	flex-shrink: 0;

	overflow: hidden;
}
 
/* Back title */

.audience-back-title {
 
	color: var(--primary);

	font-size: 19px;
	font-weight: 800;

	line-height: 1.2;
}


/* Back content */

.audience-back-content {
	flex: 1;

	padding: 19px 20px;

	overflow-y: auto;
}

.audience-back-content::-webkit-scrollbar {
	width: 4px;
}

.audience-back-content::-webkit-scrollbar-thumb {
	background: #bdc6c0;
	border-radius: 20px;
}


/* Back intro */

.audience-back-intro {
	margin: 0 0 8px;

	color: #253c32;

	font-size: 14px;
;
	line-height: 1.55;

	font-weight: 700;
}


/* Back list */

.audience-back-content ul {
	padding: 0;
	margin: 0;

	list-style: none;
}

.audience-back-content li {
	position: relative;

	padding-left: 17px;
	margin-bottom: 7px;

	color: #626d67;

	font-size: 14px;
;
	line-height: 1.45;
}

.audience-back-content li::before {
	content: "";

	position: absolute;

	left: 0;
	top: 7px;

	width: 6px;
	height: 6px;

	border-radius: 50%;

	background: var(--accent, #bdFA04);
}


/* =========================================================
   TAP HINT
========================================================= */

.audience-tap-hint {
	position: absolute;

	left: 20px;
	bottom: 18px;

	z-index: 4;

	padding: 6px 10px;

	border-radius: 50px;

	background: rgba(255, 255, 255, 0.88);

	color: #17392c;

	font-size: 12px;
;
	font-weight: 700;

	opacity: 0;

	transform: translateY(8px);

	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}

.audience-card:hover .audience-tap-hint {
	opacity: 1;
	transform: translateY(0);
}


/* =========================================================
   CTA
========================================================= */

.consultation-cta-section {
	padding: 70px 0;

	background: #ffffff;
}

.consultation-cta {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;

	padding: 45px 50px;

	overflow: hidden;

	border-radius: 25px;

	background:
		radial-gradient(circle at 90% 20%,
			rgba(189, 250, 4, 0.22),
			transparent 30%),
		#0f3d2e;

	box-shadow:
		0 25px 70px rgba(15, 61, 46, 0.18);
}

.consultation-cta-content {
	max-width: 720px;
}

.cta-small-title {
	display: block;

	margin-bottom: 10px;

	color: #bdFA04;

	font-size: 14px;
;
	font-weight: 800;

	letter-spacing: 2px;
}

.consultation-cta h2 {
	margin: 0 0 12px;

	color: #ffffff;

	font-size: clamp(26px, 3vw, 40px);
	line-height: 1.2;
	font-weight: 800;
}

.consultation-cta p {
	margin: 0;

	color: rgba(255, 255, 255, 0.75);

	font-size: 15px;
	line-height: 1.7;
}


/* CTA button */

.consultation-btn {
	flex-shrink: 0;

	display: inline-flex;
	align-items: center;
	gap: 15px;

	padding: 16px 23px;

	border: 0;
	border-radius: 50px;

	background: #bdFA04;

	color: #0f3d2e;

	font-size: 14px;
	font-weight: 800;

	cursor: pointer;

	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.consultation-btn i {
	transition: transform 0.3s ease;
}

.consultation-btn:hover {
	transform: translateY(-3px);

	box-shadow:
		0 12px 30px rgba(189, 250, 4, 0.22);
}

.consultation-btn:hover i {
	transform: translateX(5px);
}


/* =========================================================
   CONSULTATION MODAL
========================================================= */

.consultation-modal {
	position: fixed;

	inset: 0;

	z-index: 10060;

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

	padding: 20px;

	visibility: hidden;
	opacity: 0;

	transition:
		opacity 0.35s ease,
		visibility 0.35s ease;
}

.consultation-modal.active {
	visibility: visible;
	opacity: 1;
}


/* Overlay */

.consultation-overlay {
	position: absolute;
	inset: 0;

	background:
		radial-gradient(circle at 20% 20%,
			rgba(189, 250, 4, 0.12),
			transparent 35%),
		rgba(4, 15, 11, 0.82);

	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}


/* Dialog */

.consultation-dialog {
	position: relative;

	z-index: 2;

	width: 100%;
	max-width: 650px;

	max-height: calc(100vh - 40px);

	overflow-y: auto;

	padding: 35px;

	border-radius: 25px;

	background:
		linear-gradient(145deg,
			#ffffff,
			#f5f8f4);

	box-shadow:
		0 35px 100px rgba(0, 0, 0, 0.3);

	transform:
		translateY(25px) scale(0.96);

	transition:
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.consultation-modal.active .consultation-dialog {
	transform:
		translateY(0) scale(1);
}


/* Close */

.consultation-close {
	position: absolute;

	top: 18px;
	right: 18px;

	width: 40px;
	height: 40px;

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

	border: 0;
	border-radius: 50%;

	background: #eef2ee;

	color: #17392c;

	cursor: pointer;

	transition:
		transform 0.25s ease,
		background 0.25s ease;
}

.consultation-close:hover {
	transform: rotate(90deg);

	background: #bdFA04;
}


/* Header */

.consultation-header {
	padding-right: 45px;

	margin-bottom: 28px;
}

.consultation-kicker {
	display: block;

	margin-bottom: 8px;

	color: #567064;

	font-size: 14px;
;
	font-weight: 800;

	letter-spacing: 2px;
}

.consultation-header h2 {
	margin: 0 0 8px;

	color: #10271e;

	font-size: 32px;
	font-weight: 800;
}

.consultation-header p {
	margin: 0;

	color: #6c7670;

	font-size: 14px;
	line-height: 1.7;
}


/* =========================================================
   FORM
========================================================= */

.consultation-form {
	display: flex;
	flex-direction: column;

	gap: 18px;
}

.form-group {
	display: flex;
	flex-direction: column;

	gap: 7px;
}

.form-group label {
	color: #213b30;

	font-size: 14px;
;
	font-weight: 700;
}

.form-group label span {
	color: #89938e;

	font-size: 14px;
;
	font-weight: 500;
}


/* Input */

.input-wrapper {
	position: relative;
}

.input-wrapper>i {
	position: absolute;

	left: 15px;
	top: 50%;

	transform: translateY(-50%);

	color: #708078;

	font-size: 14px;

	pointer-events: none;
}

.input-wrapper input,
.input-wrapper select,
.consultation-form textarea {
	width: 100%;

	border: 1px solid #dce4df;
	border-radius: 12px;

	background: #ffffff;

	color: #243c32;

	font-size: 14px;

	outline: none;

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

.input-wrapper input,
.input-wrapper select {
	height: 50px;

	padding:
		0 15px 0 43px;
}

.consultation-form textarea {
	padding: 14px 15px;

	resize: vertical;

	min-height: 90px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.consultation-form textarea:focus {
	border-color: #0f3d2e;

	box-shadow:
		0 0 0 3px rgba(15, 61, 46, 0.08);
}


/* Select */

.select-wrapper select {
	appearance: none;
	-webkit-appearance: none;

	cursor: pointer;
}

.select-wrapper::after {
	content: "\f107";

	position: absolute;

	right: 16px;
	top: 50%;

	transform: translateY(-50%);

	font-family: "Font Awesome 6 Free";
	font-weight: 900;

	color: #65736c;

	pointer-events: none;
}


/* Form row */

.form-row {
	display: grid;

	grid-template-columns: 1fr 1fr;

	gap: 15px;
}


/* =========================================================
   PAYMENT
========================================================= */

.consultation-payment {
	display: flex;
	align-items: center;
	justify-content: space-between;

	margin-top: 4px;
	padding: 17px 18px;

	border-radius: 14px;

	background: #eef4ef;
}

.payment-info {
	display: flex;
	flex-direction: column;

	gap: 2px;
}

.payment-label {
	color: #718078;

	font-size: 14px;
;
	font-weight: 600;
}

.payment-info strong {
	color: #0f3d2e;

	font-size: 23px;
	font-weight: 800;
}

.payment-secure {
	display: flex;
	align-items: center;
	gap: 6px;

	color: #5e7167;

	font-size: 14px;
;
}

.payment-secure i {
	color: #0f3d2e;
}


/* =========================================================
   MAKE PAYMENT BUTTON
========================================================= */

.make-payment-btn {
	width: 100%;

	min-height: 56px;

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

	gap: 12px;

	border: 0;
	border-radius: 14px;

	background: #0f3d2e;

	color: #ffffff;

	font-size: 14px;
	font-weight: 800;

	cursor: pointer;

	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		background 0.3s ease;
}

.make-payment-btn strong {
	color: #bdFA04;

	font-size: 16px;
}

.make-payment-btn i {
	transition: transform 0.3s ease;
}

.make-payment-btn:hover {
	transform: translateY(-2px);

	background: #123f2f;

	box-shadow:
		0 15px 30px rgba(15, 61, 46, 0.2);
}

.make-payment-btn:hover i {
	transform: translateX(5px);
}


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

/* Large desktop */

@media (max-width: 1399px) {

	.audience-card-column {
		width: 20%;
	}

	.audience-card,
	.audience-card-inner {
		min-height: 430px;
	}

	.audience-image {
		height: 220px;
	}

	.audience-content {
		padding: 20px;
	}

	.audience-content h4 {
		font-size: 19px;
	}

}


/* Laptop */

@media (max-width: 1199px) {

	.audience-card-column {
		width: 33.333333%;
	}

}


/* Tablet */

@media (max-width: 991px) {

	.audience-card-column {
		width: 50%;
	}

	.consultation-cta {
		padding: 35px;
	}

}


/* Mobile */

@media (max-width: 768px) {

	.audience-card-column {
		width: 100%;
	}

	.audience-card,
	.audience-card-inner {
		min-height: 430px;
	}

	.audience-image {
		height: 240px;
	}

	.audience-content {
		padding: 22px;
	}

	.audience-content h4 {
		font-size: 21px;
	}

	.audience-content p {
		font-size: 14px;
	}

	.consultation-cta {
		flex-direction: column;
		align-items: flex-start;

		padding: 30px 25px;
	}

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

	.consultation-dialog {
		padding: 28px 20px;

		max-height: calc(100vh - 20px);
	}

	.consultation-header h2 {
		font-size: 27px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

}


/* Small mobile */

@media (max-width: 480px) {

	.audience-section {
		padding-left: 10px;
		padding-right: 10px;
	}

	.audience-card,
	.audience-card-inner {
		min-height: 450px;
	}

	.audience-image {
		height: 245px;
	}

	.audience-back-image {
		height: 140px;
	}

	.audience-back-content {
		padding: 17px;
	}

	.consultation-payment {
		align-items: flex-start;
		gap: 15px;
		flex-direction: column;
	}

}


/* <!-- ══════════════════  WHO IS IT FOR END═══════════════════ --> */

/* * ═══════════════════════════════════════
   SCIENCE / TRUST SECTION
═══════════════════════════════════════ */
.science-section {
	background:
		radial-gradient(circle at 15% 20%, rgba(189, 250, 4, 0.12), transparent 28%),
		linear-gradient(135deg, #0b2f24 0%, var(--primary) 58%, #164b39 100%);
	padding: 110px 0;
	position: relative;
	overflow: hidden;
}

.science-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23BDFA04' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
}

.science-section::after {
	content: 'NUMY ';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 22vw;
	color: rgba(255, 255, 255, 0.025);
	pointer-events: none;
	white-space: nowrap;
}

.accent-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	border: 1px solid rgba(189, 250, 4, 0.22);
	border-radius: 100px;
	background: rgba(189, 250, 4, 0.1);
	color: var(--accent);
	font-size: 14px;
;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.accent-badge::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 18px rgba(189, 250, 4, 0.8);
}

.science-title {
	font-weight: 500;
	font-size: clamp(30px, 4.5vw, 46px);
	line-height: 1.1;
	color: var(--white);
	margin-bottom: 28px;
	max-width: 620px;
}

.science-title span {
	color: var(--accent);
}

.science-body {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.85;
	max-width: 560px;
	margin-bottom: 34px;
}

.science-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.science-stat {
	padding: 24px 18px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	text-align: left;
	backdrop-filter: blur(14px);
	transition: var(--transition);
}

.science-stat:hover {
	transform: translateY(-5px);
	border-color: rgba(189, 250, 4, 0.38);
	box-shadow: 0 22px 46px rgba(0, 0, 0, 0.16);
}

.science-stat-num {
	font-size: 35px;
	color: var(--accent);
	line-height: 1;
	margin-bottom: 8px;
	display: block;
}

.science-stat-label {
	font-size: 14px;
;
	color: rgba(255, 255, 255, 0.68);
	font-weight: 600;
	line-height: 1.45;
}

.science-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 0;
}

.sci-pill {
	padding: 10px 16px;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 14px;
;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.78);
	display: flex;
	align-items: center;
	gap: 8px;
}

.sci-pill i {
	color: var(--accent);
}

/* Science image cards */
.science-visual {
	height: 450px;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(14px);
}

.science-hero-card,
.science-img-card {
	overflow: hidden;
	position: relative;
	height: 360px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
}

.science-hero-card {
	height: 100%;
	min-height: 328px;
}

.science-mini-grid {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 16px;
}

.science-hero-card img,
.science-img-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s ease;
}

.science-hero-card:hover img,
.science-img-card:hover img {
	transform: scale(1.05);
}

.science-hero-card::after,
.science-img-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(7, 28, 21, 0.72) 0%, rgba(7, 28, 21, 0.08) 60%);
}

.science-hero-overlay {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 2;
}

.science-hero-overlay p {
	max-width: 360px;
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	line-height: 1.55;
}

.science-img-card-label {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 2;
	font-size: 24px;
	color: #fff;
	letter-spacing: 1px;
}

.science-hero-overlay .science-img-card-label {
	position: static;
	display: block;
	color: var(--accent);
	font-size: 34px;
}

/* ═══════════════════════════════════════
 PLAN SECTION
═══════════════════════════════════════ */

.pricing-section {
	background: #fff;
}

.pricing-card {
	position: relative;
	background: #fff;
	border: 1px solid #e8ece9;
	border-radius: 24px;
	overflow: hidden;
	height: 100%;
	transition: .35s;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(15, 61, 46, .12);
}

.featured-card {
	transform: scale(1.04);
	border: 2px solid var(--primary);
}

.featured-card:hover {
	transform: scale(1.04) translateY(-10px);
}

.popular-badge {
	background: var(--primary);
	color: #fff;
	text-align: center;
	padding: 10px;
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 15px;
}

.pricing-body {
	padding: 40px 35px;
}

.pricing-body h3 {
	color: var(--primary);
	font-family: Inter, sans-serif;
	font-size: 25px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 15px;
}

.price {
	text-align: center;
	font-size: 40px;
	font-family: Inter, sans-serif;
	font-weight: 800;
	color: #081B45;
	margin-bottom: 15px;
}

.pricing-body p {
	text-align: center;
	color: #666;
	margin-bottom: 30px;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;

}

.feature-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 18px;
}

.feature-list i {
	color: var(--primary);
	margin-top: 4px;
}

.feature-list span {
	color: #444;
}



.btn-outline {
	border: 2px solid var(--primary);
	color: var(--primary);
	background: #fff;
}

.btn-outline:hover {
	background: var(--primary);
	color: #fff;
}

.btn-filled {
	background: var(--primary);
	color: #fff;
	border: 2px solid var(--primary);
}

.btn-filled:hover {
	background: #14513d;
	border-color: #14513d;
}

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

@media(max-width:1199px) {

	.price {
		font-size: 54px;
	}

	.pricing-body {
		padding: 35px 28px;
	}

}

@media(max-width:991px) {

	.featured-card {
		transform: none;
	}

	.featured-card:hover {
		transform: translateY(-10px);
	}

	.price {
		font-size: 48px;
	}

	.pricing-body h3 {
		font-size: 25px;
	}

}

@media(max-width:767px) {

	.pricing-body {
		padding: 30px 22px;
	}

	.price {
		font-size: 42px;
	}

	.pricing-body h3 {
		font-size: 22px;
	}


}

@media(max-width:575px) {

	.price {
		font-size: 36px;
	}

	.pricing-body {
		padding: 25px 18px;
	}

	.feature-list li {
		font-size: 15px;
	}

}

/* ===========================
           CORPORATE
        =========================== */

.trusted-section {
	background: #fff;
}

.trusted-card {
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 24px;
	padding: 40px;
	height: 100%;
	transition: .35s;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.trusted-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 45px rgba(15, 61, 46, .12);
}

.trusted-icon {
	width: 140px;
	height: 140px;
	margin: auto;
	border-radius: 50%;
	background: #f6fbf8;
	display: flex;
	align-items: center;
	justify-content: center;
}

.trusted-icon i {
	font-size: 72px;
	color: var(--primary);
}

.trusted-card h3 {
	font-family: "Inter", sans-serif;
	font-size: 25px;
	font-weight: 700;
	color: #081B45;
	margin-bottom: 18px;
}

.trusted-card p {
	color: #666;
	line-height: 1.8;
	margin-bottom: 25px;
}

.trusted-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	height: 58px;
	border: 2px solid var(--primary);
	border-radius: 15px;
	color: var(--primary);
	font-family: "Inter", sans-serif;
	font-weight: 700;
	transition: .35s;
}

.trusted-btn:hover {
	background: var(--primary);
	color: #fff;
}

/*=========================
			Responsive
		==========================*/

@media(max-width:991px) {

	.trusted-card {
		padding: 30px;
		text-align: center;
	}

	.trusted-icon {
		margin-bottom: 25px;
	}

	.trusted-card h3 {
		font-size: 25px;
	}

}

@media(max-width:767px) {

	.trusted-icon {
		width: 110px;
		height: 110px;
	}

	.trusted-icon i {
		font-size: 56px;
	}

	.trusted-card h3 {
		font-size: 22px;
	}

	.trusted-btn {
		width: 100%;
		min-width: 100%;
	}

}

@media(max-width:576px) {

	.trusted-card {
		padding: 25px 20px;
	}

	.trusted-card h3 {
		font-size: 20px;
	}

	.trusted-card p {
		font-size: 15px;
	}

}

/*==========================================
					TESTIMONIAL SECTION
			==========================================*/

.testimonial-section {
	position: relative;
	background: linear-gradient(180deg, #f8fffb 0%, #ffffff 100%);
	overflow: hidden;
}

.testimonial-section .container-fluid {
	padding: 0 90px;
}

.testimonial-slider-shell {
	display: flex;
	align-items: center;
	gap: 16px;
}

.testimonial-viewport {
	flex: 1;
	overflow: hidden;
	padding: 8px 2px 20px;
}

.testimonial-track {
	display: flex;
	gap: 24px;
	transition: transform .6s cubic-bezier(.22, 1, .36, 1);
	will-change: transform;
}

.testimonial-card {
	position: relative;
	background: #fff;
	border: 1px solid #edf1ef;
	border-radius: 24px;
	overflow: hidden;
	height: 100%;
	padding: 28px;
	transition: .35s ease;
	box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
	cursor: pointer;
}

.testimonial-card--slider {
	flex: 0 0 calc((100% - ((var(--visible-cards) - 1) * var(--card-gap))) / var(--visible-cards));
	min-width: 0;
}

.testimonial-card:hover {

	transform: translateY(-10px);

	box-shadow: 0 25px 60px rgba(15, 61, 46, .12);

}

/*==========================
				Content
			==========================*/

.testimonial-content {
	display: grid;
	grid-template-columns: 1.3fr 2fr;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
}

@media (max-width: 1291px) {
	.testimonial-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.testimonial-left {
	flex: 1;
}

.testimonial-right {
	width: auto;
	flex-shrink: 0;
}

/*==========================
				Rating
			==========================*/

.rating {
	margin-bottom: 20px;
}

.rating i {

	color: #0F8B52;
	font-size: 18px;
	margin-right: 2px;

}

/*==========================
				Review
			==========================*/

.testimonial-text {

	font-size: 17px;
	color: #444;
	line-height: 1.8;
	margin-bottom: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: calc(1.8em * 4);

}

.client-name {

	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #081B45;

}

/*==========================
					Image
			==========================*/

.client-image {

	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 5px solid #f7f7f7;
	transition: .4s;

}

.testimonial-card:hover .client-image {

	transform: scale(1.08);

}

/*==========================
					Controls
			==========================*/

.testimonial-nav,
.teamSliderBtn-nav {
	width: 52px;
	height: 52px;
	border: none;
	border-radius: 50%;
	background: linear-gradient(135deg, #0f8b52, #1fb97a);
	color: #fff;
	box-shadow: 0 12px 30px rgba(15, 61, 46, .18);
	transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
	flex-shrink: 0;
}

.testimonial-nav:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 36px rgba(15, 61, 46, .22);
}

.testimonial-nav:disabled {
	opacity: .45;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.testimonial-dots,
.team-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.testimonial-dots {
	margin-top: 24px;

}

.testimonial-dots button,
.team-dots button {
	width: 10px;
	height: 10px;
	border: none;
	border-radius: 50%;
	background: #d9e2dc;
	padding: 0;
	transition: all .3s ease;
}

.testimonial-dots button.active,
.team-dots button.active {
	width: 34px;
	border-radius: 999px;
	background: var(--primary);
}

.testimonial-modal {
	position: fixed;
	inset: 0;
	z-index: 4000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.testimonial-modal.is-open {
	display: flex;
}

.testimonial-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(6, 18, 15, .82);
	backdrop-filter: blur(8px);
}

.testimonial-modal-panel {
	position: relative;
	z-index: 1;
	width: min(1120px, 100%);
	height: min(760px, 100%);
	background: linear-gradient(135deg, #ffffff 0%, #f4fff8 100%);
	border-radius: 32px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
	display: flex;
	flex-direction: column;
	padding: 24px;
}

.testimonial-modal-close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 46px;
	height: 46px;
	border: none;
	border-radius: 50%;
	background: #fff;
	color: #0f8b52;
	box-shadow: 0 10px 18px rgba(15, 61, 46, .16);
	z-index: 2;
}

.testimonial-modal-body {
	flex: 1;
	overflow: hidden;
	padding: 22px 8px 6px;
}

.testimonial-modal-track {
	display: flex;
	height: 100%;
	transition: transform .55s ease;
}

.testimonial-modal-slide {
	flex: 0 0 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 6px 4px;
}

.testimonial-modal-card {
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 28px;
	box-shadow: 0 16px 44px rgba(15, 61, 46, .1);
	padding: 32px;
	display: flex;
	align-items: center;
	gap: 30px;
}

.testimonial-modal-card .testimonial-left {
	flex: 1;
}

.testimonial-modal-card .testimonial-text {
	-webkit-line-clamp: unset;
	display: block;
	min-height: 0;
	overflow: visible;
	font-size: 18px;
	line-height: 1.9;
	margin-bottom: 26px;
}

.testimonial-modal-card .client-image {
	width: 180px;
	height: 180px;
}

.testimonial-modal-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding-top: 10px;
}

.testimonial-modal-nav {
	width: 46px;
	height: 46px;
	border: none;
	border-radius: 50%;
	background: linear-gradient(135deg, #0f8b52, #1fb97a);
	color: #fff;
	box-shadow: 0 10px 22px rgba(15, 61, 46, .16);
}

.testimonial-modal-nav:disabled {
	opacity: .45;
	cursor: not-allowed;
	box-shadow: none;
}

.testimonial-modal-dots {
	display: flex;
	gap: 8px;
}

.testimonial-modal-dots button {
	width: 10px;
	height: 10px;
	border: none;
	border-radius: 50%;
	background: #d8e4dc;
	padding: 0;
}

.testimonial-modal-dots button.active {
	width: 34px;
	border-radius: 999px;
	background: var(--primary);
}

/*==========================
				Responsive
			==========================*/

@media(max-width:1399px) {

	.testimonial-section .container-fluid {

		padding: 0 70px;

	}

}

@media(max-width:1199px) {

	.testimonial-section .container-fluid {
		padding: 0 50px;
	}

	.client-image {

		width: 100px;
		height: 100px;

	}

	.testimonial-right {
		width: 100px;
	}

}

@media(max-width:991px) {

	.testimonial-content {

		flex-direction: column-reverse;
		text-align: center;

	}

	.testimonial-right {

		width: 100%;

	}

	.client-image {

		margin: auto;

	}

	.testimonial-nav {

		display: none;

	}

}

@media(max-width:767px) {

	.testimonial-section .container-fluid {

		padding: 0 20px;

	}

	.testimonial-card {

		padding: 25px 20px;

	}

	.client-image {

		width: 90px;
		height: 90px;

	}

	.rating i {

		font-size: 16px;

	}

	.testimonial-text {

		font-size: 15px;

	}

	.client-name {

		font-size: 17px;

	}

	.carousel-indicators {

		margin-top: 25px;

	}

}

@media(max-width:575px) {

	.testimonial-card {

		padding: 20px;

	}

	.testimonial-text {

		font-size: 14px;

		line-height: 1.7;

	}

	.client-image {

		width: 80px;
		height: 80px;

	}

	.rating {

		margin-bottom: 15px;

	}

	.client-name {

		font-size: 16px;

	}

}


/* ═══════════════════════════════════════
			HOME ABOUT SECTION
		═══════════════════════════════════════ */
.about-section {

	position: relative;
	overflow: hidden;
	background-image: url(../img/side-img/about-us-bg-image.png);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 50px;
	/* background: #222121;
		background-blend-mode: multiply; */
}

/* ---------------- */
.about-image {
	display: flex;
	align-items: center;
}

.benefits-card {
	background: #fff;
	padding: 30px;
	max-width: 350px;
	border-radius: 10px;
	box-shadow: 0 0 30px rgb(0, 0, 0, .30);
}

.benefits-title {
	color: var(--primary) !important;
	font-size: 20px;
	font-weight: 500;
	font-family: "Rokkitt", serif;
}


.benefit-icon {
	width: 40px;
	height: 40px;
	min-width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;
	background: #2f7d32;
	color: #fff;
	font-size: 18px;

	box-shadow: 0 8px 20px rgba(47, 125, 50, .18);
}

.benefit-content h4 {
	margin: 0 0 6px;
	color: #222;
	font-size: 18px;
	font-weight: 700;
	font-family: "Rokkitt", serif;
}


/* ---------------------- */
.about-card {
	display: grid;
	grid-template-columns: 40% 65%;
	justify-content: space-between;
	border-radius: 28px;
	padding: 18px;
	position: relative;
}

.about-content {
	background: linear-gradient(to right, rgb(246 243 240), rgb(246 243 240));
	padding: 50px;
	max-width: 550px;
	border-radius: 10px;
	justify-self: end;
}

.about-lrft-content {
	display: grid;
	align-items: end;
}

.about-body {
	font-size: 15px;
	line-height: 1.85;
	color: var(--white);
	font-weight: 400;
	max-width: 720px;
	margin: 0;
}

.about-body strong {
	color: var(--primary);
}

.about-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.about-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 10px;
	border-radius: 100px;
	background: rgba(15, 61, 46, 0.06);
	border: 1px solid var(--primary);
	font-size: 14px;
;
	font-weight: 700;
	color: var(--primary);
}

.about-proof {
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
	z-index: 1;
}


/* =================================================================
    NHANCE PRO
    ========================= ==========================================*/
.pro-journey-section {
	position: relative;
	overflow: hidden;
	padding: 100px 0;
}

.pro-journey-section::before {
	content: "";
	position: absolute;
	width: 450px;
	height: 450px;
	border-radius: 50%;
	background: rgba(15, 61, 46, .05);
	top: -220px;
	right: -150px;
}

.pro-header-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 10px;
}

.price-tag {
	display: inline-block;
	background: #1f3622;
	color: #fff;
	padding: 8px 16px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 32px;
}

.label-pill {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 4px;
	background: #1f3622;
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 20px;
}

.hero-title {
	font-size: 36px;
	line-height: 1.25;
	margin-bottom: 20px;
	max-width: 700px;
	color: #1f3622;
	font-weight: 700;
}

.journey-layout {
	display: grid;
	grid-template-columns: 420px 1fr;
	gap: 70px;
	align-items: center;
}

.pro-product-shot {
	position: sticky;
	top: 90px;
	text-align: center;
}

.pro-product-shot img {
	max-width: 100%;
	animation: floatImage 5s ease-in-out infinite;
}

@keyframes floatImage {
	50% {
		transform: translateY(-12px);
	}
}

.pro-feature-cards {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pro-feature-card {
	display: flex;
	align-items: center;
	background: #f1f4e9;
	border-radius: 12px;
	padding: 16px;
	gap: 16px;
}

.pro-feature-icon {
	width: 70px;
	height: 70px;
	min-width: 70px;
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.pro-feature-icon.doctor-bg {
	background: #e8e3dc;
}

.pro-feature-icon.blood-bg {
	background: #f5dacc;
}

.pro-feature-icon.clipboard-bg {
	background: #e6efe2;
}

.pro-feature-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pro-feature-text h4 {
	font-size: 16px;
	font-weight: 700;
	color: #1f3622;
	margin-bottom: 6px;
}

.pro-feature-text p {
	font-size: 14px;
;
	color: #4a5c53;
	line-height: 1.4;
	margin: 0;
}

.begin-btn {
	display: inline-block;
	margin-top: 25px;
	padding: 15px 30px;
	border-radius: 60px;
	background: #0f3d2e;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
}

.trigger-area {
	margin-top: 70px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	position: relative;
}

.trigger-box {
	position: relative;
	border-radius: 20px;
	background: #f7f5ef;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	overflow: hidden;
	min-height: 250px;
	box-shadow: 0 0 4px rgba(15, 61, 46, .5);
	transition: .35s ease;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.trigger-box.active-highlight {
	transform: scale(1.02);
	box-shadow: 0 0 0 4px rgba(15, 61, 46, .15), 0 18px 45px rgba(0, 0, 0, .12);
}

.trigger-content {
	padding: 20px;
	padding-right: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 2;
}

.trigger-content h3 {
	font-size: 24px;
	line-height: 1.25;
	margin-bottom: 12px;
	color: #1a3122;
	font-weight: 700;
}

.trigger-content p {
	font-size: 14px;
	color: var(--primary);
	line-height: 1.5;
	margin-bottom: 25px;
}

.trigger-box a {
	align-self: flex-start;
	background: #1a3122;
	color: #fff;
	padding: 12px 20px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}

.trigger-image {
	position: relative;
	width: 100%;
	height: 100%;
}

.trigger-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
}

.trigger-center-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 54px;
	height: 54px;
	background: #f1f4e9;
	border: 4px solid #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 3;
	font-size: 22px;
	color: #1a3122;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.plans {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.plan {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 24px;
	background: #fdfdfc;
	border-radius: 16px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
}

.plan-header h3 {
	font-size: 18px;
	font-weight: 700;
	color: #1a3122;
	margin-bottom: 15px;
	text-align: center;
}

.plan-intro {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 20px;
}

.plan-intro-icon {
	font-size: 20px;
	color: #fff;
	background: #1a3122;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.plan-intro-text {
	line-height: 1.4;
}

.plan-body h4 {
	font-size: 14px;
	font-weight: 700;
	color: #1a3122;
	margin-bottom: 12px;
}

.plan ul {
	margin-top: 0;
	padding-left: 0;
	list-style: none;
	margin-bottom: 25px;
}

.plan ul li {
	font-size: 14px;
;
	color: #4a5c53;
	margin-bottom: 10px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	line-height: 1.2 !important;
}

.plan ul li i {
	margin-top: 3px;
}

.plan-btn {
	display: block;
	text-align: center;
	background: var(--primary);
	color: #fff;
	padding: 12px 15px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: .3s;
	margin-bottom: 20px;
}

.plan-btn:hover {
	background: var(--secondary);
	color: #fff;
}

.plan-btn i {
	margin-right: 6px;
}

/* Modal */

.pro-modal {
	position: fixed;
	inset: 0;
	background: rgba(8, 20, 20, .65);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	z-index: 999999;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.pro-modal.active {
	display: flex;
	animation: fadeIn .35s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.modal-card {

	width: 100%;
	max-width: 620px;
	background: #f7f5ef;
	border-radius: 20px;
	padding: 45px 35px;
	position: relative;
	text-align: center;
	animation: popupScale .35s ease;
	box-shadow:
		0 0 4px rgba(15, 61, 46, .5),
		0 25px 70px rgba(0, 0, 0, .18);
}

@keyframes popupScale {

	from {
		opacity: 0;
		transform: translateY(20px) scale(.95);
	}

	to {
		opacity: 1;
		transform: none;
	}

}

.modal-badge {

	display: inline-block;

	margin-top: 18px;

	margin-bottom: 12px;

	padding: 7px 18px;

	border-radius: 40px;

	background: #eefaf4;

	color: #0f3d2e;

	font-weight: 600;

}

.modal-card h2 {

	margin-bottom: 14px;

	font-size: 34px;

}

.modal-card p {

	color: #666;

	line-height: 1.8;

}

.modal-actions {

	display: grid;

	grid-template-columns: 1fr 1fr;

	gap: 18px;

	margin-top: 30px;

}

.modal-actions a {
	display: inline-block;
	padding: 14px 22px;
	border-radius: 50px;
	background: #0f3d2e;
	color: #fff;
	text-decoration: none;
}

.close-modal {
	position: absolute;
	right: 18px;
	top: 15px;
	border: none;
	background: none;
	font-size: 32px;
	cursor: pointer;
	color: #666;
}

.modal-icon {
	width: 74px;
	height: 74px;
	margin: auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	background: #e7f7ef;
}

.schedule-blood-btn,
.doctor-btn {
	display: inline-block;
	margin-top: 20px;
	padding: 12px 20px;
	border-radius: 40px;
	background: #0f3d2e;
	color: #fff;
	text-decoration: none;
}

#modal-dynamic-view {
	padding: 10px;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: center;
	animation: fadeIn 0.35s ease;
}

#modal-dynamic-view h3 {
	font-size: 24px;
	line-height: 1.25;
	margin-bottom: 12px;
	color: #1a3122;
	font-weight: 700;
}

#modal-dynamic-view p {
	font-size: 14px;
	color: var(--primary);
	line-height: 1.5;
	margin-bottom: 25px;
}

#modal-dynamic-view a {
	align-self: flex-start;
	background: #1a3122;
	color: #fff;
	padding: 12px 20px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

#modal-initial-view {
	animation: fadeIn 0.35s ease;
}

@media(max-width:991px) {

	.journey-layout {
		grid-template-columns: 1fr;
	}
.about-content{
	padding: 23px;
}
	.trigger-area {
		grid-template-columns: 1fr;
	}

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

	.plan {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-title {
		font-size: 38px;
	}

	.pro-product-shot {
		position: static;
	}
}

.popup-option {

	border: none;

	cursor: pointer;

	border-radius: 18px;

	padding: 24px;

	text-align: left;

	background: #f7faf9;

	transition: .3s;

}

.popup-option:hover {

	transform: translateY(-4px);

	background: #0f3d2e;

	color: #fff;

}

.popup-option strong {
	display: block;
	margin-bottom: 8px;
	font-size: 18px;
}

.popup-option small {
	display: block;
	opacity: .8;
	line-height: 1.6;
}

.trigger-box {
	scroll-margin-top: 120px;
	transition: .4s;
}

.trigger-box.active-highlight {
	transform: scale(1.02);
	border: 2px solid #0f3d2e;
	box-shadow:
		0 0 0 8px rgba(15, 61, 46, .08),
		0 20px 50px rgba(0, 0, 0, .12);
}

@media(max-width:768px) {

	.modal-card {
		padding: 30px 22px;
	}

	.modal-card h2 {
		font-size: 28px;
	}

	.modal-actions {
		grid-template-columns: 1fr;
	}

}

/* ==================================
   QUALITY PILLARS SECTION
================================== */
.our-quality-pillars {
	background: #fcfdfc;
	overflow: hidden;
}

.pillars-row {
	border-top: 1px solid rgba(26, 49, 34, 0.1);
	border-bottom: 1px solid rgba(26, 49, 34, 0.1);
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}

.pillar-col {
	position: relative;
	border-right: 1px solid rgba(26, 49, 34, 0.1);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	padding: 0;
	overflow: hidden;
	transition: all 0.4s ease;
}

.pillar-col:hover {
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	z-index: 2;
	border-color: transparent;
}

.pillar-col:last-child {
	border-right: none;
}

.pillar-card {
	position: relative;
	padding: 40px 30px;
	width: 100%;
	background: linear-gradient(to bottom, rgba(247, 249, 245, 0.95) 0%, rgba(247, 249, 245, 0.85) 60%, rgba(247, 249, 245, 0.4) 100%);
	min-height: 420px;
	z-index: 1;
	transition: all 0.4s ease;
}

.pillar-col:hover .pillar-card {
	background: linear-gradient(to bottom, rgba(247, 249, 245, 0.90) 0%, rgba(247, 249, 245, 0.6) 60%, rgba(247, 249, 245, 0.1) 100%);
}

.pillar-header {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 20px;
}

.pillar-icon {
	width: 56px;
	height: 56px;
	background: #1a3122;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	flex-shrink: 0;
	border: 3px solid #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.pillar-col:hover .pillar-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 8px 20px rgba(26, 49, 34, 0.3);
}

.pillar-icon span {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.pillar-header h3 {
	font-size: 18px;
	font-weight: 700;
	color: #1a3122;
	margin: 0;
	line-height: 1.3;
	padding-top: 6px;
}

.pillar-card p {
	font-size: 14px;
	color: #333;
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 991px) {
	.pillar-col {
		border-right: none;
		border-bottom: 1px solid rgba(26, 49, 34, 0.1);
	}

	.pillar-col:last-child {
		border-bottom: none;
	}
}

/* ==================================
   MODERN CLINICAL TABLE
================================== */

.clinical-table-wrap {
	margin-top: 30px;
	border-radius: 24px;
	overflow: hidden;

	background: rgba(255, 255, 255, .7);
	backdrop-filter: blur(15px);

	border: 1px solid rgba(15, 61, 46, .08);

	box-shadow:
		0 20px 60px rgba(15, 61, 46, .08);
}

.clinical-table {
	width: 100%;
	border-collapse: collapse;
}

.clinical-table thead {
	background: linear-gradient(135deg,
			var(--primary),
			#1a5c42);
}

.clinical-table th {
	color: #fff;
	padding: 12px 24px;
	text-align: left;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .5px;
}

.clinical-table td {
	padding: 12px 24px;
	border-bottom: 1px solid rgba(15, 61, 46, .08);
	vertical-align: middle;
	color: var(--text-main);
}

.clinical-table tr:last-child td {
	border-bottom: none;
}

.clinical-table tbody tr {
	transition: .35s ease;
}

.clinical-table tbody tr:hover {
	background: rgba(189, 250, 4, .08);
}

.table-title {
	display: flex;
	align-items: center;
	gap: 14px;

	font-weight: 700 !important;
	color: var(--primary) !important;
}

.table-icon {
	width: 48px;
	height: 48px;

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

	border-radius: 5px;

	background: linear-gradient(135deg, rgb(42 55 4 / 25%), rgba(189, 250, 4, .10));

	color: var(--primary);
	font-size: 18px;
	box-shadow:
		2px 3px 0px rgb(88, 50, 7);
}

.clinical-table td:last-child {
	line-height: 1.7;
}

/* Mobile */

@media(max-width:768px) {

	.clinical-table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}

	.clinical-table th,
	.clinical-table td {
		min-width: 260px;
	}
}

/* ═══════════════════════════════════════
   FINAL CTA SECTION
═══════════════════════════════════════ */

/* -------------------------CTA------------------------- */
.cta-section {
	position: relative;
	overflow: hidden;
	padding: 50px 0;
	background: var(--secondary);
	color: var(--white);
	text-align: center;
}

.cta-section::before {
	content: 'NUMY ';
	position: absolute;
	font-family: serif;
	top: 50%;
	left: 50%;
	z-index: 0;
	color: rgba(255, 255, 255, 0.03);
	font-size: 15vw;
	transform: translate(-50%, -50%);
}

.badge-new {
	display: inline-block;
	margin-bottom: 25px;
	padding: 7px 20px;
	border: 1px solid rgba(189, 250, 4, 0.25);
	border-radius: 100px;
	background: rgba(189, 250, 4, 0.12);
	color: var(--accent);
	font-size: 14px;
;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.cta-sub {
	position: relative;
	max-width: 760px;
	margin: 0 auto 50px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 20px;
	line-height: 1.7;
}

.cta-actions {
	display: flex;
	align-items: center;
	justify-content: center;
}


@media (max-width: 1200px) {
	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 45px;
	}
}

@media (max-width: 992px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		padding: 24px 0 0;
	}

	.footer-bottom span {
		width: 100%;
	}
}

/* ------------------------------Footer ----------------------*/
footer {
	position: relative;
	padding: 80px 0 0;
	background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 50%, #0A0A0A 100%);
	color: rgba(255, 255, 255, 0.6);
	overflow: hidden;
}
/* Green primary glow */
footer::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    top: -300px;
    left: -200px;
	    background: radial-gradient(
        circle,
        rgba(189, 250, 4, 0.18) 0%,
        rgba(189, 250, 4, 0.08) 30%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 2;
}

/* Accent glow */
footer::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -100px;
    bottom: -200px;

    background: radial-gradient(
        circle,
        rgba(22, 99, 63, 0.35) 0%,
        rgba(22, 99, 63, 0.15) 35%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
}
.footer-accent-bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-accent);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 60px;
	z-index: 1;
	margin-bottom: 20px;
}


.footer-desc {
	max-width: 350px;
	margin-top: 25px;
	font-size: 15px;
	line-height: 1.7;
	color: #fff;
}

.footer-social {
	display: flex;
	justify-content: end;
	gap: 12px;
	margin-top: 30px;
}

.footer-social a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.footer-social a::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--gradient-accent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.footer-social a i {
	position: relative;
	z-index: 1;
}

.footer-social a:hover {
	border-color: var(--accent);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(189, 250, 4, 0.2);
}

.footer-social a:hover::before {
	opacity: 1;
}

.footer-social a:hover i {
	color: var(--primary);
}

.footer-col h5 {
	position: relative;
	margin-bottom: 25px;
	padding-bottom: 15px;
	color: var(--white);
	font-size: 14px;
;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.footer-col h5::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--gradient-accent);
	border-radius: 2px;
	transition: width 0.3s ease;
}

.footer-col:hover h5::after {
	width: 60px;
}

.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 0 !important;
}

.footer-col ul li a {
	position: relative;
	color: #fff;
	font-size: 14px;
	transition: all 0.3s ease;
	padding-left: 0;
}

.footer-col ul li a::before {
	content: '';
	position: absolute;
	left: -15px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: all 0.3s ease;
}

.footer-col ul li a:hover {
	color: var(--white);
	padding-left: 15px;
}

.footer-col ul li a:hover::before {
	width: 10px;
	left: 0;
}

.footer-bottom {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 14px;
;
	z-index: 1;
}

.footer-bottom span {
	color: rgba(255, 255, 255, 0.4);
}

.footer-bottom span:last-child {
	color: var(--accent);
	font-weight: 600;
}

.footer-links {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	column-gap: 30px;
	row-gap: 10px;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-links li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

.footer-links li a {
	display: block;
	width: 100%;
}

@media(max-width:575px) {
	.footer-social {
		justify-content: start;
	}

	.footer-links {
		grid-template-columns: 1fr !important;
	}
}

/* =================================
   Cart Section
================================= */
.cart-breadcrumb .breadcrumb-item a {
	color: #6b7280;
	text-decoration: none;
}

.cart-breadcrumb .breadcrumb-item.active {
	color: #16a34a;
	font-weight: 600;
}

.cart-page-hero {
	margin-top: 150px;
}

.hero-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.4;
	z-index: -1;
}

.hero-blob-1 {
	width: 300px;
	height: 300px;
	background: #16a34a;
	top: -100px;
	left: -100px;
}



/* =================================
   Address Box
================================= */
.address-box {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 12px;
	padding: 25px;
	margin-top: 20px;
}

.address-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.address-header h5 {
	font-size: 18px;
	font-weight: 700;
	color: #202020;
	margin: 0;
}

.add-address-btn {
	padding: 8px 16px;
	font-size: 14px;
;
	font-weight: 600;
	color: var(--primary);
	background: #F2FBF5;
	border: 1px solid var(--primary);
	border-radius: 8px;
	cursor: pointer;
	transition: .3s;
	display: flex;
	align-items: center;
	gap: 6px;
}

.add-address-btn:hover {
	background: var(--primary);
	color: #fff;
}

.address-content {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.address-list {
	flex: 1;
	width: 100%;
}

.address-item {
	display: flex;
	gap: 15px;
	padding: 18px;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	margin-bottom: 15px;
	transition: .3s;
	cursor: pointer;
	position: relative;
}

.address-item:hover {
	border-color: var(--primary);
	box-shadow: 0 4px 12px rgba(22, 163, 74, 0.1);
}

.address-item.active {
	border-color: var(--primary);
	background: #F2FBF5;
}

.address-item.active::before {
	content: '✓';
	position: absolute;
	top: 10px;
	right: 10px;
	width: 24px;
	height: 24px;
	background: var(--primary);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
;
	font-weight: 700;
}

.address-radio {
	width: 20px;
	height: 20px;
	margin-top: 3px;
	accent-color: var(--primary);
}

.address-details h6 {
	font-size: 16px;
	font-weight: 600;
	color: #202020;
	margin-bottom: 6px;
}

.address-details p {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
	line-height: 1.6;
}

.address-actions {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

.address-edit-btn,
.address-delete-btn {
	padding: 6px 12px;
	font-size: 14px;
;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	transition: .3s;
	border: none;
}

.address-edit-btn {
	color: var(--primary);
	background: #F2FBF5;
}

.address-edit-btn:hover {
	background: var(--primary);
	color: #fff;
}

.address-delete-btn {
	color: #dc3545;
	background: #fff4f4;
}

.address-delete-btn:hover {
	background: #dc3545;
	color: #fff;
}

.no-address {
	text-align: center;
	padding: 40px 20px;
}

.no-address i {
	font-size: 60px;
	color: #ddd;
	margin-bottom: 15px;
}

.no-address h6 {
	font-size: 18px;
	font-weight: 600;
	color: #202020;
	margin-bottom: 8px;
}

.no-address p {
	color: #6b7280;
	margin-bottom: 20px;
}

/* =================================
   Address Modal
================================= */
.address-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.address-modal-overlay.active {
	display: flex;
}

.address-modal {
	background: #fff;
	border-radius: 16px;
	width: 90%;
	max-width: 550px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.modal-header {
	padding: 25px;
	border-bottom: 1px solid #ececec;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-header h5 {
	font-size: 20px;
	font-weight: 700;
	color: #202020;
	margin: 0;
}

.modal-close {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid #ececec;
	background: #fff;
	color: #6b7280;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
}

.modal-close:hover {
	background: #dc3545;
	color: #fff;
	border-color: #dc3545;
}

.modal-body {
	padding: 25px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #202020;
	margin-bottom: 8px;
}

.form-group label span {
	color: #dc3545;
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	font-size: 14px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	transition: .3s;
}

.form-control:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

textarea.form-control {
	min-height: 100px;
	resize: vertical;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.checkbox-group {
	display: flex;
	align-items: center;
	gap: 8px;
}

.checkbox-group input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--primary);
	cursor: pointer;
}

.checkbox-group label {
	margin: 0;
	cursor: pointer;
}

.modal-footer {
	padding: 20px 25px;
	border-top: 1px solid #ececec;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}

.btn-cancel {
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	color: #6b7280;
	background: #f3f4f6;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	cursor: pointer;
	transition: .3s;
}

.btn-cancel:hover {
	background: #e5e7eb;
}

.btn-save {
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background: var(--primary);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: .3s;
}

.btn-save:hover {
	background: var(--primary-dark);
}

/* =================================
   Cart Box
================================= */
.cart-box,
.summary-box,
.feature-box {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 12px;
}

.cart-heading {
	display: flex;
	align-items: center;
	padding: 18px 30px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background-color: #042b07;
	border-radius: 12px 12px 0 0;
}

.product-col {
	width: 50%;
}

.price-col {
	width: 17%;
}

.qty-col {
	width: 22%;
}

.total-col {
	width: 6%;
}

.cart-item {
	padding: 25px 30px;
	border-bottom: 1px solid #ececec;
}

.cart-item:last-child {
	border-bottom: none;
}

 

.product-image {
	width: 95px;
	height: 95px;
	background: #F8F8F8;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-details h5 {
	font-size: 21px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #202020;
}

.product-details p {
	font-size: 14px;
	color: #6b7280;
	margin-bottom: 10px;
	max-width: 210px;
	line-height: 1.6;
}

.product-size {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 2px 30px;
	border-radius: 30px;
	border: 1px solid #A7D8B7;
	color: var(--primary);
	background: #F2FFF7;
	font-size: 14px;
;
	font-weight: 600;
}

.price {
	font-size: 18px;
	font-weight: 600;
	color: #232323;
}

.cart-item-content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	align-items: center;
}

.product-wrapper {
	display: flex;
	align-items: center;
	gap: 18px;
}

.pqt-btns {
	width: 100%;
}

.price-wrapper,
.quantity-wrapper,
.total-wrapper {
	text-align: center;
}

.qty-box {
	width: 110px;
	height: 42px;
	border: 1px solid #ececec;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
	margin: 0 auto;
}

.qty-box button {
	width: 34px;
	height: 42px;
	cursor: pointer;
	color: var(--primary);
	font-size: 20px;
	font-weight: 700;
	transition: .3s;
	background: none;
	border: none;
}

.qty-box button:hover {
	background: #F2FBF5;
}

.qty-box button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.qty-box input {
	width: 42px;
	border: none;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	background: none;
}

.qty-box input:focus {
	outline: none;
}

.total-price {
	color: #202020;
	font-weight: 600;
}

.action-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: end;
	margin-top: 10px;
}

.delete-btn {
	border: 1px solid #ececec;
	color: #dc3545;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
	cursor: pointer;
	background: #fff4f4;
	padding: 5px 10px;
}

.delete-btn:hover {
	background: #dc3545;
	color: #fff;
	border-color: #dc3545;
}

.buy-now-btn {
	padding: 5px 10px;
	font-weight: 600;
	color: var(--primary);
	cursor: pointer;
	transition: .3s;
	display: flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	background-color: rgb(22, 99, 63, .29);
	border: 1px solid rgb(22, 99, 63);
}

.buy-now-btn:hover {
	background: var(--primary);
	transform: translateY(-2px);
	color: white;
}

.cart-footer {
	padding: 22px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #ececec;
}

.continue-shopping {
	color: var(--primary);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	transition: .3s;
}

.continue-shopping:hover {
	color: var(--primary-dark);
}

.clear-cart {
	height: 44px;
	padding: 0 22px;
	border-radius: 8px;
	border: 1px solid var(--primary);
	color: var(--primary);
	font-weight: 600;
	transition: .35s;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	width: max-content;
	background: #fff;
}

.clear-cart:hover {
	background: var(--primary);
	color: #fff;
}

/* =================================
   Order Summary
================================= */
.summary-box {
	padding: 30px;
	position: sticky;
	top: 100px;
}

.summary-box h4 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 28px;
	color: #202020;
}

.summary-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
	font-size: 15px;
	color: #555;
}

.summary-item span:last-child {
	font-weight: 600;
	color: #202020;
}

.summary-item .free {
	color: var(--primary);
	font-weight: 700;
}

.summary-box hr {
	border-color: #ececec;
	margin: 22px 0;
}

.summary-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
}

.summary-total span:first-child {
	font-size: 18px;
	font-weight: 700;
	color: #222;
}

.summary-total .price {
	font-size: 26px;
	font-weight: 700;
	color: #202020;
}

/* =================================
   Secure Box
================================= */
.secure-box {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 18px;
	background: #F7FBF8;
	border: 1px solid #DCEFE4;
	border-radius: 10px;
	margin-bottom: 25px;
}

.secure-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #E8F8EE;
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
}

.secure-box h6 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 4px;
	color: #202020;
}

.secure-box p {
	margin: 0;
	color: #6f6f6f;
	font-size: 14px;
}

/* =================================
   Checkout Button
================================= */
.checkout-btn {
	width: 100%;
	height: 56px;
	border-radius: 10px;
	background: var(--primary);
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: .35s;
	cursor: pointer;
	border: none;
}

.checkout-btn:hover {
	background: var(--brand-green);
	transform: translateY(-2px);
}

.checkout-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
	transform: none;
}

/* =================================
   Feature Boxes
================================= */
.feature-box {
	padding: 14px;
	display: flex;
	align-items: center;
	gap: 18px;
	transition: .35s;
	height: 100%;
	width: 146px;
}

.feature-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-icon {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #F2FBF5;
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
}

.feature-box h6 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 5px;
	color: #202020;
}

.feature-box p {
	margin: 0;
	color: #777;
	font-size: 14px;
}

/* =================================
   Mobile Labels
================================= */
.mobile-title {
	display: none;
	font-size: 14px;
;
	font-weight: 600;
	color: #777;
	margin-bottom: 8px;
}

/* =================================
   Empty Cart
================================= */
.empty-cart {
	text-align: center;
	padding: 60px 20px;
}

.empty-cart i {
	font-size: 80px;
	color: #ddd;
	margin-bottom: 20px;
}

.empty-cart h3 {
	font-size: 24px;
	font-weight: 700;
	color: #202020;
	margin-bottom: 10px;
}

.empty-cart p {
	color: #777;
	margin-bottom: 25px;
}

/* =================================
   Responsive
================================= */
@media (max-width: 1199px) {
	.cart-item {
		padding: 20px;
	}

	.summary-box {
		position: relative;
		top: auto;
	}


}

@media (max-width: 991px) {
	.cart-section {
		padding: 50px 0;
	}

	.cart-item-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.cart-heading {
		display: none !important;
	}

	.cart-item {
		padding: 20px;
	}

	.mobile-title {
		display: block;
	}



	.product-image {
		width: 85px;
		height: 85px;
	}

	.product-details h5 {
		font-size: 20px;
	}

	.summary-box {
		margin-top: 20px;
	}

	.cart-item-content {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.product-wrapper,
	.price-wrapper,
	.quantity-wrapper,
	.total-wrapper,
	.action-wrapper {
		width: 100%;
		text-align: left;
	}

	.action-wrapper {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.qty-box {
		margin: 0;
	}
}

@media (max-width: 767px) {
	.cart-page-hero {
		margin-top: 100px;
	}

	.cart-item-content {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.hero-blob-1 {
		opacity: 0.3;
	}



	.cart-section {
		padding: 40px 0;
	}

	.cart-box,
	.summary-box,
	.feature-box,
	.address-box {
		border-radius: 10px;
	}

	.cart-item {
		padding: 20px;
	}


	.product-image {
		width: 100%;
		max-width: 180px;
		height: auto;
		margin: 0 auto;
	}

	.product-details {
		width: 100%;
	}

	.product-details p {
		max-width: 100%;
	}

	.qty-box {
		width: 120px;
	}

	.cart-footer {
		flex-direction: column;
		gap: 15px;
		align-items: stretch;
	}

	.continue-shopping {
		justify-content: center;
	}

	.clear-cart {
		justify-content: center;
		width: 100%;
	}

	.summary-box {
		padding: 22px;
	}

	.summary-box h4 {
		font-size: 22px;
	}

	.summary-total .price {
		font-size: 24px;
	}

	.feature-box {
		padding: 18px;
	}

	.address-content {
		flex-direction: column;
	}
}

@media (max-width: 575px) {
	.cart-section {
		padding: 30px 0;
	}

	.cart-item-content {
		gap: 15px;
	}

	.cart-item {
		padding: 16px;
	}

	.product-details h5 {
		font-size: 18px;
	}

	.price {
		font-size: 17px;
	}

	.qty-box {
		width: 110px;
	}

	.checkout-btn {
		height: 52px;
		font-size: 16px;
	}

	.feature-icon {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}

	.feature-box h6 {
		font-size: 16px;
	}

	.feature-box p {
		font-size: 14px;
;
	}

	.address-header {
		flex-direction: column;
		gap: 12px;
		align-items: flex-start;
	}

	.add-address-btn {
		width: 100%;
		justify-content: center;
	}

	.action-wrapper {
		flex-direction: column;
		align-items: stretch;
	}

	.buy-now-btn {
		justify-content: center;
	}

	.form-row {
		grid-template-columns: 1fr;
	}
}

/* ═══════════════════════════════════════
   MOBILE NAV OVERLAY
═══════════════════════════════════════ */
.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 22;
	background:
		radial-gradient(circle at 80% 12%, rgba(189, 250, 4, 0.22), transparent 32%),
		linear-gradient(180deg, #fffdf6 0%, var(--bg-cream) 100%);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: start;
	gap: 10px;
	padding: 96px 28px 42px;
	transform: translateX(100%);
	transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open {
	transform: translateX(0);
}

.mobile-nav a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 360px;
	margin: 0 auto;
	padding: 15px 18px;
	border-radius: 16px;
	color: var(--primary);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0;
	background: rgba(255, 255, 255, 0.58);
	border: 1px solid rgba(15, 61, 46, 0.08);
	box-shadow: 0 12px 30px rgba(15, 61, 46, 0.06);
}

.mobile-nav a:hover {
	background: rgba(189, 250, 4, 0.18);
	color: var(--primary);
	transform: translateY(-2px);
}

.mobile-nav a:not(.mobile-nav-action)::after {
	content: "→";
	display: block;
	font-family: Arial, sans-serif;
	font-size: 20px;
	font-weight: 800;
	color: rgba(15, 61, 46);
	margin-left: auto;
}

.mobile-nav .mobile-nav-action {
	justify-content: center;
	gap: 10px;
}

.mobile-nav .mobile-nav-ghost {
	margin-top: 14px;
	border: 1.5px solid var(--primary);
	background: rgba(255, 255, 255, 0.72);
	color: var(--primary);
}

.mobile-nav .mobile-nav-primary {
	border-color: var(--accent);
	background: var(--primary);
	color: var(--white);
	box-shadow: 0 16px 34px rgba(15, 61, 46, 0.22);
}

.mobile-nav .mobile-nav-primary i {
	font-size: 14px;
;
}

.newsletter-box {
	position: relative;
	overflow: hidden;
	padding: 45px 50px;
	background: var(--brand-green);
	border-radius: var(--radius-lg);
	box-shadow: 0 20px 50px rgba(15, 61, 46, .12);
	isolation: isolate;
}

.newsletter-angle {
	position: absolute;
	top: -120px;
	right: -150px;
	width: 330px;
	height: 500px;
	background: var(--accent);
	transform: rotate(26deg);
	z-index: -1;
}

.newsletter-angle::after {
	content: "";
	position: absolute;
	inset: 25px;
	background: rgba(255, 255, 255, .08);
	transform: skewX(-10deg);
}


.newsletter-form-wrap {
	width: 100%;
	max-width: 650px;
}

.newsletter-form {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 6px;
	background: var(--white);
	border-radius: 16px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, .14);
}

.newsletter-input {
	display: flex;
	align-items: center;
	flex: 1;
	min-width: 0;
	gap: 12px;
	padding: 0 16px;
}

.newsletter-input i {
	flex-shrink: 0;
	color: var(--primary);
	font-size: 17px;
}

.newsletter-input input {
	width: 100%;
	height: 52px;
	padding: 0;
	border: 0;
	outline: none;
	background: transparent;
	color: var(--dark);
	font-size: 14px;
}

.newsletter-input input::placeholder {
	color: #999;
}

.newsletter-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	gap: 12px;
	height: 52px;
	padding: 0 24px;
	border: 0;
	border-radius: 12px;
	background: var(--gradient-accent);
	color: var(--brand-green);
	font-size: 14px;
;
	font-weight: 800;
	cursor: pointer;
	transition: var(--transition);
}

.newsletter-form button i {
	font-size: 14px;
;
	transition: transform .3s ease;
}

.newsletter-form button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(189, 250, 4, .3);
}

.newsletter-form button:hover i {
	transform: translateX(5px);
}

.newsletter-form-wrap small {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 12px;
	padding-left: 5px;
	color: rgba(255, 255, 255, .55);
	font-size: 14px;
;
}

.newsletter-form-wrap small i {
	color: var(--accent);
	font-size: 12px;
;
}


/* ---------- Tablet ---------- */

@media (max-width: 991px) {

	.newsletter-box {
		padding: 40px;
	}

	.newsletter-inner {
		justify-content: center;
	}

	.newsletter-form-wrap {
		max-width: 600px;
	}

	.newsletter-angle {
		right: -180px;
		opacity: .3;
	}
}


/* ---------- Mobile ---------- */

@media (max-width: 575px) {

	.newsletter-box {
		padding: 30px 20px;
		border-radius: var(--radius-md);
	}

	.newsletter-inner {
		min-height: auto;
	}

	.newsletter-form {
		flex-direction: column;
		align-items: stretch;
		gap: 6px;
		padding: 6px;
	}

	.newsletter-input {
		width: 100%;
		padding: 0 12px;
	}

	.newsletter-input input {
		height: 48px;
	}

	.newsletter-form button {
		width: 100%;
		height: 48px;
	}

	.newsletter-form-wrap small {
		font-size: 12px;
;
		line-height: 1.5;
	}

	.newsletter-angle {
		right: -250px;
		top: -100px;
		width: 400px;
		height: 450px;
		opacity: .2;
	}
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */


@media(max-width:1199px) {
	.how-connector {
		display: none;
	}

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

@media(max-width:991px) {
	.section-pad {
		padding: 80px 0;
	}

	.hero-section {
		padding-top: 100px;
		min-height: auto;
		padding-bottom: 60px !important;
	}

	.hero-main-img {
		height: 380px;
	}

	.hero-pill-1,
	.hero-pill-2,
	.hero-pill-3 {
		display: none;
	}

	.feat-img-wrap {
		height: 360px;
		margin-bottom: 40px;
	}

	.feat-img-grid {
		grid-template-columns: 1fr;
	}

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

	.testi-card.featured {
		transform: none;
	}

	.testi-card.featured:hover {
		transform: translateY(-6px);
	}

	.testi-proof {
		grid-template-columns: 1fr;
	}

	.science-stats {
		grid-template-columns: 1fr;
	}

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

	.hero-ctas {
		flex-direction: column;
		align-items: flex-start;
	}

	.corp-stat-row {
		flex-direction: column;
		gap: 16px;
	}

	.final-cta-btns {
		flex-direction: column;
		align-items: center;
	}

	.nav-links-list,
	.nav-actions {
		display: none;
	}

	.nav-hamburger {
		display: flex;
	}

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

	.science-visual {
		min-height: auto;
		margin-bottom: 20px;
	}

	.science-hero-card {
		min-height: 320px;
	}

	.about-card {
		grid-template-columns: 1fr;
		padding: 14px;
	}

	.about-image {
		min-height: 360px;
	}

	.corporate-section {
		padding: 80px 0;
	}

	.corporate-section::before {
		inset: 18px 14px;
		border-radius: 26px;
	}

	.corp-img-wrap {
		height: 380px;
	}

	.corp-stat-row {
		grid-template-columns: 1fr;
	}

	.corp-floating-card {
		display: none;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		align-items: flex-start;
	}
}

@media(max-width:768px) {
	.section-pad {
		padding: 60px 0;
	}

	.hero-section {
		min-height: auto;
	}

	.hero-title {
		font-size: 52px;
	}

	.hero-card-wrap {
		display: none;
	}

	.feature-headline {
		font-size: 42px;
	}

	.about-body {
		font-size: 16px;
	}

	.about-section {
		padding: 80px 0;
	}

	.about-card {
		border-radius: 22px;
		padding: 12px;
	}

	.about-quote-mark {
		font-size: 88px;
		top: 18px;
		right: 12px;
	}

	.about-tags {
		margin-top: 28px;
	}

	.about-tag {
		width: 100%;
	}

	.about-proof-grid {
		grid-template-columns: 1fr;
	}

	.about-proof-item {
		min-height: 100px;
	}

	.final-cta-title {
		font-size: 52px;
	}

	.science-title {
		font-size: 48px;
	}

	.container-xl {
		padding: 0 20px;
	}

	.cta-section {
		padding: 80px 0;
	}

	.cta-sub {
		font-size: 17px;
		margin-bottom: 34px;
	}

	.btn-main,
	.btn-secondary-new {
		width: 100%;
		max-width: 320px;
	}

	.science-section {
		padding: 80px 0;
	}

	.science-visual {
		grid-template-columns: 1fr;
		padding: 12px;
		border-radius: 22px;
	}

	.science-hero-card {
		min-height: 340px;
	}

	.science-mini-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}

	.science-img-card {
		height: 190px;
		border-radius: 14px;
	}

	.science-hero-overlay {
		left: 18px;
		right: 18px;
		bottom: 18px;
	}

	.science-hero-overlay .science-img-card-label {
		font-size: 28px;
	}

	.science-img-card-label {
		font-size: 20px;
		left: 16px;
		bottom: 16px;
	}

	.corporate-section .feature-headline {
		font-size: 42px;
	}

	.corporate-section .feature-list li {
		font-size: 14px;
;
		padding: 12px 14px;
	}
}

@media(max-width:575px) {
	.science-mini-grid {
		grid-template-columns: 1fr;
	}

	.science-img-card {
		height: 180px;
	}

	.science-stats {
		gap: 12px;
	}

	.science-stat {
		padding: 20px 18px;
	}
}

/* ═══════════════════════════════════════
   MISC DETAILS
═══════════════════════════════════════ */
.divider-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	display: inline-block;
	margin: 0 10px;
	vertical-align: middle;
}

.green-line {
	display: inline-block;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), var(--primary));
	border-radius: 2px;
	margin-bottom: 4px;
	vertical-align: middle;
	margin-right: 12px;
}

@keyframes countUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.count-animated {
	animation: countUp .6s ease forwards;
}

/* Hover glow for primary buttons */
.about-hero-btn {
	display: inli2ne-flex;
	align-items: center;
	font-weight: 500;
	gap: 10px;
	font-size: calc(14px + 0.3vw);
	padding: 12px 28px;
	border-radius: 999px;
	text-decoration: none;
	transition: transform 0.3s, box-shadow 0.3s;
	border: 2px solid var(--primary);
	color: var(--primary);
}

.about-hero-btn:hover {

	background-color: var(--primary);
	border: 2px solid var(--primary);
	color: var(--white);
}

.btn-feature.lime {
	position: relative;
	overflow: hidden;
}


.btn-feature.lime::after {
	content: '';
	position: absolute;
	inset: -2px;
	background: linear-gradient(135deg, rgba(189, 250, 4, 0.4), rgba(15, 61, 46, 0.4));
	border-radius: inherit;
	opacity: 0;
	transition: var(--transition);
	z-index: -1;
}

.about-hero-btn:hover::after,
.btn-feature.lime:hover::after {
	opacity: 1;
}

/* Feature sections — alternating padding  */
.feat-content-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
}


/* Responsive headings styled individually above */

/* Custom selection */
::selection {
	background: rgba(189, 250, 4, 0.3);
	color: var(--primary);
}

/* Product pages: keep nhance Go/Pro aligned with the index palette */
.main-section {
	background: var(--white);
}

.main-section .section-pad:not(.nhance-go-hero-section):not(.nhance-pro-hero-section):not(.bg-cream):not(.bg-cream-light),
.main-section .pro-journey-section,
.main-section .quality-section {
	background: var(--white);
}


.nhance-go-hero-section,
.nhance-pro-hero-section {
	background: linear-gradient(to bottom,
			rgba(19, 68, 51, 0.5) 0%,
			rgba(22, 75, 56, 0.2) 15%,
			rgba(23, 78, 59, 0.01) 30%,
			transparent 45%) !important;
	padding: 140px 0 0 0px;
	position: relative;
	overflow: hidden;
}

.main-section .title-type-1,
.main-section .hero-title-new {
	color: var(--primary);
}

.main-section .title-type-1 .hl,
.main-section .hero-title-new .accent-text {
	background: linear-gradient(135deg, #0f3d2e, #216a4f);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.main-section .hero-eyebrow-new2,
.main-section .section-label-badge,
.main-section .section-pad>.container-xl>.text-center>.badge-new,
.main-section .section-pad .row .badge-new {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	background: rgba(15, 61, 46, 0.07);
	border: 1px solid rgba(15, 61, 46, 0.12);
	border-radius: 100px;
	padding: 8px 18px;
	color: var(--primary);
	font-size: 14px;
;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 24px;
	box-shadow: 0 10px 30px rgba(15, 61, 46, 0.05);
}

.main-section .cta-section .badge-new {
	display: inline-block;
	background: rgba(189, 250, 4, 0.12);
	border: 1px solid rgba(189, 250, 4, 0.25);
	color: var(--accent);
}

.main-section,
.main-section .btn-plan-select {
	border: 1px solid var(--accent);
	background: linear-gradient(135deg, var(--accent) 0%, #d9ff33 100%);
	color: var(--primary);
	box-shadow: 0 12px 28px rgba(189, 250, 4, 0.25);
}

.main-section .btn-main:hover,
.main-section .btn-plan-select:hover {
	color: var(--primary);
	transform: translateY(-3px);
	box-shadow: 0 18px 38px rgba(189, 250, 4, 0.34);
}

.main-section .btn-secondary-new {
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
}

.main-section .btn-secondary-new:hover {
	border-color: var(--accent);
	background: rgba(189, 250, 4, 0.15);
	color: var(--white);
}

/* Main popup animation */
@keyframes cartConfirmIn {
	0% {
		transform: scale(0.6) rotate(-8deg);
		opacity: 0;
	}

	60% {
		transform: scale(1.12) rotate(3deg);
		opacity: 1;
	}

	100% {
		transform: scale(1) rotate(0deg);
		opacity: 1;
	}
}


/* Closing animation */
@keyframes cartConfirmOut {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	100% {
		transform: translateY(-8px) scale(0.9);
		opacity: 0;
	}
}


/* Expanding wave effect */
@keyframes wavePulse {
	0% {
		transform: scale(1);
		opacity: 0.7;
	}

	70% {
		transform: scale(1.8);
		opacity: 0;
	}

	100% {
		transform: scale(1.8);
		opacity: 0;
	}
}


/* Check icon floating bounce */
@keyframes checkBounce {
	0% {
		transform: translateY(2px) scale(1);
	}

	100% {
		transform: translateY(-4px) scale(1.08);
	}
}

@media(max-width:576px) {

	.cart-popup {
		right: 0px;
		top: 100px;
		width: 100%;
		padding: 22px;
		height: 100%;
	}

	.cart-actions {
		flex-direction: column;
	}

}

/* --------------Related Items------------ */

.related-items-wrapper {
	background: #fff;
	border-radius: 24px;
	padding-left: 30px;
	padding-right: 30px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}


.mini-title {
	display: inline-block;
	font-size: 14px;
;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--primary);
	margin-bottom: 8px;
}


.related-items {
	display: flex;
	flex-direction: column;
	/* gap: 20px; */
}

.related-card {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 10px;
	border-radius: 20px;
	background: #f8fafc;
	transition: 0.35s ease;
	width: auto;
}

.related-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.related-img {
	width: 110px;
	height: 110px;
	border-radius: 18px;
	overflow: hidden;
	flex-shrink: 0;
}

.related-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: 0.5s ease;
}

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

.related-content {
	flex: 1;
}

.related-content h5 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #111;
}

.related-content span {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 14px;
}

.related-btn {
	border: none;
	padding: 12px 22px;
	border-radius: 50px;
	background: var(--primary);
	color: #fff;
	font-weight: 600;
	transition: 0.3s ease;
}

.related-btn:hover {
	transform: translateY(-2px);
	opacity: 0.9;
}

.related-add {
	padding: 5px 18px !important;
	width: max-content !important;
}

@media(max-width:767px) {

	.related-items-wrapper {
		padding: 22px;
	}

	.section-head h3 {
		font-size: 28px;
	}

	.related-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.related-img {
		width: 100%;
		height: 220px;
	}

}

/* ----------------Nutrition POpup------------------------- */
/* Popup Background */

.nutrition-popup {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .65);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: .35s;
	z-index: 99999;
	padding: 20px;
}

.nutrition-popup.active {
	opacity: 1;
	visibility: visible;
}

/* Popup */

.nutrition-popup-content {
	width: 100%;
	max-width: 700px;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 18px;
	padding: 35px;
	position: relative;
	animation: popupScale .35s ease;
}

@keyframes popupScale {

	from {
		transform: scale(.8);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}

}

.popup-close {
	position: absolute;
	top: 15px;
	right: 18px;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background: #f3f3f3;
	cursor: pointer;
	font-size: 28px;
	transition: .3s;
}

.popup-close:hover {
	background: #0F3D2E;
	color: #fff;
}

.nutrition-popup h2 {
	font-size: 30px;
	color: #0F3D2E;
	margin-bottom: 5px;
}

.popup-subtitle {
	color: #666;
	margin-bottom: 25px;
}

/* Form */

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--primary);
}

.form-group label span {
	color: red;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 13px 15px;
	border: 1px solid #d8d8d8;
	border-radius: 10px;
	font-size: 15px;
	transition: .3s;
	outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: #0F3D2E;
	box-shadow: 0 0 0 3px rgba(15, 61, 46, .1);
}

textarea {
	resize: vertical;
}

.payment-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #F4F8F4;
	border: 2px dashed #0F3D2E;
	padding: 18px 20px;
	border-radius: 12px;
	margin: 25px 0;
}

.payment-box strong {
	color: #0F3D2E;
	font-size: 26px;
}

.book-btn {
	width: 100%;
	border: none;
	padding: 16px;
	background: var(--white);
	color: var(--primary);
	border: 2px solid var(--primary);
	border-radius: 12px;
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
	transition: .3s;
}

.book-btn:hover {
	background: var(--primary);
	color: var(--white);
}

/* Responsive */

@media(max-width:768px) {

	.nutrition-popup-content {
		padding: 25px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.nutrition-popup h2 {
		font-size: 24px;
	}

	.payment-box strong {
		font-size: 22px;
	}

}

/* ==================Partner With Us Popup Modal========================== */
.partner-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .65);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	z-index: 99999;
	padding: 20px;
}

.partner-modal.active {
	opacity: 1;
	visibility: visible;
}

.partner-modal-content {
	background: #fff;
	width: 100%;
	max-width: 750px;
	max-height: 90vh;
	overflow: auto;
	border-radius: 18px;
	padding: 35px;
	position: relative;
}

.partner-close {
	position: absolute;
	right: 15px;
	top: 15px;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	font-size: 28px;
}

.partner-desc {
	margin-bottom: 20px;
	color: #666;
}

.benefits {
	background: #f7faf7;
	padding: 18px;
	border-radius: 12px;
	margin-bottom: 25px;
}

.benefits ul {
	padding-left: 20px;
	margin-top: 10px;
	list-style: disc;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-bottom: 20px;
}

.form-grid input,
textarea {
	width: 100%;
	padding: 13px;
	border: 1px solid #ddd;
	border-radius: 8px;
}

textarea {
	margin-bottom: 20px;
}

.submit-btn {
	width: 100%;
	padding: 15px;
	background: #0F3D2E;
	color: #fff;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
}

.thank-you {
	text-align: center;
	padding: 40px 20px;
}

.thank-you h2 {
	color: #0F3D2E;
	margin-bottom: 15px;
}

@media(max-width:768px) {

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

	.partner-modal-content {
		padding: 25px;
	}

}

/* ---------------Plan Modal----------------- */
.plan-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .7);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	z-index: 99999;
	padding: 20px;
}

.plan-modal.active {
	opacity: 1;
	visibility: visible;
}

.plan-modal-box {
	width: 100%;
	max-width: 700px;
	max-height: 90vh;
	overflow: auto;
	background: #fff;
	border-radius: 18px;
	padding: 35px;
	position: relative;
}

.plan-close {
	position: absolute;
	top: 15px;
	right: 18px;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	font-size: 28px;
}

.plan-title {
	color: #0F3D2E;
	margin-bottom: 5px;
}

.plan-price {
	font-size: 32px;
	color: #0F3D2E;
	font-weight: 700;
	margin-bottom: 25px;
}

.plan-section {
	margin: 20px 0;
}

.plan-section h4 {
	margin-bottom: 10px;
	color: #0F3D2E;
}

.plan-section ul {
	padding-left: 20px;
}

.plan-section li {
	margin-bottom: 8px;
}

.plan-section li i {
	color: var(--primary);
}

.bullet-list {
	list-style: disc;
	padding-left: 25px;
	margin: 15px 0;
}

.bullet-list li {
	display: list-item;
	margin-bottom: 8px;
	margin-left: 30px;
}

.plan-book {
	width: 100%;
	margin-top: 25px;
	background: #0F3D2E;
	color: #fff;
	border: none;
	padding: 15px;
	border-radius: 10px;
	cursor: pointer;
	font-size: 17px;
}

@media(max-width:768px) {

	.plan-modal-box {
		padding: 25px;
	}

	.plan-price {
		font-size: 26px;
	}

}

  

/* ═══════════════════════════════════════
   EXPERT / CONTACT PAGE — Classic Modern Redesign
═══════════════════════════════════════ */
.expert-hero {
	min-height: 100vh;
	padding: 140px 24px 100px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;

	background: linear-gradient(to bottom,
			rgba(19, 68, 51, 0.5) 0%,
			rgba(22, 75, 56, 0.2) 15%,
			rgba(23, 78, 59, 0.01) 30%,
			transparent 45%);
}

@keyframes expertBlob1 {

	0%,
	100% {
		transform: scale(1) translate(0, 0);
	}

	50% {
		transform: scale(1.08) translate(-20px, 15px);
	}
}

@keyframes expertBlob2 {

	0%,
	100% {
		transform: scale(1) translate(0, 0);
	}

	50% {
		transform: scale(1.06) translate(15px, -10px);
	}
}

/* Watermark text */
.expert-hero .watermark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: clamp(100px, 18vw, 260px);
	color: rgba(15, 61, 46, 0.5);
	font-family: serif;
	white-space: nowrap;
	pointer-events: none;
	letter-spacing: 6px;
	user-select: none;
}

/* ── Container ── */
.expert-container {
	width: 100%;
	max-width: 1280px;
	margin: auto;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 64px;
	align-items: start;
	position: relative;
	z-index: 2;
}

/* ═══════════ LEFT — Info Panel ═══════════ */

/* Tag / eyebrow */
.expert-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 9px 20px;
	background: rgba(15, 61, 46, 0.07);
	border: 1px solid rgba(15, 61, 46, 0.13);
	border-radius: 100px;
	color: var(--primary);
	font-size: 14px;
;
	font-weight: 800;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	margin-bottom: 26px;
	backdrop-filter: blur(8px);
	box-shadow: 0 4px 16px rgba(15, 61, 46, 0.06);
	transition: var(--transition);
}

.expert-tag:hover {
	background: rgba(15, 61, 46, 0.12);
	box-shadow: 0 8px 24px rgba(15, 61, 46, 0.12);
}

.expert-tag i {
	color: var(--accent);
	font-size: 14px;
;
}

/* Title */
.expert-title {
	font-weight: 500;
	font-size: clamp(40px, 5.5vw, 66px);
	line-height: 1.06;
	color: var(--primary);
	margin-bottom: 22px;
	letter-spacing: 0.5px;
}

.expert-title span {
	background: linear-gradient(135deg, #5c9000 0%, #7dc200 50%, #BDFA04 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* Description */
.expert-desc {
	max-width: 560px;
	color: var(--text-muted);
	font-size: 16px;
	line-height: 1.95;
	margin-bottom: 42px;
}

/* ── Contact Cards ── */
.contact-grid {
	display: grid;
	gap: 16px;
}

.contact-card {
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	padding: 26px 28px;
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 8px 32px rgba(15, 61, 46, 0.07), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.contact-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--accent), var(--primary));
	border-radius: 4px 0 0 4px;
	opacity: 0;
	transition: var(--transition);
}

.contact-card:hover {
	transform: translateY(-6px) translateX(4px);
	box-shadow: 0 20px 50px rgba(15, 61, 46, 0.13), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
	border-color: rgba(189, 250, 4, 0.35);
}

.contact-card:hover::before {
	opacity: 1;
}

.contact-top {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
}

.contact-icon {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--primary) 0%, #1a5c42 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	font-size: 19px;
	box-shadow: 0 10px 24px rgba(15, 61, 46, 0.20);
	flex-shrink: 0;
	transition: var(--transition);
}

.contact-card:hover .contact-icon {
	transform: rotate(-6deg) scale(1.05);
	box-shadow: 0 14px 30px rgba(15, 61, 46, 0.28);
}

.contact-card h4 {
	color: var(--primary);
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 1px;

	letter-spacing: 0.3px;
}

.contact-card .contact-top p {
	font-size: 14px;
;
	color: var(--text-muted);
	margin: 0;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.contact-card>p {
	color: var(--text-muted);
	font-size: 13.5px;
	line-height: 1.65;
	margin: 0;
	padding-left: 4px;
}

.contact-card a {
	color: var(--primary);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	padding-left: 4px;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.contact-card a::after {
	content: '→';
	opacity: 0;
	transform: translateX(-6px);
	transition: var(--transition);
	font-size: 14px;
;
}

.contact-card a:hover {
	color: #5c9000;
}

.contact-card a:hover::after {
	opacity: 1;
	transform: translateX(0);
}

/* ── Trust Badges ── */
.trust-badge {
	margin-top: 36px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.trust-badge span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(15, 61, 46, 0.10);
	padding: 10px 18px;
	border-radius: 100px;
	color: var(--primary);
	font-size: 14px;
;
	font-weight: 700;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 14px rgba(15, 61, 46, 0.06);
	transition: var(--transition);
	cursor: default;
}

.trust-badge span:hover {
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(15, 61, 46, 0.22);
}

.trust-badge span:hover i {
	color: var(--accent);
}

.trust-badge i {
	color: #6aab00;
	font-size: 14px;
	transition: var(--transition);
}

/* ═══════════ RIGHT — Form Panel ═══════════ */
.expert-form-wrap {
	position: sticky;
	top: 100px;
}

.expert-form {
	background: linear-gradient(145deg, #0d3626 0%, #0F3D2E 40%, #10432f 70%, #0a2e22 100%);
	padding: 50px 46px;
	border-radius: 32px;
	box-shadow:
		0 40px 90px rgba(7, 28, 21, 0.32),
		0 0 0 1px rgba(189, 250, 4, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.07);
	position: relative;
	overflow: hidden;
}

/* Form decorative elements */
.expert-form::before {
	content: '';
	position: absolute;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(189, 250, 4, 0.12) 0%, transparent 70%);
	top: -120px;
	right: -100px;
	pointer-events: none;
}

.expert-form::after {
	content: '';
	position: absolute;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(189, 250, 4, 0.07) 0%, transparent 70%);
	bottom: -60px;
	left: -60px;
	pointer-events: none;
}

/* Subtle grid pattern overlay */
.expert-form .form-pattern {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 32px 32px;
	pointer-events: none;
}

.form-title {
	color: var(--white);
	text-align: center;
	font-weight: 500;
	font-size: clamp(32px, 4vw, 48px);
	margin-bottom: 8px;
	position: relative;
	z-index: 2;
	letter-spacing: 0.5px;
}

.form-title .accent-word {
	color: var(--accent);
}

.form-subtitle {
	color: rgba(255, 255, 255, 0.62);
	margin-bottom: 32px;
	font-size: 14px;
;
	letter-spacing: 0.5px;
	position: relative;
	z-index: 2;
}

/* Divider under subtitle */
.form-divider {
	width: 48px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), #8fc800);
	border-radius: 2px;
	margin: 0 auto 30px;
	position: relative;
	z-index: 2;
}

.form-group {
	margin-bottom: 16px;
	position: relative;
	z-index: 2;
}

/* Input icon — must sit above the input field */
.form-group .fi-icon {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(189, 250, 4, 0.65);
	font-size: 14px;
	pointer-events: none;
	z-index: 5;
	transition: color 0.3s ease;
	line-height: 1;
}

/* Textarea icon sits at the top */
.form-group:has(textarea) .fi-icon {
	top: 18px;
	transform: none;
}

.expert-form input,
.expert-form select,
.expert-form textarea {
	width: 100%;
	border: none;
	outline: none;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	padding: 16px 20px 16px 46px;
	border-radius: 14px;
	font-size: 14px;
	transition: var(--transition);
	backdrop-filter: blur(8px);
	position: relative;
	z-index: 2;
}

.expert-form textarea {
	resize: none;
	height: 130px;
	padding-top: 16px;
	line-height: 1.6;
}

.expert-form input::placeholder,
.expert-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.42);
	font-size: 13.5px;
}

.expert-form select {
	color: rgba(255, 255, 255, 0.7);
	appearance: none;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(189,250,4,0.7)' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 18px center;
}

.expert-form option {
	color: #1a2e14;
	background: #fff;
}

.expert-form input:focus,
.expert-form textarea:focus,
.expert-form select:focus {
	border-color: rgba(189, 250, 4, 0.50);
	background: rgba(255, 255, 255, 0.11);
	box-shadow: 0 0 0 3px rgba(189, 250, 4, 0.08);
}

.expert-form .form-group:focus-within .fi-icon {
	color: var(--accent);
}

/* Submit button */
.submit-btn {
	width: 100%;
	border: none;
	cursor: pointer;
 	color: var(--bg-cream);
	padding: 17px 24px;
	border-radius: 14px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	transition: var(--transition);
	margin-top: 8px;
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 0 12px 28px rgba(189, 250, 4, 0.22);
}

.submit-btn:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(189, 250, 4, 0.36);
background: var(--primary);
}

.submit-btn:active {
	transform: translateY(-1px);
}

.submit-btn i {
	font-size: 14px;
;
	transition: transform 0.3s ease;
}

.submit-btn:hover i {
	transform: translateX(4px);
}

/* Privacy note */
.privacy-text {
	text-align: center;
	margin-top: 18px;
	font-size: 11.5px;
	color: rgba(255, 255, 255, 0.42);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	position: relative;
	z-index: 2;
}

.privacy-text i {
	color: rgba(189, 250, 4, 0.55);
	font-size: 14px;
;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
	.expert-container {
		gap: 44px;
	}

	.expert-form {
		padding: 42px 36px;
	}
}

@media (max-width: 991px) {
	.expert-hero {
		padding: 120px 20px 80px;
	}

	.expert-container {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.expert-form-wrap {
		position: static;
	}

	.expert-title {
		font-size: 46px;
	}

	.form-title {
		font-size: 38px;
	}

	.contact-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
}

@media (max-width: 640px) {
	.expert-hero {
		padding: 110px 16px 70px;
	}

	.expert-form {
		padding: 34px 24px;
		border-radius: 24px;
	}

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

	.form-title {
		font-size: 30px;
	}

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

	.contact-card {
		padding: 20px 22px;
	}

	.trust-badge span {
		font-size: 14px;
;
		padding: 9px 14px;
	}
}


/* --------------NHANCE GO And NHANCE PRO CSS--------------------- */

/* ----------------------------------------
       QUALITY SECTION (your provided CSS)
    ---------------------------------------- */
.quality-section {
	overflow: hidden;
	padding: 96px 0;
	background: var(--white);
}

.quality-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.9fr);
	align-items: center;
	gap: clamp(48px, 7vw, 96px);
}

.quality-content h2 {
	margin: 0 0 24px;
	color: var(--primary);
	font-size: clamp(42px, 5vw, 58px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: 0;
}

.quality-desc {
	max-width: 690px;
	margin: 0 0 34px;
	color: var(--primary);
	font-size: 17px;
	line-height: 1.55;
}

.quality-checks {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px 46px;
	max-width: 760px;
	margin-bottom: 40px;
}

.quality-check {
	display: grid;
	grid-template-columns: 24px 1fr;
	gap: 13px;
	align-items: start;
	color: var(--primary);
	font-size: 16px;
	line-height: 1.35;
}

.quality-check i {
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border: 2px solid var(--secondary);
	border-radius: 50%;
	color: var(--secondary);
	font-size: 14px;
;
}

.quality-features {
	margin-bottom: 20px;
}

.quality-badge {
	display: grid;
	justify-content: center;
	align-items: center;
	justify-items: center;
	padding: 20px;
	border: 1px solid rgba(20, 85, 4, 0.3);
	border-radius: 12px;
	transition: transform 0.35s ease, box-shadow 0.35s ease;

}

.quality-badge:hover {
	box-shadow: 0 12px 24px rgba(20, 85, 4, 0.3);
	transform: translateY(-4px);

}

.quality-badge span {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 2px solid var(--primary);
	border-radius: 50%;
	color: var(--primary);
	font-size: 22px;
}

.quality-badge strong {
	font-size: 14px;
	font-weight: 800;
	line-height: 1.45;
	text-transform: uppercase;
}

.quality-image {
	overflow: hidden;
	min-height: 530px;
	border-radius: 24px;
	background: var(--bg-light);
	position: relative;
	padding: 20px;
}

.quality-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scaleX(-1) !important;

}


.quality-feature-card {
	background: white;
	padding: 20px;
	border-radius: 16px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(15, 61, 46, 0.08);
	height: 100%;
}

.quality-feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(20, 85, 4, 0.3);
	border: 1px solid rgba(20, 85, 4, 0.3);

}

.quality-feature-card span {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	background: rgba(15, 61, 46, 0.08);
	border-radius: 12px;
	color: var(--primary);
	font-size: 24px;
}

.quality-feature-card h5 {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 8px;
	color: var(--primary);
}

.quality-feature-card p {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	margin: 0;
}

.quality-stats {
	display: flex;
	gap: 16px;
	margin-top: 24px;
	justify-content: center;
}

.quality-stat-box {
	background: white;
	padding: 16px 24px;
	border-radius: 16px;
	text-align: center;
	flex: 1;
	border: 1px solid rgba(15, 61, 46, 0.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.quality-stat-box h3 {
	font-size: 24px;
	font-weight: 800;
	color: var(--primary);
	margin: 0 0 4px 0;
}

.quality-stat-box p {
	font-size: 14px;
;
	color: #666;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.quality-image-wrap {
	border-radius: 24px;
	overflow: hidden;
}

/* Responsive - Bootstrap overrides and extra */
@media (max-width: 991px) {
	.quality-section {
		padding: 72px 0;
	}

	.quality-image,
	.quality-image img {
		min-height: 420px;
	}

	.title-type-1 {
		font-size: 32px;
	}

	.quality-stats {
		margin-bottom: 24px;
	}
}

@media (max-width: 768px) {
	.quality-feature-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.quality-feature-card span {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}

	.quality-stat-box h3 {
		font-size: 20px;
	}

	.quality-badges {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media (max-width: 640px) {
	.quality-section {
		padding: 56px 0;
	}

	.quality-checks,
	.quality-badges {
		grid-template-columns: 1fr;
	}

	.quality-badges {
		gap: 20px;
	}

	.quality-badge {
		justify-items: start;
		grid-template-columns: 48px 1fr;
		align-items: center;
		text-align: left;
	}

	.quality-stats {
		flex-direction: column;
	}

	.title-type-1 {
		font-size: 28px;
	}

	.quality-desc {
		font-size: 15px;
	}
}

/* Animation classes */
.reveal-zoom {
	transition: all 0.6s ease;
}

.reveal-left {
	transition: all 0.6s ease;
}

.animate-float {
	animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(0px);
	}
}

/* Fixed Floating Info */
.hero-floating-info {
	position: fixed;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 1000;
}

.info-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--white);
	font-size: 21px;
	transition: all 0.3s ease;
}

.info-icon:hover {
	color: var(--primary);
	transform: scale(1.1);
	box-shadow: 0 8px 30px rgba(189, 250, 4, 0.4);
}

/* Offer Gift Launcher */
.offer-gift-widget {
	position: fixed;
	left: 24px;
	top: 90%;
	z-index: 1005;
	transform: translateY(-50%);
}

/* ========================================= NHANCE ASSESSMENT MODAL ========================================= */
.gut-test-modal {
	position: fixed;
	inset: 0;
	z-index: 10060;
	display: grid;
	place-items: center;
	padding: 24px;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.35s ease, visibility 0.35s ease;
	overflow-y: auto;
}

.gut-test-modal.open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.gut-test-card {
	position: relative;
	width: min(1060px, 94vw);
	max-height: 92vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 28px;
background: linear-gradient(145deg, #ffffff, #f5f8f6);
	box-shadow: 0 35px 90px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(189, 250, 4, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.12);
	color: var(--white);
	transform: translateY(24px) scale(0.97);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gut-test-modal.open .gut-test-card {
	transform: translateY(0) scale(1);
}

.gut-test-card::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(circle at 100% 0%, rgba(189, 250, 4, 0.14), transparent 30%), radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.06), transparent 30%);
}

.gut-test-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-accent);
	z-index: 3;
}


.gut-test-close {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 20;
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.2);
	color: var(--white);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	cursor: pointer;
	transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.gut-test-close:hover {
	background: #c8422b;
	border-color: #c8422b;
	color: var(--white);
	transform: rotate(90deg);
	box-shadow: 0 8px 24px rgba(200, 66, 43, 0.35);
}

.gut-test-close i {
	font-size: 15px;
}

.gut-test-brand {
	position: relative;
	z-index: 2;
	padding: 24px 70px 15px;
	text-align: center;
	color: var(--primary);
	font-family: "Playfair Display", serif;
	font-size: 27px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.gut-test-brand::first-letter {
	color: var(--primary);
}

.gut-test-progress {
	position: relative;
	z-index: 3;
	height: 5px;
	margin: 0 32px;
	overflow: hidden;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.14);
}

.gut-test-progress span {
	display: block;
	width: 0%;
	height: 100%;
	border-radius: inherit;
	background: var(--gradient-accent);
	box-shadow: 0 0 16px rgba(189, 250, 4, 0.55);
	transition: width 0.4s ease;
}

.gut-test-step {
	position: relative;
	z-index: 2;
	flex: 1;
	overflow-y: auto;
	padding: 30px 38px 34px;
	scrollbar-width: thin;
	scrollbar-color: rgba(189, 250, 4, 0.6) transparent;
}

.gut-test-step::-webkit-scrollbar {
	width: 5px;
}

.gut-test-step::-webkit-scrollbar-track {
	background: transparent;
}

.gut-test-step::-webkit-scrollbar-thumb {
	background: rgba(189, 250, 4, 0.6);
	border-radius: 20px;
}

/* ========================================= STEP HEADING ========================================= */
.gut-test-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;

    margin-bottom: 12px;
    padding: 6px 12px;

    border: 1px solid rgba(15, 61, 46, 0.14);
    border-radius: 100px;

    background: #f5f8f6;

    color: var(--primary);

    font-size: 14px;
;
    font-weight: 800;
    letter-spacing: 1.4px;
    line-height: 1;

    text-transform: uppercase;

    box-shadow: 0 3px 10px rgba(15, 61, 46, 0.06);
}
.gut-test-title {
	margin: 0 0 24px;
	color: var(--primary);
	font-family: "Playfair Display", serif;
	font-size: clamp(25px, 3vw, 34px);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.4px;
}

.gut-test-form {
	display: grid;
	background: #ffffff;
    border: 1px solid rgba(15, 61, 46, 0.10);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow:0 4px 10px rgba(15, 61, 46, 0.03),0 12px 30px rgba(15, 61, 46, 0.05);
    transition: box-shadow 0.3s ease;
}
.gut-test-form:hover {
    box-shadow:
        0 6px 14px rgba(15, 61, 46, 0.04),
        0 18px 40px rgba(15, 61, 46, 0.07);
}
.gut-test-input-box {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
@media (max-width: 767px) {
    .gut-test-input-box {
        grid-template-columns: 1fr;
        gap: 12px;
    }
	.gut-test-card {
	    width: min(760px, 88vw);
	}
	.gut-test-step {
	    padding: 30px 10px 34px;
	}
	.inputs-linebox{
		display: block;
	}
}
/* ========================================= LABELS ========================================= */
.gut-test-label,
.gut-test-measurement>label,
.gut-test-sub-options>label {
	display: block;
	margin: 3px 0 2px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
;
	font-weight: 700;
	letter-spacing: 0.2px;
}

.gut-test-label small {
	display: inline-block;
	margin-left: 5px;
	color: rgba(255, 255, 255, 0.52);
	font-size: 14px;
;
	font-weight: 500;
}
.gut-test-label {
    display: block;
    margin: 0 0 7px 3px;

    color: var(--brand-green);

    font-size: 14px;
;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
/* Required / active label */
.gut-test-input:focus + .gut-test-label {
    color: var(--primary);
}
/* ========================================= INPUTS ========================================= */
.gut-test-input,
.gut-test-option {
	width: 100%;
	min-height: 52px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.96);
	color: #17211c;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}


/* Input */
.gut-test-input {
    width: 100%;
    height: 54px;
    padding: 0 17px;

    border: 1px solid rgba(15, 61, 46, 0.14);
    border-radius: 12px;

    background: #ffffff;
    color: var(--text-main);

    font-size: 14px;
    font-weight: 500;

    outline: none;

    box-shadow:
        0 2px 5px rgba(15, 61, 46, 0.03),
        0 6px 18px rgba(15, 61, 46, 0.04);

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


/* Placeholder */
.gut-test-input::placeholder {
    color: #8a938e;
    font-weight: 400;
}
/* Hover */
.gut-test-input:hover {
    border-color: rgba(22, 99, 63, 0.28);

    box-shadow:
        0 3px 8px rgba(15, 61, 46, 0.05),
        0 8px 22px rgba(15, 61, 46, 0.06);
}

.gut-test-input:focus {
    background: #ffffff;
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(22, 99, 63, 0.08),
        0 8px 22px rgba(15, 61, 46, 0.07);
}


.gut-test-input.is-invalid,
.gut-test-input.is-invalid:focus {
	border-color: #dc3545;
	box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.13);
}

/* ========================================= MEASUREMENTS ========================================= */
.gut-test-measurement {
	display: grid;
	gap: 6px;
}
.measurement-input {
    position: relative;
}

.measurement-input .gut-test-input {
    padding-right: 48px;
}

.unit-label {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: #66716b;
    font-size: 14px;
;
    font-weight: 800;
    pointer-events: none;
}

/* =========================
   DOB INPUT
========================= */

.gut-dob-wrapper {
    position: relative;
}

.gut-dob-placeholder {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
    pointer-events: none;
    z-index: 3;
}

.gut-dob-wrapper .gut-test-input {
    position: relative;
    z-index: 2;
    width: 100%;
    background: #fff;
}

/* Hide native date value when empty */
.gut-dob-wrapper .gut-test-input:not(:focus):not(:valid) {
    color: transparent;
}

/* Show selected date */
.gut-dob-wrapper .gut-test-input:focus,
.gut-dob-wrapper .gut-test-input:valid {
    color:  #999;
}

/* Hide DOB placeholder when date is selected */
.gut-dob-wrapper:has(.gut-test-input:valid) .gut-dob-placeholder {
    display: none;
}

/* Calendar icon */
.gut-dob-wrapper .gut-test-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.7;
}

/* Keep icon visible while text is hidden */
.gut-dob-wrapper .gut-test-input:not(:focus):not(:valid)::-webkit-calendar-picker-indicator {
    opacity: 0.7;
}
/* ========================================= RADIO / INLINE CHOICES ========================================= */
.gut-test-gender {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Gender option */
.gut-test-gender label {
    flex: 1;
    min-width: 110px;
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 0 16px;

    border: 1px solid rgba(22, 99, 63, 0.14);
    border-radius: 12px;

    background: #ffffff;
    color: var(--text-main);

    font-size: 14px;
;
    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 2px 6px rgba(15, 61, 46, 0.03),
        0 7px 18px rgba(15, 61, 46, 0.04);

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

/* Text / icon */
.gut-test-gender label span {
    color: var(--primary);
    font-size: 14px;
;
    font-weight: 700;
}

/* Radio */
.gut-test-gender input {
    width: 16px;
    height: 16px;
    margin: 0;

    accent-color: var(--primary);
    cursor: pointer;
}

/* Hover */
.gut-test-gender label:hover {
    border-color: rgba(22, 99, 63, 0.32);
    background: #f7faf8;

    box-shadow:
        0 4px 10px rgba(15, 61, 46, 0.06),
        0 10px 24px rgba(15, 61, 46, 0.07);

    transform: translateY(-1px);
}

/* Selected option */
.gut-test-gender label:has(input:checked) {
    border-color: var(--primary);
    background: #f2f8f5;
    color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(22, 99, 63, 0.07),
        0 8px 20px rgba(15, 61, 46, 0.08);
}

.gut-test-gender label:has(input:checked) span {
    color: var(--primary);
}

/* Mobile */
@media (max-width: 480px) {
    .gut-test-gender {
        gap: 9px;
    }

    .gut-test-gender label {
        min-width: calc(50% - 5px);
        min-height: 50px;
        padding: 0 10px;
    }
}
/* ========================================= CHOICE CARDS ========================================= */
.gut-test-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.gut-test-card-option {
    position: relative;

    display: flex;
    align-items: center;
    gap: 10px;

    min-height: 50px;
    padding: 12px 14px;

    border: 1px solid rgba(22, 99, 63, 0.13);
    border-radius: 12px;

    background: #ffffff;
    color: var(--text-main);

    cursor: pointer;

    box-shadow:
        0 2px 6px rgba(15, 61, 46, 0.03),
        0 6px 16px rgba(15, 61, 46, 0.04);

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

/* Hover */
.gut-test-card-option:hover {
    border-color: rgba(22, 99, 63, 0.32);
    background: #f7faf8;

    transform: translateY(-2px);

    box-shadow:
        0 4px 10px rgba(15, 61, 46, 0.05),
        0 10px 24px rgba(15, 61, 46, 0.07);
}

/* Selected */
.gut-test-card-option.selected {
    border-color: var(--primary);
    background: #f2f8f5;
    color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(22, 99, 63, 0.06),
        0 8px 20px rgba(15, 61, 46, 0.08);
}

/* Radio */
.gut-test-card-option input {
    flex: 0 0 auto;

    width: 17px;
    height: 17px;

    margin: 0;

    accent-color: var(--primary);
    cursor: pointer;
}

/* Text */
.gut-test-card-option span {
    color: var(--text-main);

    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.gut-test-card-option.selected span {
    color: var(--primary);
}

/* Keyboard focus */
.gut-test-card-option:has(input:focus-visible) {
    outline: none;
    border-color: var(--primary);
    box-shadow:
        0 0 0 3px rgba(22, 99, 63, 0.10),
        0 8px 20px rgba(15, 61, 46, 0.06);
}

/* Tablet */
@media (max-width: 768px) {
    .gut-test-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 480px) {
    .gut-test-card-grid {
        grid-template-columns: 1fr;
    }
}
/* ========================================= SLIDERS ========================================= */
.gut-test-slider-group {
    display: grid;
    gap: 8px;
    padding: 4px 16px;

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

/* Label */
.gut-test-slider-group label {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--text-main);

    font-size: 14px;
    font-weight: 600;
}

.gut-test-slider-group label span {
    color: var(--primary);
    font-weight: 800;
}

/* Slider */
.gut-test-slider-group input[type="range"] {
    width: 100%;
    height: 5px;

    margin: 6px 0;

    appearance: none;
    -webkit-appearance: none;

    border-radius: 100px;

    background: #e8eee9;

    outline: none;

    cursor: pointer;
}

/* Chrome / Safari thumb */
.gut-test-slider-group input[type="range"]::-webkit-slider-thumb {
    width: 18px;
    height: 18px;

    appearance: none;
    -webkit-appearance: none;

    border: 3px solid #ffffff;
    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 0 0 2px rgba(22, 99, 63, 0.25),
        0 4px 10px rgba(15, 61, 46, 0.18);

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.gut-test-slider-group input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.12);

    box-shadow:
        0 0 0 3px rgba(22, 99, 63, 0.12),
        0 5px 14px rgba(15, 61, 46, 0.20);
}

/* Firefox thumb */
.gut-test-slider-group input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;

    border: 3px solid #ffffff;
    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 0 0 2px rgba(22, 99, 63, 0.25),
        0 4px 10px rgba(15, 61, 46, 0.18);

    cursor: pointer;
}

/* Firefox track */
.gut-test-slider-group input[type="range"]::-moz-range-track {
    height: 5px;

    border-radius: 100px;
    background: #e8eee9;
}

/* Focus */
.gut-test-slider-group input[type="range"]:focus-visible {
    outline: none;
}

.gut-test-slider-group:has(input[type="range"]:focus-visible) {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(22, 99, 63, 0.07),
        0 8px 20px rgba(15, 61, 46, 0.07);
}
/* ========================================= SUB OPTIONS ========================================= */
.gut-test-sub-options {
	display: grid;
	gap: 7px;
	padding: 13px;
	border-left: 2px solid var(--accent);
	border-radius: 0 12px 12px 0;
	background: rgba(189, 250, 4, 0.055);
}

/* ========================================= TOGGLE ========================================= */
.gut-test-toggle-group {
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
}

.gut-test-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
;
	font-weight: 600;
	cursor: pointer;
}

.gut-test-toggle input {
	width: 18px;
	height: 18px;
	accent-color: var(--accent);
}

/* ========================================= ERRORS ========================================= */
.gut-field-error {
	display: block;
	width: 100%;
	margin-top: 2px;
	color: #ff8585 !important;
	font-size: 14px;
;
	font-weight: 600;
	line-height: 1.4;
	text-align: left;
}
 
/* ========================================= ACTIONS ========================================= */
.gut-test-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 18px;
}
.inputs-linebox {
    display: flex;
    gap: 10px;
}

.inputs-linebox > div {
    flex: 1;
}

.inputs-linebox input {
    width: 100%;
}
.gut-test-back,
.gut-test-next {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
	min-height: 48px;
	border-radius: 100px;
 	font-size: 14px;
;
	font-weight: 800;
	cursor: pointer;
	transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.gut-test-back {
    padding: 0 20px;

    border: 1px solid rgba(22, 99, 63, 0.18);
    border-radius: 10px;

    background: #ffffff;
    color: var(--primary);

    box-shadow:
        0 2px 6px rgba(15, 61, 46, 0.04),
        0 6px 16px rgba(15, 61, 46, 0.06);

    transition:
        all 0.25s ease;
}

.gut-test-back:hover {
    background: #f3f8f5;
    border-color: rgba(22, 99, 63, 0.35);

    color: var(--primary);

    transform: translateX(-3px);

    box-shadow:
        0 4px 10px rgba(15, 61, 46, 0.06),
        0 10px 22px rgba(15, 61, 46, 0.09);
}
.gut-test-next {
    flex: 1;
    padding: 0 26px;
    border: 0;
    background: var(--primary);
    color: var(--bg-cream);

    box-shadow:
        0 4px 8px rgba(15, 61, 46, 0.10),
        0 10px 24px rgba(15, 61, 46, 0.16),
        0 18px 40px rgba(15, 61, 46, 0.10);

    transition: all 0.3s ease;
}

.gut-test-next:hover:not(:disabled) {
    background: #154c3b;
    transform: translateY(-2px);

    box-shadow:
        0 6px 12px rgba(15, 61, 46, 0.14),
        0 14px 28px rgba(15, 61, 46, 0.22),
        0 22px 45px rgba(15, 61, 46, 0.14);
}

.gut-test-next:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
}
 

/* /* ==================Result section==================== */
  .health-result-page {
            width: 100%;
            padding: 20px 26px 12px;
        }

        .health-container {
            width: 100%;
            max-width: 1500px;
            margin: 0 auto;
        }

        /* =========================================
           TOP SECTION
        ========================================= */

        .result-top {
            display: grid;
            grid-template-columns: 1.55fr 1fr;
            gap: 18px;
            align-items: stretch;
        }

        .result-heading {
            min-height: 204px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .result-title-row {
            display: flex;
            align-items: center;
            gap: 22px;
            margin-bottom: 8px;
        }

        .success-icon {
            width: 68px;
            height: 68px;
            flex: 0 0 68px;
            border-radius: 50%;
            background: #06a56e;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            box-shadow: 0 8px 20px rgba(0, 139, 93, .15);
        }

        .result-title {
            margin: 0;
            font-size: 29px;
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: -.7px;
            color: #080d13;
        }

        .result-subtitle {
            margin: 0 0 22px 88px;
            color: #161b20;
            font-size: 14px;
        }

        /* =========================================
           SCORE
        ========================================= */

        .score-box {
            min-height: 204px;
            border-radius: 17px;
            background: linear-gradient(135deg, #006d53, #004f3d);
            padding: 21px 23px;
            color: #fff;
            display: flex;
            align-items: center;
        }

        .score-heading {
            font-size: 18px;
            font-weight: 700;
            margin: 0 0 4px;
        }

        .score-heading i {
            margin-left: 6px;
            font-size: 14px;
        }

        .score-content {
            display: flex;
            align-items: center;
            gap: 17px;
            width: 100%;
        }

        .score-circle {
            width: 130px;
            height: 130px;
            flex: 0 0 130px;
            border-radius: 50%;
            background: conic-gradient(
                #ffb81c 0deg 230deg,
                #08a96e 230deg 360deg
            );
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .score-circle::before {
            content: "";
            position: absolute;
            width: 101px;
            height: 101px;
            border-radius: 50%;
            background: #00634b;
        }

        .score-number {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .score-number strong {
            display: block;
            font-size: 39px;
            line-height: 1;
            font-weight: 800;
        }

        .score-number span {
            font-size: 14px;
        }

        .score-description {
            font-size: 15px;
            line-height: 1.75;
            margin: 0;
        }

        .score-description strong {
            color: #ffdf00;
            font-size: 16px;
        }

        /* =========================================
           META
        ========================================= */

        .assessment-meta {
            margin-top: -87px;
            margin-right: calc(38% + 9px);
            border: 1px solid var(--border);
            border-radius: 14px;
            min-height: 78px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: #fff;
            position: relative;
            z-index: 5;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            border-right: 1px solid #e4e9e7;
        }

        .meta-item:last-child {
            border-right: 0;
        }

        .meta-icon {
            width: 30px;
            min-width: 30px;
            font-size: 22px;
            color: #101923;
            text-align: center;
        }

        .meta-label {
            display: block;
            font-size: 12px;
;
            color: #222;
            margin-bottom: 2px;
        }

        .meta-value {
            display: block;
            font-size: 14px;
;
            font-weight: 700;
            white-space: nowrap;
        }

        .download-link {
            color: #006b4f;
        }

        /* =========================================
           METRICS
        ========================================= */

        .metrics-grid {
            margin-top: 26px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .metric-card {
            border: 1px solid var(--border);
            border-radius: 15px;
            padding: 17px;
            min-height: 214px;
            background: #fff;
        }

        .metric-card.bmr {
            border-color: #dcebe5;
        }

        .metric-card.tdee {
            border-color: #d9e8f6;
        }

        .metric-card.bmi {
            border-color: #e8ddf8;
        }

        .metric-card.whtr {
            border-color: #f0e1d7;
        }

        .metric-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 13px;
        }

        .metric-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .bmr .metric-icon {
            color: #087550;
            background: #eaf7f1;
        }

        .tdee .metric-icon {
            color: #1579d1;
            background: #eaf3fc;
        }

        .bmi .metric-icon {
            color: #7040c8;
            background: #f0e9fc;
        }

        .whtr .metric-icon {
            color: #ed731b;
            background: #fff1e7;
        }

        .metric-name {
            font-size: 16px;
            font-weight: 700;
            margin: 0;
        }

        .metric-info {
            font-size: 14px;
;
            margin-left: 5px;
            color: #222;
        }

        .metric-value {
            font-size: 30px;
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -.7px;
            margin-bottom: 10px;
        }

        .bmr .metric-value {
            color: #087550;
        }

        .bmi .metric-value {
            color: #7040c8;
        }

        .metric-value small {
            font-size: 14px;
            color: #111;
            font-weight: 700;
        }

        .metric-description {
            font-size: 14px;
;
            margin-bottom: 12px;
        }

        .metric-badge {
            display: inline-block;
            padding: 8px 10px;
            border-radius: 7px;
            font-size: 14px;
;
            font-weight: 600;
        }

        .bmr .metric-badge,
        .bmi .metric-badge,
        .whtr .metric-badge {
            color: #267251;
            background: #eaf7f1;
        }

        .tdee .metric-badge {
            color: #1673c6;
            background: #eaf3fc;
        }

        /* =========================================
           ANALYSIS
        ========================================= */

        .analysis-grid {
            margin-top: 22px;
            display: grid;
            grid-template-columns: 1.04fr .96fr;
            gap: 16px;
        }

        .panel {
            border: 1px solid var(--border);
            border-radius: 15px;
            background: #fff;
        }

        .overview-panel {
            padding: 18px;
        }

        .panel-title-row {
            display: flex;
            align-items: flex-start;
            gap: 13px;
            margin-bottom: 7px;
        }

        .panel-title-icon {
            width: 38px;
            color: #007352;
            font-size: 30px;
            text-align: center;
        }

        .panel-title {
            margin: 0;
            font-size: 18px;
            font-weight: 800;
        }

        .panel-description {
            margin: 0 0 18px 51px;
            font-size: 14px;
;
        }

        .overview-item {
            min-height: 75px;
            display: grid;
            grid-template-columns: 40px 1.1fr .72fr 1.5fr;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid #edf0ef;
        }

        .overview-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #eaf8f2;
            color: #007352;
        }

        .overview-name {
            font-size: 14px;
;
            font-weight: 700;
        }

        .overview-name span {
            display: block;
            font-weight: 400;
        }

        .status-badge {
            justify-self: start;
            padding: 7px 9px;
            border-radius: 5px;
            font-size: 12px;
;
            font-weight: 600;
            white-space: nowrap;
        }

        .status-moderate {
            color: #ed6b1b;
            background: #fff1e8;
        }

        .status-deficient {
            color: #d52335;
            background: #fff0f1;
        }

        .status-attention {
            color: #e5671d;
            background: #fff1e8;
        }

        /* =========================================
           RISK METER
        ========================================= */

        .risk-meter {
            width: 100%;
            height: 8px;
            border-radius: 10px;
            background: linear-gradient(
                to right,
                #20a86b 0%,
                #20a86b 25%,
                #ffb719 42%,
                #ffb719 68%,
                #f36c21 79%,
                #e52232 100%
            );
            position: relative;
        }

        .risk-marker {
            position: absolute;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #fff;
            border: 3px solid #ec7318;
        }

        .marker-1 {
            left: 58%;
        }

        .marker-2 {
            left: 50%;
        }

        .marker-3 {
            left: 51%;
        }

        .overview-legend {
            display: flex;
            justify-content: center;
            gap: 45px;
            margin-top: 17px;
            font-size: 14px;
;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .legend-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .legend-low {
            background: #119b63;
        }

        .legend-medium {
            background: #f6a91b;
        }

        .legend-high {
            background: #e72b35;
        }

        /* =========================================
           VISCERAL FAT
        ========================================= */

        .visceral-panel {
            padding: 18px;
        }

        .visceral-title {
            font-size: 18px;
            font-weight: 800;
            margin: 0 0 18px;
        }

        .visceral-main {
            display: grid;
            grid-template-columns: 190px 1fr;
            gap: 17px;
            align-items: center;
        }

        .visceral-illustration {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: #fff1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: auto;
        }

        .visceral-illustration i {
            font-size: 64px;
            color: #d9252e;
        }

        .visceral-risk {
            color: #c72027;
            font-size: 21px;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .visceral-copy {
            font-size: 14px;
;
            line-height: 1.7;
            margin: 0;
        }

        .visceral-scale {
            margin-top: 12px;
        }

        .scale-bar {
            height: 9px;
            border-radius: 10px;
            background: linear-gradient(
                to right,
                #2aaa67 0%,
                #2aaa67 25%,
                #ffb91b 40%,
                #ffb91b 65%,
                #f36b21 78%,
                #e5232f 100%
            );
            position: relative;
        }

        .scale-marker {
            position: absolute;
            top: 50%;
            left: 76%;
            transform: translate(-50%, -50%);
            width: 13px;
            height: 13px;
            background: #fff;
            border: 3px solid #ed6d19;
            border-radius: 50%;
        }

        .scale-labels {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            text-align: center;
            margin-top: 13px;
            font-size: 12px;
;
            line-height: 1.5;
        }

        .scale-labels strong {
            display: block;
            font-size: 14px;
;
        }

        /* =========================================
           WHAT'S GOOD
        ========================================= */

        .whats-good {
            margin-top: 15px;
            border-radius: 12px;
            padding: 13px 14px;
            background: #f0f5f2;
        }

        .good-title {
            display: flex;
            align-items: center;
            gap: 9px;
            color: #006b4f;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 9px;
        }

        .good-check {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #08a46d;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .good-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 7px 25px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .good-list li {
            font-size: 14px;
;
        }

        .good-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #087550;
            margin-right: 8px;
        }

        /* =========================================
           URGENT
        ========================================= */

        .urgent-alert {
            margin-top: 15px;
            min-height: 126px;
            border: 1px solid #f1c8cb;
            border-radius: 14px;
            background: #fff5f5;
            display: flex;
            align-items: center;
            gap: 25px;
            padding: 14px 32px;
        }

        .alert-icon {
            width: 115px;
            flex: 0 0 115px;
            text-align: center;
        }

        .alert-icon i {
            font-size: 70px;
            color: #d91f2b;
        }

        .alert-content h3 {
            margin: 0 0 7px;
            color: #bc1d26;
            font-size: 19px;
            font-weight: 800;
        }

        .alert-content p {
            margin: 0 0 4px;
            font-size: 14px;
;
        }

        .alert-content strong {
            color: #c8232b;
            font-size: 14px;
;
        }

        /* =========================================
           CONSULTATION
        ========================================= */

        .consultation-box {
            margin-top: 17px;
            min-height: 218px;
            border: 1px solid #dfe6e3;
            border-radius: 15px;
            display: grid;
            grid-template-columns: 1.1fr .78fr 1fr;
            overflow: hidden;
            background: #fff;
        }

        .insights-content {
            padding: 17px 25px;
        }

        .eyebrow {
            color: #087550;
            font-size: 14px;
;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .insights-content h2 {
            margin: 0 0 9px;
            font-size: 20px;
            font-weight: 800;
        }

        .insights-content p {
            font-size: 14px;
;
            margin-bottom: 10px;
        }

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

        .insight-list li {
            font-size: 14px;
;
            margin-bottom: 7px;
        }

        .insight-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #087550;
            margin-right: 9px;
        }

        .consultation-image {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fbfdfc;
            border-left: 1px solid #edf0ef;
            border-right: 1px solid #edf0ef;
        }

        .consultation-image img {
            width: 100%;
            max-width: 230px;
            height: 190px;
            object-fit: contain;
        }

        .consultation-content {
            padding: 17px 20px 13px;
        }

        .consultation-content h3 {
            margin: 0 0 8px;
            font-size: 17px;
            color: #006b4f;
            font-weight: 800;
        }

        .consultation-content p {
            font-size: 14px;
;
            line-height: 1.65;
            margin-bottom: 9px;
        }

        .consult-list {
            list-style: none;
            padding: 0;
            margin: 0 0 10px;
        }

        .consult-list li {
            font-size: 14px;
;
            margin-bottom: 6px;
        }

        .consult-list i {
            color: #087550;
            width: 20px;
        }

        .consult-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            min-height: 43px;
            border-radius: 8px;
            background: #007451;
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            transition: .25s ease;
        }

        .consult-btn:hover {
            background: #005b40;
            color: #fff;
        }

        /* =========================================
           PLANS
        ========================================= */

        .plans-cta {
            margin-top: 16px;
            min-height: 55px;
            border-radius: 11px;
            background: #f2f7f4;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 7px 22px;
        }

        .plans-title {
            display: flex;
            align-items: center;
            gap: 14px;
            color: #086a4e;
            font-size: 15px;
            font-weight: 700;
        }

        .gift-icon {
            color: #e64c3d;
            font-size: 29px;
        }

        .explore-btn {
            min-width: 190px;
            height: 37px;
            border: 1px solid #006b4f;
            border-radius: 7px;
            color: #006b4f;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            font-size: 14px;
;
            font-weight: 700;
        }

        .explore-btn:hover {
            background: #006b4f;
            color: #fff;
        }

        /* =========================================
           SECURITY
        ========================================= */

        .security-note {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            padding-top: 7px;
            font-size: 14px;
;
            color: #2c3330;
        }

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

        @media (max-width: 1200px) {

            .health-result-page {
                padding: 18px;
            }

            .assessment-meta {
                margin-right: 40%;
            }

            .metric-card {
                min-height: 205px;
            }

            .visceral-main {
                grid-template-columns: 145px 1fr;
            }

            .visceral-illustration {
                width: 125px;
                height: 125px;
            }
        }

        @media (max-width: 992px) {

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

            .result-heading {
                min-height: auto;
            }

            .score-box {
                min-height: 190px;
            }

            .assessment-meta {
                margin: 15px 0 0;
            }

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

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

            .consultation-box {
                grid-template-columns: 1fr 1fr;
            }

            .consultation-content {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 767px) {

            .health-result-page {
                padding: 12px;
            }

            .result-title-row {
                gap: 13px;
            }

            .success-icon {
                width: 52px;
                height: 52px;
                flex-basis: 52px;
                font-size: 26px;
            }

            .result-title {
                font-size: 21px;
            }

            .result-subtitle {
                margin-left: 65px;
                font-size: 14px;
;
            }

            .score-box {
                padding: 18px;
            }

            .score-content {
                flex-direction: column;
                text-align: center;
            }

            .assessment-meta {
                grid-template-columns: 1fr 1fr;
            }

            .meta-item:nth-child(2) {
                border-right: 0;
            }

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

            .overview-item {
                grid-template-columns: 38px 1fr;
                gap: 9px;
                padding: 10px 0;
            }

            .overview-item .status-badge,
            .overview-item .risk-meter {
                grid-column: 2;
            }

            .overview-legend {
                gap: 15px;
            }

            .visceral-main {
                grid-template-columns: 1fr;
            }

            .visceral-risk,
            .visceral-copy {
                text-align: center;
            }

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

            .urgent-alert {
                flex-direction: column;
                text-align: center;
                padding: 20px;
                gap: 5px;
            }

            .alert-icon {
                width: auto;
            }

            .consultation-box {
                grid-template-columns: 1fr;
            }

            .consultation-image {
                min-height: 180px;
            }

            .consultation-content {
                grid-column: auto;
            }

            .plans-cta {
                flex-direction: column;
                gap: 12px;
                padding: 14px;
                text-align: center;
            }

            .plans-title {
                justify-content: center;
            }

            .explore-btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {

            .assessment-meta {
                grid-template-columns: 1fr;
            }

            .meta-item {
                border-right: 0 !important;
                border-bottom: 1px solid #e4e9e7 !important;
            }

            .meta-item:last-child {
                border-bottom: 0 !important;
            }

            .result-title {
                font-size: 19px;
            }

            .score-circle {
                width: 115px;
                height: 115px;
                flex-basis: 115px;
            }

            .score-circle::before {
                width: 90px;
                height: 90px;
            }

            .score-number strong {
                font-size: 34px;
            }
        } 
/* Animations */
/* -------------------------------------
          NHANCE GO PAGE CSS START
---------------------------------------- */
/* ---------------------------------- */
.nhance-go-hero {
	position: relative;
	min-height: 700px;
	display: flex;
	align-items: center;
	overflow: hidden;

	background-image:
		linear-gradient(90deg, rgba(8, 28, 21, 0.82) 0%, rgba(8, 28, 21, 0.58) 45%, rgba(8, 28, 21, 0.25) 100%);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-blend-mode: multiply;
}

.nhance-go-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.08),
			rgba(0, 0, 0, 0.25));
	pointer-events: none;
}

.nhance-go-hero .container {
	position: relative;
	z-index: 2;
}

.nhance-go-hero-content {
	max-width: 620px;
	padding: 40px;
	border-radius: 24px;

}

.nhance-go-hero .section-eyebrow {
	display: inline-block;
	margin-bottom: 18px;
	padding: 8px 18px;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}


.nhance-go-hero .hero-subtitle {
	color: #e9f8ef;
	font-size: 1.35rem;
	font-weight: 600;
	margin-bottom: 18px;
}

.nhance-go-hero p {
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 32px;
	max-width: 560px;
}

.nhance-go-hero .btn-main {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 28px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nhance-go-hero .btn-main:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 992px) {
	.nhance-go-hero {
		min-height: 600px;
		background-position: center;
	}

	.nhance-go-hero-content {
		max-width: 100%;
		padding: 30px;
	}
}

@media (max-width: 768px) {
	.nhance-go-hero {
		min-height: auto;
		padding: 80px 0;
	}

	.nhance-go-hero-content {
		padding: 24px;
		border-radius: 18px;
	}

	.nhance-go-hero h1 {
		font-size: 2.2rem;
	}

	.nhance-go-hero .hero-subtitle {
		font-size: 1.1rem;
	}

	.nhance-go-hero p {
		font-size: 1rem;
	}
}

/* ---------------------------------------------------------------------
        NHANCE PRO PAge CSS
        --------------------------------------------------------- */
.pro-journey-section {
	background-color: var(--white);
}

.left-pro-journey {
	/* Column should not be sticky, the inner content should be */
}

.pro-product-shot {
	position: sticky;
	top: 120px;
	z-index: 10;
}

.pro-journey-content {
	padding-left: 30px;
}

@media (max-width: 991px) {
	.pro-product-shot {
		position: relative;
		top: 0;
		margin-bottom: 30px;
	}

	.pro-journey-content {
		padding-left: 0;
	}
}

.pro-journey-title {
	font-size: 2.8rem;
	font-weight: 500;
	color: var(--primary);
	margin-bottom: 30px;
}

.journey-package-box {
	background: #fff;
	border: 1px solid rgba(15, 61, 46, 0.08);
	border-radius: 24px;
	padding: 25px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	margin-bottom: 40px;
}

.package-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 15px 0;
}

.package-item:not(:last-child) {
	border-bottom: 1px dashed rgba(15, 61, 46, 0.1);
}

.package-img {
	width: 70px;
	height: 70px;
	background: var(--bg-cream);
	border-radius: 12px;
	overflow: hidden;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.package-img img {
	width: 80%;
	height: auto;
}

.package-plus-icon {
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 24px;
	height: 24px;
	background: var(--accent);
	color: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: bold;
	border: 2px solid #fff;
	z-index: 2;
}

.package-info h4 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 5px;
}

.package-info p {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin: 0;
	line-height: 1.4;
}

.inclusion-list {
	list-style: none;
	padding: 0;
	margin: 0 0 40px 0;
}

.inclusion-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 18px 0;
	border-bottom: 1px solid rgba(15, 61, 46, 0.05);
}

.inclusion-label {
	flex: 1;
}

.inclusion-label h5 {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 4px;
}

.inclusion-label p {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin: 0;
}

.inclusion-value {
	font-weight: 700;
	color: var(--secondary);
	font-size: 0.95rem;
	text-align: right;
}

.inclusion-value.price {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.btn-plan-select {
	width: 100%;
	background: var(--gradient-accent);
	/* Reference image orange */
	color: white;
	border: none;
	padding: 20px;
	border-radius: 16px;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px rgba(255, 122, 61, 0.2);
}

.btn-plan-select:hover {
	background: var(--gradient-accent2);
	transform: translateY(-3px);
	box-shadow: 0 15px 25px rgba(255, 122, 61, 0.3);
	color: white;
}

@media (max-width: 991px) {
	.pro-journey-content {
		padding-left: 0;
		margin-top: 50px;
	}

	.pro-journey-title {
		font-size: 2.2rem;
	}
}

/* ==================About Us Page ==================== */

.about-section-container {
	position: relative;
	overflow: hidden;
	padding: 115px 0 0 !important;
	background-repeat: no-repeat;
	background-size: cover;

}

.about-tag {
	display: inline-block;
	color: var(--primary);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .5px;
	text-transform: uppercase;
	width: fit-content;

}

/*=========================================
FEATURES
==========================================*/
.feature-row .feature-box {
	display: block;
}

.feature-box {
	text-align: center;
	transition: .35s;
	border-right: 1px solid #c3bebe;
	height: 100%;
}



.feature-box:hover {
	transform: translateY(-6px);
}

.feature-icon {

	width: 70px;
	height: 70px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon i {
	color: var(--primary);
	font-size: 20px;
}

.feature-box h6 {

	margin-top: 14px;
	font-size: 18px;
	font-weight: 700;
	color: var(--primary);
	line-height: 1.4;
	font-family: "Rokkitt", serif;
}

/*=========================================
RESPONSIVE
==========================================*/
@media(max-width:1400px) {
	.about-title {
		font-size: 56px;
	}

	.about-text {
		font-size: 19px;
	}
}

@media(max-width:1399px) {

	.about-section-container {
		background-size: cover;
	}

	.about-image {
		display: none;
	}

	.feature-row {
		display: none;
	}
}

@media(max-width:1199px) {


	.about-title {
		font-size: 48px;
	}

	.about-text {
		font-size: 18px;
		line-height: 1.8;
	}

}

@media(max-width:991px) {
	.about-section-container {
		position: relative;
	}

	.about-section-container::before {
		content: "";
		position: absolute;
		width: 550px;
		height: 550px;
		background: radial-gradient(circle,
				rgba(189, 250, 4, .18) 0%,
				rgba(189, 250, 4, 0) 70%);
		left: -220px;
		top: -180px;
		pointer-events: none;
	}

	.feature-row {
		display: flex;
	}

	.about-section {
		padding: 70px 0;
	}

	.about-title {
		font-size: 42px;
	}

	.about-image {
		margin-top: 45px;
	}

	.image-overlay {
		display: none;
	}

	.feature-box {
		border: none;
	}

}

@media(max-width:767px) {

	.about-title {
		font-size: 34px;
	}

	.about-tag {
		font-size: 16px;
	}

	.about-text {
		font-size: 16px;
		line-height: 1.8;
	}


}

@media(max-width:575px) {

	.about-section {
		padding: 60px 0;
	}

	.about-title {
		font-size: 30px;
		line-height: 1.2;
	}

	.about-text {
		font-size: 15px;
	}


}

.problem-card,
.impact-card {
	padding: 28px 61px;
	background-position: center;
	border-radius: 20px;

}

.svg {
	height: 60px;
	width: 60px;
}

.problem-card {
	background-color: #eddbe6;
}


/* =============Problrm imapact card================= */

.section-heading h3 {
	font-size: 22px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0;
	color: #0a1f44;
}

.section-heading .svg {
	width: 48px;
	height: 48px;
	margin-right: 12px;
}

/* lists */
.problem-list li,
.impact-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 16px;
	line-height: 1.6;
	color: #2b3448;
	margin-bottom: 10px;
}

.problem-list li i {
	color: #e63946;
	margin-top: 4px;
}

.impact-list li i {
	color: #0a7b38;
	margin-top: 4px;
}

.problem-list li span,
.impact-list li span {
	display: inline-block;
}

/* impact note highlight */
.impact-note {
	margin-top: 18px;
	padding: 12px 16px;
	border-radius: 14px;
	background: rgba(10, 123, 56, 0.06);
	border: 1px solid rgba(10, 123, 56, 0.12);
	font-size: 15px;
	color: #0a1f44;
}

@media (max-width: 1291px) {
	.problem-card {
		background-position: 10% 100% !important;
	}

	.impact-card {
		background-position: 60% 100% !important;
	}
}

@media (max-width: 991px) {

	.problem-card,
	.impact-card {
		padding: 24px 22px;
		border-radius: 20px;

	}

	.section-heading h3 {
		font-size: 20px;
	}

	.list-unstyled {
		padding-left: 58px;
		list-style: none;
	}
}

@media (max-width: 576px) {
	.problem-impact-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.problem-card,
	.impact-card {
		padding: 22px 18px;
	}

	.section-heading {
		flex-direction: row;
		gap: 10px;
	}

	.section-heading h3 {
		font-size: 18px;
	}

	.problem-list li,
	.impact-list li {
		font-size: 15px;
		color: #000000;
		font-weight: 600;
	}
}

/* === = =Mission & Vission  ====== */
.mission-vision-section {
	background: #fff;
	padding: 70px 0;
}

.mission-vision-wrapper {
	background: #faf9f5;
	border-radius: 24px;
	padding: 45px 40px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 3px 15px rgba(0, 0, 0, .05);
}

/* Soft center glow */
.mission-vision-wrapper::before {
	content: "";
	position: absolute;
	width: 650px;
	height: 650px;
	background: radial-gradient(circle,
			rgba(168, 209, 167, .22) 0%,
			rgba(255, 255, 255, 0) 70%);
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.content-box {
	position: relative;
	z-index: 2;
	max-width: 420px;
	margin: auto;
}

.icon-circle {
	width: 72px;
	height: 72px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.content-box h3 {
	color: #11743b;
	font-size: 34px;
	font-weight: 800;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.content-box p {
	font-size: 24px;
	line-height: 1.75;
	color: #2d3653;
	margin: 0;
	font-weight: 500;
}

.center-divider {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 320px;
	z-index: 2;
}

.center-divider .line {
	width: 2px;
	flex: 1;
	background: #d7ddd5;
}

.leaf-circle {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #d8e6d6;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 10px 0;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

@media(min-width:992px) {
	.content-box {
		text-align: left !important;
	}

	.icon-circle {
		margin-left: 0;
	}
}

/* Tablet */
@media(max-width:991px) {
	.center-divider {
		min-height: 220px;
		margin: 35px 0;
	}

	.content-box {
		text-align: center !important;
	}

	.icon-circle {
		margin: 0 auto 18px;
	}

	.content-box h3 {
		font-size: 28px;
	}

	.content-box p {
		font-size: 18px;
	}
}

/* Mobile */
@media(max-width:576px) {

	.mission-vision-wrapper {
		padding: 30px 20px;
	}

	.leaf-circle {
		width: 95px;
		height: 95px;
	}

	.leaf-circle img {
		width: 45px;
	}

	.icon-circle {
		width: 62px;
		height: 62px;
	}

	.icon-circle img {
		width: 34px;
	}

	.content-box h3 {
		font-size: 24px;
	}

	.content-box p {
		font-size: 16px;
		line-height: 1.7;
	}
}

/* ==========Team Section======== */
.team-section {
	background: #fff;
}

.team-wrapper {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 22px;
	padding: 28px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .04);
}

.section-heading {
	margin-bottom: 30px;
	display: flex;
	align-items: end;
	gap: 20px;
	justify-content: space-between;
}

.section-heading h2 {
	font-size: 28px;
	font-weight: 600;
	color: #222;
	margin: 0;
}

.team-slider {
	display: flex;
	justify-content: center;
	align-items: center !important;
	align-content: center;
	gap: 10px;
}


/* Slider wrapper and track */
.team-slider-wrapper {
	overflow: hidden;
	width: 100%;
	padding: 20px 0 10px 0;
}

.team-slider-track {
	display: flex;
	transition: transform 0.4s ease;
	will-change: transform;
}

/* Each item width is controlled via flex-basis */
.team-item {
	flex: 0 0 calc(100% / 6);
	/* 6 items visible on desktop */
	padding: 0 8px;
	box-sizing: border-box;
}

/* Team card styles */
.team-card {
	background: #fff;
	border: 1px solid #e9e9e9;
	border-radius: 18px;
	overflow: hidden;
	text-align: center;
	transition: .35s;
	height: 100%;
	box-shadow: 0 3px 8px rgba(0, 0, 0, .4);
}

.team-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 3px 5px rgba(0, 0, 0, .04);
}

.team-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	object-position: top;
	background: #f7f7f7;
}

.team-content {
	padding: 18px 15px 22px;
}

.team-content h4 {
	color: #13803d;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
}

.team-content h6 {
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 8px;
}

.team-content p {
	color: #555;
	font-size: 15px;
	margin-bottom: 10px;
}

.team-content span {
	font-size: 14px;
	color: #444;
	font-weight: 600;
}

/* Responsiveness */
@media(max-width: 1290px) {
	.team-item {
		flex: 0 0 calc(100% / 5);
		padding: 0 8px;
	}
}

@media(max-width: 991px) {
	.section-heading h2 {
		font-size: 22px;
	}

	.team-card img {
		height: 200px;
	}

	.team-item {
		flex: 0 0 calc(100% / 3);
		/* 3 visible */
	}
}

@media(max-width: 767px) {
	.team-wrapper {
		padding: 20px;
	}

	.team-card img {
		height: 250px;
	}

	.section-heading {
		text-align: center;
		flex-direction: column;
		align-items: center;
	}

	.team-item {
		flex: 0 0 calc(100% / 2);
		/* 2 visible on small screens */
	}
}

@media(max-width: 480px) {
	.team-item {
		flex: 0 0 100%;
		/* 1 visible on very small screens */
	}
}
/* ========================== FOUNDING TEAM ================================ */

        /* =========================================================
           SECTION
        ========================================================= */

        .numy-founding-team-section {
            width: 100%;
            padding: 40px 0 60px;
            overflow: hidden;
        }

        .numy-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }


        /* =========================================================
           HEADING
        ========================================================= */

        .numy-founding-heading {
            /*text-align: center;*/
            margin-bottom: 36px;
        }

        .numy-founding-heading h2 {
               color: #11743b;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 18px
        }

        .numy-founding-heading span {
                   color: #11743b;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 18px
        }

        .numy-founding-heading small {
            display: block;
            margin-top: 8px;
            font-size: 15px;
            font-weight: 400;
            color: #7c8698;
        }


        /* =========================================================
           CONTROLS
        ========================================================= */

        .numy-founding-controls {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            width: 100%;
            margin: 0 auto 18px;
            padding: 0 20px;
        }

        .numy-founding-controls button {
            width: 42px;
            height: 42px;

            border-radius: 50%;
            border: 1px solid #dde2ea;

            background: #ffffff;
            color: #1b2430;

            font-size: 15px;

            cursor: pointer;

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

            padding: 0;

            transition:
                background 0.2s ease,
                color 0.2s ease,
                border-color 0.2s ease,
                transform 0.2s ease;
        }

        .numy-founding-controls button:hover {
            background: #1b73e8;
            border-color: #1b73e8;
            color: #ffffff;
        }

        .numy-founding-controls button:active {
            transform: scale(0.94);
        }


        /* =========================================================
           SLIDER WINDOW
        ========================================================= */

        .numy-founding-slider-wrapper {
            width: 100%;
            overflow: hidden;
            position: relative;
        }


        /* =========================================================
           SLIDER TRACK
        ========================================================= */

        #numy-founding-row {
            display: flex;
            flex-wrap: nowrap;

            gap: 14px;

            width: 100%;

            margin: 0;
            padding: 0;

            will-change: transform;

            transform: translate3d(0, 0, 0);

            transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
        }


        /* =========================================================
           CARD ITEM
           DESKTOP = 3 CARDS
        ========================================================= */

        .numy-founder-item {
            flex: 0 0 calc((100% - 48px) / 4);
            width: calc((100% - 48px) / 4);
            max-width: calc((100% - 48px) / 4);

            padding: 0;
            margin: 0;
        }


        /* =========================================================
           CARD
        ========================================================= */

        .numy-founder-card {
            width: 100%;
            height: 100%;
            min-height: 390px;

            background: #ffffff;

            border: 1px solid #e9ecf2;
            border-radius: 16px;

            overflow: hidden;

            display: flex;
            flex-direction: column;

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

        .numy-founder-card:hover {
            box-shadow: 0 15px 35px rgba(20, 30, 50, 0.10);
            transform: translateY(-5px);
            border-color: rgba(27, 115, 232, 0.20);
        }


        /* =========================================================
           IMAGE
        ========================================================= */

        .numy-founder-img {
            width: 100%;
            aspect-ratio: 4 / 4;

            overflow: hidden;

            background: #eef1f5;
        }

        .numy-founder-img img {
            width: 100%;
            height: 100%;

            display: block;

            /*object-fit: cover;*/

            transition: transform 0.5s ease;
        }

        .numy-founder-card:hover .numy-founder-img img {
            transform: scale(1.04);
        }


        /* =========================================================
           CONTENT
        ========================================================= */

        .numy-founder-content {
            flex: 1;

            padding: 20px 20px 24px;

            display: flex;
            flex-direction: column;
        }
        .numy-founder-content h4:nth-of-type(2) {
               font-size: 21px !important;
                  margin: 0 0 12px;

             font-weight: 700;
            line-height: 1;

            color: #16633f;
        }
        .numy-founder-content h4 {
            margin: 0 0 6px;

            font-size: 18px;
            font-weight: 700;
            line-height: 1.3;

            color: #1b2430;
        }

        .numy-founder-content h6 {
            margin: 0 0 12px;

            font-size: 13px;
            font-weight: 600;
            line-height: 1.45;

            color: #16633f;
        }

        .numy-founder-content p {
            margin: 0;

            font-size: 13.5px;
            line-height: 1.6;

            color: #5b6472;
        }


        /* =========================================================
           TABLET
           2 CARDS
        ========================================================= */

        @media (max-width: 991px) {

            .numy-founder-item {
                flex: 0 0 calc((100% - 24px) / 2);
                width: calc((100% - 24px) / 2);
                max-width: calc((100% - 24px) / 2);
            }

            .numy-founder-card {
                min-height: 370px;
            }

        }


        /* =========================================================
           MOBILE
           1 CARD
        ========================================================= */

        @media (max-width: 767px) {

            .numy-founding-team-section {
                padding: 55px 0;
            }

            .numy-founding-heading {
                 margin-bottom: 25px;
            }

            .numy-founding-heading span {
                font-size: 27px;
            }

            .numy-founding-heading small {
                font-size: 15px;
            }

            .numy-founding-controls {
                padding: 0;
                margin-bottom: 20px;
            }

            #numy-founding-row {
                gap: 15px;
            }

       
            .numy-founder-card {
                min-height: auto;
            }

            .numy-founder-img {
                aspect-ratio: 4 / 4;
            }

            .numy-founder-content {
                padding: 22px;
            }

            .numy-founder-content h4 {
                font-size: 21px;
            }

            .numy-founder-content h6 {
                font-size: 14px;
            }

            .numy-founder-content p {
                font-size: 14px;
                line-height: 1.6;
            }

        }


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

        @media (max-width: 480px) {

            .numy-founding-team-section {
                padding: 45px 0;
            }

            .numy-founder-img {
                aspect-ratio: 4 / 3;
            }

            .numy-founding-controls button {
                width: 40px;
                height: 40px;
            }

        }
        
        @media (max-width: 767px) {

    .numy-founder-item {
        flex: 0 0 calc((100% - 15px) / 2);
        width: calc((100% - 15px) / 2);
        max-width: calc((100% - 15px) / 2);
    }

}


/* =========================================================
   SMALL MOBILE — 1 CARD
========================================================= */

@media (max-width: 480px) {

    .numy-founder-item {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }

}

/*============= About CTA ==================*/
.about-health-banner {
	padding: 70px 0;
}

.health-banner {

	background: url("../img/side-img/cta-bg-img-1.png") center center/cover no-repeat;

	min-height: 180px;

	border-radius: 22px;

	padding: 25px 40px;

	overflow: hidden;

	position: relative;

}

.health-banner::before {

	content: "";

	position: absolute;

	inset: 0;

	background: linear-gradient(90deg,
			rgba(0, 35, 18, .82) 0%,
			rgba(0, 35, 18, .55) 35%,
			rgba(0, 0, 0, .10) 65%,
			rgba(0, 0, 0, .08) 100%);

}

.health-banner>.row {

	position: relative;

	z-index: 2;

}

.banner-content {

	display: flex;

	align-items: center;

	gap: 35px;

}

.banner-content h3 {

	color: #fff;

	line-height: 1.15;

	font-weight: 600;

	margin: 0;

}

.banner-content h3 span {

	color: #A8F133;

}

.banner-divider {

	width: 2px;

	height: 150px;

	background: rgba(255, 255, 255, .35);

}

.banner-text {

	color: #fff;

}

.banner-text p {

	margin: 0 0 10px;

	font-size: 24px;

	font-weight: 500;

	line-height: 1.5;

}

.banner-list {

	display: flex;

	flex-wrap: wrap;

	gap: 22px;

	list-style: none;

	margin: 25px 0 0;

	padding: 0;

}

.banner-list li {

	color: #fff;

	font-size: 18px;

	display: flex;

	align-items: center;

	gap: 8px;

}

.banner-list i {

	color: #9be22f;

	font-size: 20px;

}

.health-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	border-radius: 16px;
	background: #4CA71E;
	color: #fff;
	text-decoration: none;
	font-size: 28px;
	font-weight: 700;
	transition: .35s;
	padding: 10px 15px;
}

.health-btn:hover {

	background: #3d9316;

	color: #fff;

}

.health-btn i {

	font-size: 20px;

}

/******** Tablet ********/

@media(max-width:991px) {

	.health-banner {

		padding: 35px 25px;

	}

	.banner-content {

		flex-direction: column;

		align-items: flex-start;

		gap: 20px;

	}

	.banner-divider {

		display: none;

	}

	.banner-content h2 {

		min-width: auto;

		font-size: 42px;

	}

	.banner-text p {

		font-size: 20px;

	}

	.banner-list {

		gap: 14px;

	}

	.health-btn {

		width: 100%;

		min-width: 100%;

		margin-top: 30px;

		font-size: 22px;

	}

}

/******** Mobile ********/

@media(max-width:576px) {

	.health-banner {

		padding: 25px 20px;

		border-radius: 18px;

	}

	.banner-content h2 {

		font-size: 32px;

	}

	.banner-text p {

		font-size: 16px;

	}

	.banner-list {

		flex-direction: column;

		gap: 12px;

	}

	.banner-list li {

		font-size: 15px;

	}

	.health-btn {

		height: 60px;

		font-size: 18px;

	}

}

/* =================Shop Page ====================== */

.shop-section {
	position: relative;
	padding: 90px 0 0px 0px;
	overflow: hidden;
	background: #fff;
	background-image: url("../img/bg-image/shop-hero-banner.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}


.shop-section .container-fluid {
	position: relative;
	z-index: 2;
	min-height: 650px;
	display: flex;
	align-items: center;
}

.shop-content h2 {
	font-size: 58px;
	line-height: 1.08;
	font-weight: 700;
	color: #182443;
	margin-bottom: 25px;
	letter-spacing: -1px;
}

.shop-content h2 span {
	display: block;
	color: #0c6b49;
}

.shop-content p {
	font-size: 22px;
	line-height: 1.8;
	color: #424242;
	max-width: 520px;
}


/* Responsive */

@media(max-width:1199px) {

	.shop-content h2 {
		font-size: 48px;
	}

	.shop-content p {
		font-size: 19px;
	}

}

@media(max-width:991px) {

	.shop-section {
		padding: 70px 0;
		text-align: center;
	}

	.shop-section .container-fluid {
		min-height: 450px;
	}

	.shop-content {
		margin-bottom: 50px;
	}

	.shop-content p {
		margin: auto;
	}

	.shop-image {
		text-align: center;
	}

	.shop-image img {
		width: 100%;
		max-width: 650px;
	}

}

@media(max-width:767px) {

	.shop-section {
		padding: 50px 0;
	}

	.shop-content h2 {
		font-size: 36px;
	}

	.shop-content p {
		font-size: 16px;
		line-height: 1.7;
	}

}

@media(max-width:575px) {

	.shop-content h2 {
		font-size: 30px;
	}

}

/* -------Vetting Section---------- */
.vetting-process {
	padding: 0 0 80px 0;
	background: #fff;
}

.vetting-box {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	padding: 35px 40px;
	background: #fff;
	background-image: url("../img/bg-image/shop-feature-bg-img.png");
	background-size: cover;
	background-position: center;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.vetting-box::before {
	content: "";
	position: absolute;
	left: -180px;
	top: -140px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle,
			rgba(247, 240, 230, .9) 0%,
			rgba(255, 255, 255, 0) 75%);
}

.vetting-box::after {
	content: "";
	position: absolute;
	right: -150px;
	top: -80px;
	width: 450px;
	height: 450px;
	background: radial-gradient(circle,
			rgba(231, 242, 237, .9) 0%,
			rgba(255, 255, 255, 0) 75%);
}

.vetting-box .row {
	position: relative;
	z-index: 2;
}

.vetting-heading-section h2 {
	font-size: 34px;
	font-weight: 700;
	color: #0d6847;
	margin-bottom: 8px;
}

.vetting-heading-section p {
	color: #3f3f3f;
	font-size: 17px;
	margin-bottom: 35px;
}

.process-wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
	flex-wrap: wrap;
}

.process-item {
	text-align: center;
	width: fit-content;
	flex-shrink: 0;
}

.icon-box {
	width: 56px;
	height: 56px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.icon-box img {
	width: 50px;
}

.process-item h6 {
	margin-top: 14px;
	font-size: 14px;
	line-height: 1.45;
	font-weight: 600;
	color: #23313d;
}

.arrow {
	margin-top: 18px;
	color: #0d6847;
	font-size: 18px;
	flex-shrink: 0;
}

.lab-image {
	text-align: right;
}

.lab-image img {
	max-width: 100%;
	width: 240px;
}

/* Responsive */

@media(max-width:991px) {

	.vetting-box {
		padding: 35px 25px;
	}

	.lab-image {
		text-align: center;
		margin-top: 35px;
	}

	.process-wrapper {
		overflow-x: auto;
		padding-bottom: 10px;
	}

	.process-wrapper::-webkit-scrollbar {
		height: 5px;
	}

	.process-wrapper::-webkit-scrollbar-thumb {
		background: #0d6847;
		border-radius: 20px;
	}

}

@media(max-width:767px) {

	.vetting-heading-section h2 {
		font-size: 24px;
	}

	.vetting-heading-section p {
		font-size: 15px;
	}

	.process-wrapper {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.arrow {
		transform: rotate(90deg);
		margin-top: 0;
	}

	.process-item {
		width: 100%;
	}

	.process-item h6 {
		font-size: 16px;
	}

	.icon-box img {
		width: 45px;
	}

	.lab-image img {
		width: 170px;
	}

}

/* ------------------ */
.why-shop-section {
	padding: 70px 0;
	background: #fff;
}


.why-shop-section .container-fluid {
	position: relative;
	z-index: 2;
}

.why-section-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	margin-bottom: 55px;
}

.why-section-title span {
	width: 60px;
	height: 3px;
	background: #0b6d4d;
	border-radius: 50px;
}

.why-section-title h3 {
	margin: 0;
	font-size: 38px;
	font-weight: 600;
	color: #172544;
}

.why-card {
	display: flex;
	align-items: flex-start;
	gap: 18px;
}

.icon {
	width: 78px;
	height: 78px;
	border: 1px solid #d8ddd8;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.icon img {
	width: 38px;
}

.content h5 {
	font-size: 17px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 12px;
}

.content p {
	margin: 0;
	color: #4a4a4a;
	font-size: 19px;
	line-height: 1.7;
}

@media (min-width:1200px) and (max-width:1440.98px) {
	.icon {
		width: 61px;
		height: 61px;
	}
}

/* Desktop */
@media(min-width:1200px) {

	.why-shop-section .row>.col-lg {
		flex: 0 0 20%;
		max-width: 20%;
	}

}

/* Tablet */

@media(max-width:991px) {

	.why-section-title h3 {
		font-size: 34px;
	}

	.why-section-title span {
		width: 45px;
	}

	.why-card {
		padding: 15px;
	}

}

/* Mobile */

@media(max-width:767px) {

	.why-shop-section {
		padding: 50px 0;
	}

	.why-section-title {
		gap: 15px;
		margin-bottom: 40px;
	}

	.why-section-title h3 {
		font-size: 28px;
		text-align: center;
	}

	.why-section-title span {
		width: 30px;
	}

	.why-card {
		align-items: center;
	}

	.icon {
		width: 62px;
		height: 62px;
	}

	.icon img {
		width: 30px;
	}

	.content h5 {
		font-size: 20px;
	}

	.content p {
		font-size: 16px;
	}

}


.comming-soon-section {
	padding: 70px 15px;
	background: #fff;
}

.curated-marketplace {
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 430px;
	padding: 70px 30px;
	border-radius: 22px;
	background: #fff;

	box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.curated-marketplace-content {
	position: relative;
	z-index: 2;
}

/* Left DNA Image */

.curated-marketplace::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 250px;
	height: 100%;

	background-image: url("../img/bg-image/curated-2.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;

	opacity: .5;
	z-index: 1;
}

/* Right Molecule Image */

.curated-marketplace::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 300px;
	height: 100%;
	background-image: url("../img/bg-image/curated-1.png");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: contain;

	opacity: .5;
	z-index: 1;
}

.curated-marketplace-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	text-align: center;
}

.curated-marketplace-content h3 {
	font-size: 38px;
	line-height: 1.1;
	font-weight: 700;
	color: #075b3c;
	margin-bottom: 18px;
}

.curated-marketplace-content h4 {
	font-size: 36px;
	font-weight: 600;
	color: #242424;
	margin-bottom: 18px;
}

.curated-marketplace-content p {
	max-width: 850px;
	margin: 0 auto 35px;
	font-size: 24px;
	line-height: 1.7;
	color: #474747;
}

.notify-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	background: #065e3d;
	color: #fff;
	text-decoration: none;
	padding: 18px 45px;
	border-radius: 12px;
	font-size: 28px;
	font-weight: 600;
	transition: .35s;
	box-shadow: 0 8px 20px rgba(6, 94, 61, .25);
}

.notify-btn:hover {
	background: #044d32;
	color: #fff;
	transform: translateY(-3px);
}

.notify-btn i {
	font-size: 28px;
}

.bottom-text {
	display: block;
	margin-top: 22px;
	color: #555;
	font-size: 20px;
}

/* Responsive */

@media(max-width:1200px) {

	.curated-marketplace-content h3 {
		font-size: 34px;
	}

	.curated-marketplace-content h4 {
		font-size: 30px;
	}

	.curated-marketplace-content p {
		font-size: 20px;
	}

	.notify-btn {
		font-size: 22px;
		padding: 16px 35px;
	}

}

@media(max-width:991px) {

	.curated-marketplace {
		min-height: auto;
		padding: 60px 25px;
	}

	.curated-marketplace::before,
	.curated-marketplace::after {
		width: 180px;
		opacity: .08;
	}

	.curated-marketplace-content h3 {
		font-size: 32px;
	}

	.curated-marketplace-content h4 {
		font-size: 24px;
	}

	.curated-marketplace-content p {
		font-size: 18px;
	}

}

@media(max-width:767px) {

	.comming-soon-section {
		padding: 40px 10px;
	}

	.curated-marketplace {
		padding: 45px 20px;
	}

	.curated-marketplace::before,
	.curated-marketplace::after {
		display: none;
	}

	.curated-marketplace-content h3 {
		font-size: 26px;
	}

	.curated-marketplace-content h4 {
		font-size: 20px;
	}

	.curated-marketplace-content p {
		font-size: 16px;
		line-height: 1.8;
	}

	.notify-btn {
		width: 100%;
		padding: 15px 20px;
		font-size: 18px;
	}

	.notify-btn i {
		font-size: 20px;
	}

	.bottom-text {
		font-size: 16px;
	}

}

.selection-promise {
	background: #fff;
}

.selection-box {
	background: #fff;
	border: 1px solid #e7ece8;
	border-radius: 22px;
	padding: 35px 30px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, .05);
}

.selection-title {
	text-align: center;
	color: #0d6b42;
	font-size: 46px;
	font-weight: 700;
	margin-bottom: 35px;
}

.selection-flow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* gap:18px; */
}

.step-item {
	width: 180px;
	text-align: center;
}

.step-icon {
	width: 92px;
	height: 92px;
	margin: auto;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	margin-bottom: 18px;
}

.step-icon img {
	width: 100%;
	object-fit: cover;
}

.step-item h4 {
	color: #0b6c43;
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 10px;
}

.step-item p {
	color: #444;
	font-size: 15px !important;
	line-height: 1.6;
}

.flow-arrow {
	color: #0b6c43;
	font-size: 34px;
	margin-top: -55px;
}

.final-card {
	width: 250px;
	border: 1px solid #dce7e0;
	border-radius: 18px;
	padding: 35px 25px;
	text-align: center;
	background: #fafaf8;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

.final-icon {
	width: 92px;
	height: 92px;
	margin: auto auto 20px;
}

.final-icon img {
	width: 100%;
}

.final-card h3 {
	color: #0d4f35;
	font-size: 20px;
	line-height: 1.35;
	font-weight: 700;
}

@media(max-width:1280px) {
	.selection-title {
		font-size: 32px;
	}

	.flow-arrow {
		display: none;
	}

	.step-icon {
		height: 80px;
		width: 80px;
	}

	.why-card {
		height: auto;
		display: block;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	.icon {
		align-self: center;
		justify-self: center;
	}

	.content h5 {
		font-size: 17px;
	}

	.final-card h3 {
		font-size: 16px;
	}

	.final-icon,
	.step-icon {
		height: 65px;
		width: 65px;
	}

	.final-card {
		width: 190px;
		padding: 20px;
	}

	.step-item {
		width: 160px;
	}
}

@media(max-width:1200px) {

	.selection-flow {
		flex-wrap: wrap;
		justify-content: center;
	}

	.flow-arrow {
		display: none;
	}

	.step-item {
		width: 230px;
	}

	.final-card {
		width: 280px;
	}

}

@media(max-width:768px) {

	.selection-box {
		padding: 25px 15px;
	}

	.selection-title {
		font-size: 30px;
	}

	.step-item {
		width: 100%;
	}

	.step-item h4 {
		font-size: 22px;
	}

	.step-item p {
		font-size: 16px;
	}

	.final-card h3 {
		font-size: 24px;
	}

}

/* ------------ */
.service-features {
	background: #fff;
}

.service-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	background: #fcfcfb;
	border: 1px solid #e8ece8;
	border-radius: 18px;
	padding: 26px 35px;
	box-shadow: 0 5px 18px rgba(0, 0, 0, .04);
}

.service-item {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 18px;
}

.service-icon {
	width: 56px;
	min-width: 56px;
	height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.service-icon img {
	width: 100%;
}

.service-content h4 {
	margin: 0 0 6px;
	font-size: 22px;
	font-weight: 700;
	color: #1f1f1f;
	line-height: 1.2;
}

.service-content p {
	margin: 0;
	color: #555;
	font-size: 17px;
	line-height: 1.6;
}

.divider {
	width: 1px;
	align-self: stretch;
	background: #dfe6df;
}

@media (max-width:1199px) {

	.service-wrapper {
		flex-wrap: wrap;
	}

	.service-item {
		flex: 0 0 calc(50% - 20px);
	}

	.divider {
		display: none;
	}

}

@media (max-width:767px) {

	.service-wrapper {
		padding: 20px;
		gap: 20px;
	}

	.service-item {
		flex: 0 0 100%;
	}

	.service-icon {
		width: 48px;
		min-width: 48px;
		height: 48px;
	}

	.service-icon img {
		width: 40px;
	}

	.service-content h4 {
		font-size: 18px;
	}

	.service-content p {
		font-size: 15px;
	}

}

/* ------------------- */
.marketplace-banner {
	background: #fff;
}

.marketplace-box {
	display: flex;
	align-items: center;
	background: linear-gradient(90deg, #062f2d 0%, #083731 100%);
	border-radius: 22px;
	overflow: hidden;
	min-height: 180px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
}

.marketplace-lab {
	position: relative;
	overflow: hidden;
}

.marketplace-lab::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right,
			rgba(8, 55, 49, 1) 0%,
			rgba(8, 55, 49, 0.9) 10%,
			rgba(8, 55, 49, 0.5) 25%,
			rgba(8, 55, 49, 0) 100%);
	z-index: 1;
}

.marketplace-lab img {
	position: relative;
	z-index: 2;
	height: 180px;
}

.cta-marketplace-content {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
}

.cta-content-box {
	flex: 1;
	padding: 0 38px;
	height: 100%;
	border-right: 1px solid #fff;
}

.cta-content-box h2 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
	color: #fff;
}

.cta-content-box p {
	margin: 0;
	font-size: 18px;
	line-height: 2 !important;
	color: rgba(255, 255, 255, .9);
}

.brand-box {
	width: 430px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px;
}

.brand-box h5 {
	font-size: 22px;
	margin-bottom: 8px;
	color: #fff;
	font-weight: 700;
}

.brand-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	border-radius: 12px;
	background: #fff;
	color: #0d5d43;
	text-decoration: none;
	font-weight: 700;
	transition: .3s;
}

.brand-btn:hover {
	background: #f4f4f4;
	color: #0d5d43;
}

.brand-icon {
	width: 110px;
	height: 110px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, .03);
}

.brand-icon img {
	width: 90px;
	filter: brightness(0) invert(1);
}

@media(max-width:1280px) {
	.cta-content-box p {
		line-height: 1 !important;
	}

	.cta-content-box {
		padding: 0 14px;

	}

	.cta-content-box h2 {
		font-size: 16px;
	}

	.cta-content-box p {
		font-size: 14px !important;
	}
}

@media(max-width:1200px) {

	.marketplace-box {
		flex-direction: column;
	}

	.cta-marketplace-content {
		flex-direction: column;
		width: 100%;
	}

	.cta-content-box p {
		line-height: 1 !important;
	}

	.cta-content-box,
	.brand-box {
		width: 100%;
		text-align: center;
		padding: 25px;
		border: none;
	}

	.brand-box {
		flex-direction: column;
		gap: 25px;
	}

}

@media(max-width:768px) {

	.marketplace-lab {
		width: 100%;
		height: 140px;
	}

	.marketplace-lab img {
		width: 100%;
		height: auto;
	}

	.cta-content-box h2 {
		font-size: 17px;
	}

	.cta-content-box p,
	.brand-box p {
		font-size: 15px;
	}

	.brand-box h5 {
		font-size: 22px;
	}

	.brand-btn {
		padding: 12px 22px;
	}

}
/* =========================================================
   NEW — FEATURED HEALTH & NUTRITION PRODUCTS
========================================================= */

.featured-products-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.featured-products-section .container-fluid {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADING
========================================================= */

.featured-products-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    text-align: center;
    margin-bottom: 50px;
}

.featured-products-heading > div:nth-child(2) {
    max-width: 850px;
}

.featured-title-line {
    width: 70px;
    height: 3px;
    flex-shrink: 0;
    background: #0b6d4d;
    border-radius: 50px;
}

.featured-subtitle {
    display: inline-block;
    margin-bottom: 8px;
    color: #0b6d4d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.featured-products-heading h2 {
    margin: 0 0 12px;
    color: #172544;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 700;
}

.featured-products-heading p {
    margin: 0;
    color: #555;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   PRODUCTS GRID
========================================================= */

.featured-products-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.featured-product-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e4ebe6;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.featured-product-card:hover {
    transform: translateY(-8px);
    border-color: #cbded4;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image-box {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
     overflow: hidden;
    background:
        radial-gradient(
            circle at center,
            #f5faf7 0%,
            #eef6f1 55%,
            #e7f1eb 100%
        );
}

.product-image-box::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    z-index: 0;
}

.product-image-box img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform .45s ease;
}

.featured-product-card:hover .product-image-box img {
    transform: scale(1.07);
}


/* =========================================================
   BADGE
========================================================= */

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 50px;
    background: #0b6d4d;
    color: #fff;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .7px;
}


/* =========================================================
   WISHLIST
========================================================= */

.product-wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce7e1;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    color: #0b6d4d;
    font-size: 16px;
    cursor: pointer;
    transition: all .3s ease;
}

.product-wishlist:hover {
    background: #0b6d4d;
    color: #fff;
    border-color: #0b6d4d;
    transform: scale(1.08);
}


/* =========================================================
   PRODUCT INFORMATION
========================================================= */

.product-info {
    padding: 24px 22px 22px;
}

.product-category {
    display: block;
    margin-bottom: 7px;
    color: #7a847f;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.product-info h3 {
    margin: 0 0 10px;
    color: #172544;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
}

.product-description {
    min-height: 52px;
    margin: 0 0 15px;
    color: #626262;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   RATING
========================================================= */

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 17px;
}

.product-rating span {
    display: flex;
    gap: 2px;
    color: #e5a900;
    font-size: 12px;
}

.product-rating small {
    color: #777;
    font-size: 12px;
}


/* =========================================================
   PRICE
========================================================= */

.product-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid #edf0ee;
}

.product-price strong {
    order: 1;
    color: #0b6d4d;
    font-size: 25px;
    line-height: 1;
    font-weight: 800;
}

.product-mrp {
    order: 2;
    color: #999;
    font-size: 14px;
    text-decoration: line-through;
}

.product-save {
    order: 3;
    margin-left: auto;
    padding: 5px 8px;
    border-radius: 6px;
    background: #edf7f1;
    color: #0b6d4d;
    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   ADD TO CART
========================================================= */

.product-cart-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
    padding: 13px 18px;
    border: 1px solid #0b6d4d;
    border-radius: 10px;
    background: #0b6d4d;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
}

.product-cart-btn:hover {
    background: #064f39;
    border-color: #064f39;
    transform: translateY(-2px);
}

.product-cart-btn i {
    font-size: 14px;
}


/* =========================================================
   VIEW ALL
========================================================= */

.featured-products-bottom {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.view-all-products {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 25px;
    border: 1px solid #0b6d4d;
    border-radius: 10px;
    color: #0b6d4d;
    background: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all .3s ease;
}

.view-all-products:hover {
    background: #0b6d4d;
    color: #fff;
    transform: translateY(-2px);
}

.view-all-products i {
    transition: transform .3s ease;
}

.view-all-products:hover i {
    transform: translateX(4px);
}


/* =========================================================
   1200px
========================================================= */

@media (max-width: 1199px) {

    .featured-products-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }

    .product-image-box {
        height: 300px;
    }

    .featured-products-heading h2 {
        font-size: 36px;
    }

}


/* =========================================================
   991px
========================================================= */

@media (max-width: 991px) {

    .featured-products-section {
        padding: 65px 0;
    }

    .featured-products-heading {
        gap: 18px;
        margin-bottom: 40px;
    }

    .featured-title-line {
        width: 45px;
    }

    .featured-products-heading h2 {
        font-size: 32px;
    }

    .featured-products-heading p {
        font-size: 16px;
    }

}


/* =========================================================
   767px
========================================================= */

@media (max-width: 767px) {

    .featured-products-section {
        padding: 50px 0;
    }

    .featured-products-heading {
        gap: 10px;
        margin-bottom: 35px;
    }

    .featured-title-line {
        width: 25px;
        height: 2px;
    }

    .featured-subtitle {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .featured-products-heading h2 {
        font-size: 27px;
    }

    .featured-products-heading p {
        font-size: 15px;
        line-height: 1.6;
    }

    .featured-products-wrapper {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .product-image-box {
        height: 280px;
    }

    .product-image-box img {
        height: 215px;
    }

}


/* =========================================================
   575px
========================================================= */

@media (max-width: 575px) {

    .featured-products-heading {
        gap: 0;
    }

    .featured-title-line {
        display: none;
    }

    .featured-products-heading h2 {
        font-size: 25px;
    }

    .featured-products-heading p {
        font-size: 14px;
    }

    .product-image-box {
        height: 260px;
    }

    .product-info {
        padding: 22px 18px 20px;
    }

    .product-info h3 {
        font-size: 20px;
    }

}
/* ================================================
           LIFECARE  SECTION 
================================================== */

.hero-lifecare {
	position: relative;
	padding: 30px;
	min-height: 700px;
	height: 700px;

	background-image: url("../img/side-img/lifecare-bg-img.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;

}

.hero-lifecare::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(8, 28, 21, .82) 0%, rgba(8, 28, 21, .58) 45%, rgba(8, 28, 21, .25) 100%);
	z-index: 1;
	pointer-events: none;
}

.hero-lifecare>* {
	position: relative;
	z-index: 2;
}

.hero-wrapper {
	border-radius: 28px;
	display: flex;
	align-items: center;
	padding: 80px 70px 100px 0;
}

.lifecare-eyebrow {
	color: var(--accent);
}

.hero-content p {
	color: var(--bg-light);
}

.hero-buttons {
	display: flex !important;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.section-eyebrow {
	display: inline-flex;
	padding: 8px 18px;
	border-radius: 50px;
	background: rgba(189, 250, 4, 0.12);
	color: #0F3D2E;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 1;
	box-shadow: 0 0 10px #448014;
	margin-bottom: 10px;
}

.hero-bottom-card {
	margin-top: -60px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {

	.hero-wrapper {
		padding: 40px 30px;
		min-height: auto;
	}


	.hero-content p {
		font-size: 18px;
	}

	.hero-bottom-card {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

}

@media (max-width: 576px) {


	.hero-buttons {
		flex-direction: column;
	}

	.hero-bottom-card {
		grid-template-columns: 1fr;
	}
}

/* Pain Points */
.about-lifecare {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(15, 61, 46, 0.06) 0 25%, transparent 25% 100%),
		linear-gradient(180deg, #fffdf8 0%, #f5f0e8 54%, #ffffff 100%);
	padding-top: 200px;
}

.about-lifecare::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(15, 61, 46, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(15, 61, 46, 0.05) 1px, transparent 1px);
	background-size: 44px 44px;
	-webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 72%);
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 72%);
	pointer-events: none;
}

.about-lifecare .container-xl {
	position: relative;
	z-index: 1;
}

.about-lifecare .text-center {
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
}


.about-lifecare .title-type-1 {
	margin-bottom: 16px;
}

.about-lifecare-lead {
	max-width: 760px;
	margin: 0 auto;
	color: rgba(31, 29, 29, 0.68);
	font-size: 17px;
	line-height: 1.75 !important;
}

.about-lifecare .row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin: 0;
}

.about-lifecare .row>[class*="col-"] {
	width: auto;
	max-width: none;
	padding: 0;
}

.about-lifecare .pain-point-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(15, 61, 46, 0.11);
	border-radius: 8px;
	padding: 34px 30px 28px;
	box-shadow: 0 22px 48px rgba(15, 61, 46, 0.08);
	transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
	height: 100%;
}

.about-lifecare .pain-point-card::before {
	position: absolute;
	top: 24px;
	right: 24px;
	content: "01";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background: var(--primary);
	color: var(--accent);
	font-family: "Inter", sans-serif;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0;
}

.about-lifecare .pain-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	margin-bottom: 26px;
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(189, 250, 4, 0.24), rgba(15, 61, 46, 0.08));
	color: var(--primary);
	font-size: 26px;
	box-shadow: inset 0 0 0 1px rgba(15, 61, 46, 0.1);
	transition: background 0.32s ease, color 0.32s ease, transform 0.32s ease;
}

.about-lifecare .pain-point-card:hover .pain-icon {
	background: var(--primary);
	color: var(--accent);
	transform: translateY(-3px);
}

.about-lifecare .row>div:nth-child(2) .pain-point-card::before {
	content: "02";
	background: #f2f6e9;
	color: var(--primary);
	border: 1px solid rgba(15, 61, 46, 0.12);
}

.about-lifecare .row>div:nth-child(3) .pain-point-card::before {
	content: "03";
	background: #1f1d1d;
	color: var(--white);
}

.about-lifecare .pain-point-card::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 5px;
	background: linear-gradient(90deg, var(--accent), #7fb548, var(--primary));
	transform: scaleX(0.26);
	transform-origin: left;
	transition: transform 0.32s ease;
}

.about-lifecare .pain-point-card:hover {
	transform: translateY(-7px);
	border-color: rgba(15, 61, 46, 0.22);
	box-shadow: 0 30px 60px rgba(15, 61, 46, 0.14);
}

.about-lifecare .pain-point-card:hover::after {
	transform: scaleX(1);
}

.about-lifecare .pain-point-card h4 {
	font-size: clamp(20px, 2vw, 25px);
	font-weight: 600;
	line-height: 1.22;
	color: var(--primary);
	margin-bottom: 14px;
	letter-spacing: 0;
}

.about-lifecare .pain-point-card p {
	color: rgba(31, 29, 29, 0.66);
	font-size: 15px;
	line-height: 1.7 !important;
	margin-bottom: 22px;
}

.about-lifecare .pain-point-card .stat {
	display: block;
	margin-top: auto;
	padding: 15px 16px;
	border-radius: 8px;
	background: #f6f8f1;
	border: 1px solid rgba(15, 61, 46, 0.08);
	color: var(--primary);
	font-family: "Inter", sans-serif;
	font-size: 14px;
;
	font-weight: 700;
	line-height: 1.45 !important;
}

/* Use Cases */
.lifecare-usecases {
	position: relative;
	overflow: hidden;
	padding-top: 60px;
}

.checkbox-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.lifecare-usecases::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;


}

.lifecare-usecases .container-xl {
	position: relative;
	z-index: 1;
}

.lifecare-usecases .text-center {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.lifecare-usecases .badge-new {
	background: #102f23;
	color: var(--white);
	border-radius: 8px;
	padding: 9px 18px;
	letter-spacing: 1.2px;
	box-shadow: 0 16px 34px rgba(15, 61, 46, 0.14);
}

.lifecare-usecases .title-type-1 {
	position: relative;
	display: inline-block;
	margin-bottom: 6px;
}

.lifecare-usecases .title-type-1::after {
	content: "";
	display: block;
	width: 68px;
	height: 3px;
	margin: 16px auto 0;
	background: var(--accent);
}

.lifecare-usecases .row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin: 0;
}

.lifecare-usecases .row>[class*="col-"] {
	width: auto;
	max-width: none;
	padding: 0;
}

.lifecare-usecases .usecase-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(15, 61, 46, 0.1);
	border-radius: 8px;
	padding: 30px 24px 28px;
	box-shadow: 0 20px 48px rgba(15, 61, 46, 0.08);
	transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
	height: 100%;
}

.lifecare-usecases .usecase-card::before {
	content: "01";
	position: absolute;
	top: 18px;
	right: 18px;
	color: rgba(15, 61, 46, 0.13);
	font-family: "Inter", sans-serif;
	font-size: 34px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0;
}

.lifecare-usecases .row>div:nth-child(2) .usecase-card::before {
	content: "02";
}

.lifecare-usecases .row>div:nth-child(3) .usecase-card::before {
	content: "03";
}

.lifecare-usecases .row>div:nth-child(4) .usecase-card::before {
	content: "04";
}

.lifecare-usecases .usecase-card::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 5px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	transform: scaleX(0.18);
	transform-origin: left;
	transition: transform 0.32s ease;
}

.lifecare-usecases .usecase-card:hover {
	transform: translateY(-8px);
	border-color: rgba(15, 61, 46, 0.24);
	box-shadow: 0 32px 70px rgba(15, 61, 46, 0.15);
}

.lifecare-usecases .usecase-card:hover::after {
	transform: scaleX(1);
}

.lifecare-usecases .usecase-card .uc-icon {
	width: 62px;
	height: 62px;
	margin-bottom: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #eef4e5;
	color: var(--primary);
	font-size: 26px;
	box-shadow: inset 0 0 0 1px rgba(15, 61, 46, 0.1);
	transition: transform 0.32s ease, background 0.32s ease, color 0.32s ease;
}

.lifecare-usecases .usecase-card:hover .uc-icon {
	background: var(--primary);
	color: var(--accent);
	transform: translateY(-3px);
}

.lifecare-usecases .usecase-card h4 {
	min-height: 58px;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.22;
	color: var(--primary);
	margin-bottom: 14px;
	letter-spacing: 0;
}

.lifecare-usecases .usecase-card p {
	color: rgba(31, 29, 29, 0.66);
	font-size: 14px;
	line-height: 1.65 !important;
	margin: 0;
}

.lifecare-usecases .usecase-card strong {
	color: #102f23;
	font-weight: 800;
}

/* What's Included — Pillar Grid */
.pillar-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.pillar-item {
	background: var(--white);
	border-radius: 20px;
	padding: 24px 20px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: 0.3s ease;
	border: 1px solid rgba(15, 61, 46, 0.04);
}

.pillar-item:hover {
	transform: translateY(-4px);
}

.pillar-item .pi-icon {
	font-size: 2.2rem;
	margin-bottom: 8px;
}

.pillar-item h5 {
	font-weight: 600;
	color: var(--primary);
	font-size: 1rem;
	margin-bottom: 4px;
}

.pillar-item p {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin: 0;
}

/* Lifecare Supplement Scene */
.lifecare-supplement-scene {
	position: relative;
	min-height: 650px;
	display: flex;
	align-items: center;
	background-image:
		linear-gradient(90deg, rgba(242, 235, 223, 0.98) 0%, rgba(242, 235, 223, 0.9) 28%, rgba(242, 235, 223, 0.2) 52%, rgba(242, 235, 223, 0) 72%),
		url("../img/side-img/lifecare-bg-img.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center right;
	padding: 74px 0;
}

.lifecare-supplement-scene .container-xl {
	width: 100%;
	position: relative;
	z-index: 1;
}

.lifecare-supplement-scene .row {
	min-height: 500px;
	align-items: center !important;
}


.lifecare-supplement-scene .col-lg-6:last-child {
	display: none;
}


.lifecare-supplement-scene .title-type-1 {
	color: #102f23 !important;
	font-size: clamp(34px, 4vw, 50px);
	line-height: 1.04;
	letter-spacing: 0;
	margin: 0 0 22px;
}

.lifecare-supplement-scene .title-type-1 .hl {
	background: none;
	-webkit-text-fill-color: currentColor;
	color: #102f23;
}

.lifecare-supplement-scene .title-type-1::after {
	content: "";
	display: block;
	width: 54px;
	height: 2px;
	margin-top: 22px;
	background: #9f7d2d;
}

.lifecare-supplement-scene .col-lg-6:first-child>p {
	max-width: 470px !important;
	color: #262a22 !important;
	font-size: 15px !important;
	line-height: 1.55 !important;
}




.lifecare-supplement-scene .supplement-benefits>div:last-child {
	border-bottom: none;
}

.lifecare-supplement-scene .supplement-benefits>div>span {
	display: none;
}



.lifecare-supplement-scene .supplement-benefits strong {
	display: inline;
	color: #151a13;
	font-size: 15px;
	font-weight: 800;
}

.lifecare-supplement-scene .btn-main {
	display: none !important;
	background: #102f23 !important;
	color: #fff !important;
	box-shadow: none !important;
	border-radius: 8px;
	padding: 14px 20px;
}

.lifecare-supplement-scene .btn-main span {
	display: block;
	color: rgba(255, 255, 255, 0.72);
}

.lifecare-supplement-scene .btn-main:hover {
	background: #1d4c38 !important;
}

/* ═══════════════════════════════════════════════════════
   LIFECARE — SUPPLEMENT SCENE (Section 5)
═══════════════════════════════════════════════════════ */

.lifecare-supplement-scene {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.lifecare-supplement-scene::before {
	content: '';
	position: absolute;
	top: -80px;
	right: -80px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(15, 61, 46, 0.06), transparent 70%);
	pointer-events: none;
}

/* ── Benefit List ── */
.supplement-benefits {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin: 32px 0 40px;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 18px 22px !important;
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(15, 61, 46, 0.10);
	border-radius: 16px;
	backdrop-filter: blur(6px);
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.benefit-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(15, 61, 46, 0.10);
}

/* Icon circle */
.benefit-icon-wrap {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--primary, #0f3d2e) 0%, #216a4f 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	border-radius: 5px;
	font-size: 18px;
	box-shadow: 0 6px 18px rgba(15, 61, 46, 0.22);
	transition: transform 0.25s ease;
}

.benefit-item:hover .benefit-icon-wrap {
	transform: scale(1.12) rotate(-6deg);
}

/* Text block */
.benefit-text {
	flex: 1;
}

.benefit-text strong {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	color: var(--primary, #0f3d2e);
	margin-bottom: 4px;
}

.benefit-text p {
	margin: 0;
	font-size: 0.92rem;
	color: #4a6358;
	line-height: 1.6;
}

/* ── Sachet / Formula Card ── */
.sachet-card {
	background: linear-gradient(145deg, #0f3d2e 0%, #174f3a 60%, #1c6048 100%);
	border-radius: 28px;
	padding: 48px 40px;
	color: white;
	box-shadow: 0 30px 80px rgba(15, 61, 46, 0.35);
	position: relative;
	overflow: hidden;
	min-height: 340px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sachet-card::before {
	content: '';
	position: absolute;
	top: -60px;
	right: -60px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(189, 250, 4, 0.08);
	pointer-events: none;
}

.sachet-card::after {
	content: '';
	position: absolute;
	bottom: -40px;
	left: -40px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: rgba(189, 250, 4, 0.05);
	pointer-events: none;
}

.sachet-label {
	position: relative;
	z-index: 1;
	font-family: 'Courier New', monospace;
	font-size: 0.9rem;
	line-height: 2;
	color: rgba(255, 255, 255, 0.88);
	background: rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(189, 250, 4, 0.2);
	border-radius: 16px;
	padding: 28px 32px;
	width: 100%;
	letter-spacing: 0.3px;
}

.sachet-label strong {
	color: #bdfa04;
	font-size: 1rem;
}

/* ── Responsive ── */
@media (max-width: 991px) {
	.lifecare-supplement-scene {
		padding: 72px 0;
	}
}

@media (max-width: 767px) {
	.lifecare-supplement-scene {
		padding: 56px 0;
	}

	.benefit-item {
		gap: 14px;
		padding: 16px 18px;
	}

	.benefit-icon-wrap {
		width: 42px;
		height: 42px;
		font-size: 16px;
	}

	.sachet-card {
		padding: 36px 28px;
		min-height: auto;
	}

	.sachet-label {
		font-size: 0.82rem;
		padding: 22px 20px;
	}
}

@media (max-width: 991px) {
	.lifecare-supplement-scene {
		min-height: auto;
		background-image:
			linear-gradient(90deg, rgba(242, 235, 223, 0.98) 0%, rgba(242, 235, 223, 0.9) 100%),
			url("../img/side-img/lifecare-bg-img.png");
		background-position: 64% center;
		padding: 82px 0;
	}

	.lifecare-supplement-scene .row {
		min-height: auto;
	}


}

@media (max-width: 576px) {
	.lifecare-supplement-scene {
		padding: 68px 0;
	}

	.lifecare-supplement-scene .title-type-1 {
		font-size: 34px;
	}

	.lifecare-supplement-scene .supplement-benefits>div {
		grid-template-columns: 48px 1fr;
		gap: 12px !important;
	}

	.lifecare-supplement-scene .supplement-benefits>div::before {
		width: 42px;
		height: 42px;
		font-size: 17px;
	}

	.lifecare-supplement-scene .btn-main {
		width: 100%;
		justify-content: center;
		text-align: center;
	}
}

/* Supplementation Sachet */
.sachet-card {
	background: var(--white);
	border-radius: 24px;
	padding: 36px 32px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(15, 61, 46, 0.06);
	max-width: 500px;
	margin: 0 auto;
}

.sachet-card .sachet-label {
	background: var(--bg-cream);
	border-radius: 16px;
	padding: 24px 20px;
	font-family: monospace;
	font-size: 0.9rem;
	line-height: 1.8;
	border: 1px dashed var(--primary);
	color: var(--primary);
}

.sachet-card .sachet-label strong {
	color: var(--primary);
}

.cta-lifecare {
	background: var(--primary);
	padding: 100px 0;
	text-align: center;
	color: white;
}

.cta-lifecare .btn-main {
	background: var(--accent);
	color: var(--primary);
}

.cta-lifecare .btn-main:hover {
	background: #d0ff3a;
}

.cta-lifecare .btn-secondary-new {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	color: var(--white);
	padding: 16px 40px;
	border-radius: 60px;
	font-weight: 700;
	border: 2px solid rgba(255, 255, 255, 0.3);
	transition: 0.3s ease;
}

.cta-lifecare .btn-secondary-new:hover {
	border-color: var(--accent);
	color: var(--accent);
	transform: translateY(-3px);
}

@media (max-width: 991px) {
	.about-lifecare .row {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.about-lifecare .text-center {
		text-align: left !important;
		margin-bottom: 34px !important;
	}

	.about-lifecare-lead {
		margin-left: 0;
		margin-right: 0;
	}
}

@media (max-width: 768px) {
	.hero-lifecare {
		min-height: auto;
		padding: 60px 0;
	}

	.about-lifecare {
		padding: 78px 0;
	}

	.about-lifecare .title-type-1 {
		font-size: 34px;
	}

	.about-lifecare-lead {
		font-size: 15px;
	}

	.about-lifecare .pain-point-card,
	.usecase-card {
		padding: 24px 20px;
	}

	.about-lifecare .pain-point-card::before {
		top: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
	}

	.about-lifecare .pain-icon {
		width: 54px;
		height: 54px;
		margin-bottom: 22px;
		font-size: 22px;
	}

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

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

h2,
.h2 {
	font-size: clamp(26px, 4vw, 42px);
	line-height: 1.1;
	font-weight: 600;
	letter-spacing: -0.01em;
}

/* ─────────────────────────────────────────────────────────────────
   2. ANIMATION KEYFRAMES
───────────────────────────────────────────────────────────────── */
@keyframes hSlideUp {
	from {
		opacity: 0;
		transform: translateY(48px);
		filter: blur(5px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}

@keyframes hSlideLeft {
	from {
		opacity: 0;
		transform: translateX(-52px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes hSlideRight {
	from {
		opacity: 0;
		transform: translateX(52px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes hScaleIn {
	from {
		opacity: 0;
		transform: scale(0.86);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes hFadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes gradientPan {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@keyframes underlineGrow {
	from {
		width: 0;
		opacity: 0;
	}

	to {
		width: 100%;
		opacity: 1;
	}
}

@keyframes accentLineDrop {
	from {
		transform: scaleY(0);
		opacity: 0;
	}

	to {
		transform: scaleY(1);
		opacity: 1;
	}
}

/* ─────────────────────────────────────────────────────────────────
   3. SCROLL-TRIGGERED HEADING ANIMATIONS
   JS adds [data-h-anim] to every h1–h6, then adds .h-visible
   when the element enters the viewport.
───────────────────────────────────────────────────────────────── */

/* Initial hidden state (set by JS before paint) */
h1[data-h-anim],
h2[data-h-anim],
h3[data-h-anim],
h4[data-h-anim],
h5[data-h-anim],
h6[data-h-anim] {
	opacity: 0;
	transform: translateY(44px);
	filter: blur(4px);
	will-change: opacity, transform, filter;
	transition:
		opacity 0.80s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.80s cubic-bezier(0.16, 1, 0.3, 1),
		filter 0.60s ease;
}

/* Visible state */
h1[data-h-anim].h-visible,
h2[data-h-anim].h-visible,
h3[data-h-anim].h-visible,
h4[data-h-anim].h-visible,
h5[data-h-anim].h-visible,
h6[data-h-anim].h-visible {
	opacity: 1;
	transform: none;
	filter: blur(0);
}

/* Variant: slide from left */
[data-h-anim="left"] {
	transform: translateX(-52px) !important;
	filter: blur(0) !important;
}

[data-h-anim="left"].h-visible {
	transform: translateX(0) !important;
}

/* Variant: slide from right */
[data-h-anim="right"] {
	transform: translateX(52px) !important;
	filter: blur(0) !important;
}

[data-h-anim="right"].h-visible {
	transform: translateX(0) !important;
}

/* Variant: scale in */
[data-h-anim="scale"] {
	transform: scale(0.86) !important;
	filter: blur(0) !important;
}

[data-h-anim="scale"].h-visible {
	transform: scale(1) !important;
}

/* Variant: fade only */
[data-h-anim="fade"] {
	transform: none !important;
}

[data-h-anim="fade"].h-visible {
	transform: none !important;
}

/* Natural stagger — each heading level animates slightly later */
h1[data-h-anim] {
	transition-delay: 0.00s;
}

h2[data-h-anim] {
	transition-delay: 0.07s;
}

h3[data-h-anim] {
	transition-delay: 0.12s;
}

h4[data-h-anim] {
	transition-delay: 0.16s;
}

h5[data-h-anim] {
	transition-delay: 0.20s;
}

h6[data-h-anim] {
	transition-delay: 0.23s;
}

/* Hero headings — skip blur (already in active slide animation) */
.hero-carousel h1[data-h-anim],
.hero-carousel h2[data-h-anim] {
	opacity: 1 !important;
	transform: none !important;
	filter: none !important;
	transition: none !important;
}

/* On dark backgrounds keep the shimmer bright */
.science-section .heading-gradient,
.cta-lifecare .heading-gradient {
	background: linear-gradient(270deg, var(--accent) 0%, #ffffff 45%, var(--accent) 100%);
	background-size: 300% 300%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientPan 5s ease infinite;
}

/* ─────────────────────────────────────────────────────────────────
   5. ANIMATED UNDERLINE ACCENT  — add class .heading-underline
───────────────────────────────────────────────────────────────── */
.heading-underline {
	position: relative;
	display: inline-block;
}

.heading-underline::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	height: 3px;
	width: 0;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--accent), var(--primary));
	transition: width 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.45s;
}

.heading-underline.h-visible::after,
.h-visible .heading-underline::after {
	width: 100%;
}

/* ─────────────────────────────────────────────────────────────────
   6. LEFT ACCENT BAR  — add class .heading-accent-bar
───────────────────────────────────────────────────────────────── */
.heading-accent-bar {
	position: relative;
	padding-left: 20px;
}

.heading-accent-bar::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10%;
	height: 80%;
	width: 4px;
	border-radius: 4px;
	background: linear-gradient(180deg, var(--accent), var(--primary));
	transform: scaleY(0);
	transform-origin: top center;
	transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.heading-accent-bar.h-visible::before,
.h-visible .heading-accent-bar::before {
	transform: scaleY(1);
}

/* ─────────────────────────────────────────────────────────────────
   7. WORD-BY-WORD REVEAL  — add class .heading-words  (JS splits)
───────────────────────────────────────────────────────────────── */
.heading-words .hw {
	display: inline-block;
	overflow: hidden;
	vertical-align: bottom;
	margin-right: 0.28em;
}

.heading-words .hw-inner {
	display: inline-block;
	transform: translateY(110%);
	transition: transform 0.70s cubic-bezier(0.16, 1, 0.3, 1);
}

.heading-words.h-visible .hw-inner {
	transform: translateY(0);
}

/* Stagger each word */
.heading-words .hw:nth-child(1) .hw-inner {
	transition-delay: 0.00s;
}

.heading-words .hw:nth-child(2) .hw-inner {
	transition-delay: 0.07s;
}

.heading-words .hw:nth-child(3) .hw-inner {
	transition-delay: 0.14s;
}

.heading-words .hw:nth-child(4) .hw-inner {
	transition-delay: 0.21s;
}

.heading-words .hw:nth-child(5) .hw-inner {
	transition-delay: 0.28s;
}

.heading-words .hw:nth-child(6) .hw-inner {
	transition-delay: 0.35s;
}

.heading-words .hw:nth-child(7) .hw-inner {
	transition-delay: 0.42s;
}

.heading-words .hw:nth-child(8) .hw-inner {
	transition-delay: 0.49s;
}

.heading-words .hw:nth-child(9) .hw-inner {
	transition-delay: 0.56s;
}

.heading-words .hw:nth-child(10) .hw-inner {
	transition-delay: 0.63s;
}

/* ─────────────────────────────────────────────────────────────────
   8. SECTION-CONTEXT COLOR RULES
───────────────────────────────────────────────────────────────── */
/* Light / cream sections */
.programs-section h1,
.programs-section h2,
.programs-section h3 {
	color: var(--primary);
}

.programs-section h4,
.programs-section h5,
.programs-section h6 {
	color: var(--dark);
}

/* Testi / neutral */
.testi-section h2,
.testi-section h3 {
	color: var(--primary);
}

/* Dark green (science) */
.science-section h1,
.science-section h2,
.science-section h3 {
	color: var(--white);
}

.science-section h4,
.science-section h5,
.science-section h6 {
	color: rgba(255, 255, 255, 0.85);
}

/* CTA dark */
.cta-lifecare h1,
.cta-lifecare h2,
.cta-lifecare h3 {
	color: var(--white);
}

.cta-lifecare h4,
.cta-lifecare h5,
.cta-lifecare h6 {
	color: rgba(255, 255, 255, 0.85);
}

/* Corporate */
.corporate-section h2,
.corporate-section h3 {
	color: var(--primary);
}

/* ─────────────────────────────────────────────────────────────────
   9.  RESPONSIVE BREAKPOINTS
───────────────────────────────────────────────────────────────── */

/* ── Tablet (≤ 991px) ── */
@media (max-width: 991px) {

	h1,
	.h1 {
		font-size: clamp(28px, 5.5vw, 48px);
	}

	h2,
	.h2 {
		font-size: clamp(24px, 4.2vw, 40px);
	}

	h3,
	.h3 {
		font-size: clamp(20px, 3.2vw, 32px);
	}

	h4,
	.h4 {
		font-size: clamp(17px, 2.6vw, 26px);
	}

	h5,
	.h5 {
		font-size: clamp(14px, 2.0vw, 20px);
	}

	h6,
	.h6 {
		font-size: clamp(13px, 1.6vw, 16px);
	}

	.title-type-1 {
		font-size: clamp(24px, 5vw, 44px) !important;
	}

	.title-type-2 {
		font-size: clamp(24px, 5vw, 48px) !important;
	}

	.science-title {
		font-size: clamp(22px, 4.5vw, 40px) !important;
	}

	.hero-title-new {
		font-size: clamp(26px, 5.5vw, 48px) !important;
	}

	.feature-headline {
		font-size: clamp(22px, 4vw, 40px) !important;
	}
}

/* ── Mobile (≤ 767px) ── */
@media (max-width: 767px) {

	h1,
	.h1 {
		font-size: clamp(26px, 7.5vw, 38px);
		line-height: 1.12;
	}

	h2,
	.h2 {
		font-size: clamp(22px, 6.5vw, 32px);
		line-height: 1.15;
	}

	h3,
	.h3 {
		font-size: clamp(18px, 5.5vw, 26px);
		line-height: 1.22;
	}

	h4,
	.h4 {
		font-size: clamp(16px, 4.8vw, 22px);
	}

	h5,
	.h5 {
		font-size: clamp(14px, 4.2vw, 18px);
	}

	h6,
	.h6 {
		font-size: 14px;
;
	}

	.title-type-1 {
		font-size: clamp(22px, 7vw, 34px) !important;
		line-height: 1.14 !important;
	}

	.title-type-2 {
		font-size: clamp(22px, 7vw, 36px) !important;
		line-height: 1.12 !important;
	}


	.science-title {
		font-size: clamp(20px, 6.5vw, 32px) !important;
	}

	.hero-title-new {
		font-size: clamp(24px, 7vw, 36px) !important;
	}

	.feature-headline {
		font-size: clamp(20px, 6vw, 32px) !important;
	}

	/* Reduce blur-based animation for performance */
	h1[data-h-anim],
	h2[data-h-anim],
	h3[data-h-anim] {
		filter: none;
	}

	h1[data-h-anim].h-visible,
	h2[data-h-anim].h-visible,
	h3[data-h-anim].h-visible {
		filter: none;
	}
}

/* ── Small Mobile (≤ 480px) ── */
@media (max-width: 480px) {

	h1,
	.h1 {
		font-size: clamp(24px, 8.5vw, 34px);
	}

	h2,
	.h2 {
		font-size: clamp(20px, 7.5vw, 28px);
	}

	h3,
	.h3 {
		font-size: clamp(17px, 6.5vw, 24px);
	}

	h4,
	.h4 {
		font-size: clamp(15px, 5.5vw, 20px);
	}

	h5,
	.h5 {
		font-size: clamp(13px, 5vw, 17px);
	}

	h6,
	.h6 {
		font-size: 14px;
;
	}

	.title-type-1 {
		font-size: clamp(20px, 8vw, 30px) !important;
	}

	.title-type-2 {
		font-size: clamp(20px, 8vw, 30px) !important;
	}


	.science-title {
		font-size: clamp(18px, 7.5vw, 28px) !important;
	}

	.hero-title-new {
		font-size: clamp(22px, 8vw, 32px) !important;
	}

	.feature-headline {
		font-size: clamp(18px, 7vw, 26px) !important;
	}
}

/* ─────────────────────────────────────────────────────────────────
   10. REDUCED MOTION SUPPORT  (accessibility)
───────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

	h1[data-h-anim],
	h2[data-h-anim],
	h3[data-h-anim],
	h4[data-h-anim],
	h5[data-h-anim],
	h6[data-h-anim] {
		opacity: 1 !important;
		transform: none !important;
		filter: none !important;
		transition: none !important;
	}

	.heading-gradient,
	.hl,
	.title-type-1 .hl,
	.hero-title-new .accent-text {
		animation: none !important;
		background-position: 0% 50% !important;
	}

	.heading-words .hw-inner {
		transform: none !important;
		transition: none !important;
	}
}

/* --------------complete system---------------------------- */
.complete-system {
	position: relative;
	padding: 90px 0;
	overflow: hidden;
}

.complete-system::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("../img/side-img/lifecare-bg-img.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform: scaleX(-1);
	/* Flip horizontally */
	z-index: -1;
}

.complete-system-box {
	background: rgb(81 93 25 / 15%);
	backdrop-filter: blur(36px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
	padding: 40px;
}

.system-header,
.system-row {
	display: grid;
	grid-template-columns: 50px 110px 240px 1fr;
	align-items: center;
	column-gap: 18px;
}

.system-header {
	padding: 0 10px 18px;
	border-bottom: 1px solid #d8d8d8;
	color: #0f3d2e;
	font-weight: 700;
	font-size: 1.4rem;
}

.system-row {
	padding: 18px 10px;
	border-bottom: 1px solid #e4e4e4;
}


.system-btn-light {
	background: #0f3d2e;
	color: #fff;
	padding: 15px;
	border-radius: 5px;
}

.system-btn-dark {
	/* background:; */
	color: #0f3d2e;
	border: 2px solid #0f3d2e;
	padding: 13px;
	border-radius: 5px;
	/* margin-left: 10px; */
}

.system-btn-light:hover,
.system-btn-dark:hover {
	transform: translateY(-4px);
}

.system-layout .system-icon,
.system-number {
	color: var(--primary);
	font-size: 20px;
}

@media(max-width:991px) {

	.system-layout {
		grid-template-columns: 1fr;
	}

	.system-header {
		display: none;
	}

	.system-row {
		grid-template-columns: 50px 70px 1fr;
	}

	.system-desc {
		grid-column: 2 / -1;
		margin-top: 10px;
	}

	.system-buttons {
		grid-template-columns: 1fr;
	}
}

/* ---------------------FAQ Section ------------------*/
.faq-section {
	padding: 90px 0;
	background: #fff;
}

.faq-node {
	background: #fff;
	border: 1px solid #e8ece8;
	border-radius: 18px;
	margin-bottom: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-node:hover {
	border-color: rgba(189, 250, 4, 0.5);
}

.faq-node.active {
	border-color: var(--accent);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.faq-node-header {
	padding: 24px 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	gap: 20px;
}

.faq-node-header h3 {
	margin: 0;
	font-size: clamp(16px, 1.2vw, 20px);
	font-weight: 600;
	color: var(--primary);
	line-height: 1.4;
}

.faq-node-header i {
	flex-shrink: 0;
	font-size: 14px;
	transition: transform 0.35s ease;
}

.faq-node.active .faq-node-header i {
	transform: rotate(180deg);
}

.faq-node-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.faq-node-content {
	padding: 0 28px 24px;
	line-height: 1.8;
	font-size: 15px;
	font-weight: 600;
}

@media (max-width: 768px) {
	.faq-node-header {
		padding: 18px 20px;
	}

	.faq-node-content {
		padding: 0 20px 20px;
	}

	.faq-node-header h3 {
		font-size: 16px;
	}
}

/* =======================privacy POLICY======================= */

.privacy-policy-container,
.privacy-container {
	width: min(1280px, calc(100% - 64px));
	margin-inline: auto;
}

.privacy-hero {
	position: relative;
	padding: 2px 0 0px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.privacy-hero::before {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none;
}

.privacy-banner {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: clamp(40px, 7vw, 100px);
	border-radius: var(--privacy-radius-lg);

	box-shadow: var(--privacy-shadow);
}

.privacy-banner::before {
	position: absolute;
	right: -100px;
	bottom: -160px;
	z-index: -1;
	width: 470px;
	height: 470px;
	content: "";
	border: 1px solid rgba(189, 250, 4, 0.28);
	border-radius: 50%;
	box-shadow:
		0 0 0 35px rgba(189, 250, 4, 0.04),
		0 0 0 75px rgba(189, 250, 4, 0.025);
}

.privacy-banner::after {
	position: absolute;
	top: 45px;
	right: 80px;
	width: 100px;
	height: 100px;
	content: "";
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
}

.privacy-hero .privacy-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
}

.privacy-meta {
	display: inline-flex;
	align-items: center;
	gap: 10px;

	color: var(--privacy-white);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	backdrop-filter: blur(14px);
	font-size: 14px;
;
	letter-spacing: 0.03em;
}

.privacy-meta svg {
	width: 17px;
	height: 17px;
	color: var(--privacy-accent);
}

.privacy-hero h1 {
	font-family: "Inter", sans-serif;
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.08;
	font-weight: 800;
	color: #081a3d;
	margin-bottom: 28px;
	letter-spacing: -0.03em;
}

.privacy-hero h1 span {
	color: var(--brand-green);
	font-style: italic;
}

.privacy-hero .privacy-content>p {
	max-width: 600px;
	margin: 0;
	font-size: clamp(1rem, 1.5vw, 1.18rem);
	line-height: 1.8;
}

.privacy-breadcrumb {
	margin-top: 34px;
}

.privacy-breadcrumb .breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.86rem;
}

.privacy-breadcrumb .breadcrumb-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.privacy-breadcrumb a {
	color: var(--primary);
	font-weight: 600;
}

.privacy-breadcrumb a:hover {
	color: var(--privacy-accent);
}

.privacy-breadcrumb .active {
	color: var(--privacy-accent);
}

/* =========================================================
   CONTENT LAYOUT
========================================================= */

.privacy-policy-section {
	position: relative;
	padding: 50px 0;
}

.privacy-layout {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: clamp(35px, 6vw, 90px);
	align-items: start;
}

.privacy-sidebar {
	position: sticky;
	top: 60px;
}

.privacy-sidebar-label {
	display: block;
	margin-bottom: 14px;
	color: var(--privacy-primary);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.privacy-nav {
	padding: 18px 10px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid var(--privacy-border);
	border-radius: var(--privacy-radius-md);
	box-shadow: 0 14px 40px rgba(15, 61, 46, 0.06);
	backdrop-filter: blur(10px);
}

.privacy-nav a {
	position: relative;
	display: block;
	padding: 8px 0 8px 16px;
	color: var(--privacy-muted);
	font-size: 0.82rem;
	line-height: 1.4;
}

.privacy-nav a::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 5px;
	height: 5px;
	content: "";
	background: var(--privacy-accent);
	border-radius: 50%;
	opacity: 0;
	transform: translateY(-50%);
	transition: 0.3s ease;
}

.privacy-nav a:hover,
.privacy-nav a:first-child {
	color: var(--privacy-primary);
	font-weight: 700;
}

.privacy-nav a:hover::before,
.privacy-nav a:first-child::before {
	opacity: 1;
}

/* =========================================================
   INTRODUCTION
========================================================= */

.privacy-intro {
	position: relative;
	margin-bottom: 34px;
	padding: 18px 0 28px;
}

.privacy-intro::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 75px;
	height: 4px;
	content: "";
	background: var(--privacy-accent);
	border-radius: 999px;
}

.privacy-eyebrow {
	display: inline-block;
	margin-bottom: 10px;
	color: var(--privacy-primary);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.privacy-intro h2 {
	max-width: 700px;
	margin: 0 0 12px;
	color: var(--privacy-dark);
	font-family: "Playfair Display", serif;
	font-size: clamp(2rem, 4vw, 3.4rem);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.04em;
}

.privacy-intro p {
	max-width: 720px;
	margin: 0;
	color: var(--privacy-text);
	font-size: 1rem;
}

/* =========================================================
   POLICY CARDS
========================================================= */

.privacy-card {
	position: relative;
	scroll-margin-top: 30px;
	margin-bottom: 18px;
	padding: 30px 32px 30px 38px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--privacy-border);
	border-radius: var(--privacy-radius-md);
	box-shadow: 0 10px 35px rgba(15, 61, 46, 0.04);
	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease,
		border-color 0.35s ease;
}

.privacy-card::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	content: "";
	background: linear-gradient(180deg,
			var(--privacy-accent),
			var(--privacy-primary));
}

.privacy-card:hover {
	border-color: rgba(22, 99, 63, 0.25);
	box-shadow: 0 20px 45px rgba(15, 61, 46, 0.1);
	transform: translateY(-4px);
}

.privacy-card h3 {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 12px;
	color: var(--privacy-dark);
	font-family: "Playfair Display", serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
}

.privacy-card h3 span {
	display: grid;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	place-items: center;
	color: var(--privacy-primary);
	background: rgba(189, 250, 4, 0.4);
	border-radius: 12px;
	font-family: "Inter", sans-serif;
	font-size: 0.75rem;
	font-weight: 800;
}

.privacy-card p {
	margin: 0;
	color: var(--privacy-text);
	font-size: 0.94rem;
	line-height: 1.85;
}

/* =========================================================
   CONTACT CARD
========================================================= */

.privacy-contact-card {
	position: relative;
	scroll-margin-top: 30px;
	margin-top: 38px;
	padding: 36px;
	overflow: hidden;
	color: var(--privacy-white);
	background:
		linear-gradient(135deg,
			rgba(15, 61, 46, 0.98),
			rgba(22, 99, 63, 0.92));
	border-radius: var(--privacy-radius-md);
	box-shadow: var(--privacy-shadow);
}

.privacy-contact-card::after {
	position: absolute;
	right: -65px;
	bottom: -110px;
	width: 280px;
	height: 280px;
	content: "";
	border: 1px solid rgba(189, 250, 4, 0.35);
	border-radius: 50%;
	box-shadow: 0 0 0 25px rgba(189, 250, 4, 0.05);
}

.privacy-contact-card h3,
.privacy-contact-card p,
.privacy-contact-details {
	position: relative;
	z-index: 1;
}

.privacy-contact-card h3 {
	margin: 0 0 8px;
	font-family: "Playfair Display", serif;
	font-size: 1.7rem;
	color: var(--accent);
}

.privacy-contact-card p {
	max-width: 550px;
	margin: 0 0 22px;
	color: rgba(255, 255, 255, 0.75);
}

.privacy-contact-details {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.privacy-contact-details a {
	padding: 11px 16px;
	color: var(--accent);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	font-size: 0.85rem;
}

.privacy-contact-details a:hover {
	color: var(--bg-light);
	background: var(--privacy-accent);
	border-color: var(--bg-cream);
}

/* =========================================================
   CONSENT AND LEGAL NOTE
========================================================= */

.privacy-consent {
	margin-top: 20px;
	padding: 18px 20px;
	color: var(--privacy-primary);
	background: rgba(189, 250, 4, 0.22);
	border: 1px solid rgba(22, 99, 63, 0.15);
	border-radius: 14px;
	font-size: 0.88rem;
}

.privacy-consent strong {
	color: var(--privacy-dark);
}

.privacy-legal-note {
	margin: 14px 0 0;
	color: var(--privacy-muted);
	font-size: 0.78rem;
	font-style: italic;
}

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

@media (max-width: 950px) {

	.privacy-policy-container,
	.privacy-container {
		width: min(100% - 40px, 760px);
	}

	.privacy-layout {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.privacy-sidebar {
		position: static;
	}

	.privacy-nav {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 2px 22px;
	}
}

@media (max-width: 600px) {

	.privacy-policy-container,
	.privacy-container {
		width: min(100% - 28px, 1280px);
	}

	.privacy-hero {
		padding: 14px 0 50px;
	}

	.privacy-banner {
		min-height: 540px;
		align-items: flex-end;
		padding: 30px 24px;
		border-radius: 24px;
		background:
			linear-gradient(180deg,
				rgba(5, 43, 32, 0.15) 0%,
				rgba(5, 43, 32, 0.96) 76%),
			url("../img/bg-image/privacy-policy-banner.png") center / cover no-repeat;
	}

	.privacy-banner::before {
		right: -180px;
		bottom: -140px;
		width: 360px;
		height: 360px;
	}

	.privacy-banner::after {
		display: none;
	}

	.privacy-meta {
		margin-bottom: 18px;
		font-size: 0.72rem;
	}

	.privacy-hero h1 {
		font-size: clamp(3rem, 16vw, 4.5rem);
	}

	.privacy-hero .privacy-content>p {
		font-size: 0.92rem;
		line-height: 1.7;
	}

	.privacy-nav {
		display: block;
		max-height: 220px;
		overflow-y: auto;
	}

	.privacy-card {
		padding: 25px 20px 25px 27px;
		border-radius: 16px;
	}

	.privacy-card h3 {
		align-items: flex-start;
		font-size: 1.08rem;
	}

	.privacy-card h3 span {
		flex-basis: 34px;
		width: 34px;
		height: 34px;
	}

	.privacy-card p {
		font-size: 0.88rem;
	}

	.privacy-contact-card {
		padding: 28px 20px;
	}

	.privacy-contact-details {
		flex-direction: column;
	}

	.privacy-contact-details a {
		display: block;
		text-align: center;
	}
}

/* Login */
.profile-register-switch {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 22px;
	padding-top: 20px;
	border-top: 1px solid var(--profile-line);
	color: var(--profile-muted);
	font-size: 14px;
}

.profile-link-button {
	border: 0;
	padding: 0;
	background: transparent;
	color: var(--profile-green);
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
}

.profile-link-button:hover {
	color: var(--profile-green-dark);
	text-decoration: underline;
}
/* ====================New Result==========================
 */
 /* =========================================================
   NHANCE HEALTH ASSESSMENT RESULT
========================================================= */

#gut-test-modal .gut-test-result {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 2px 30px;
    color: #101820;
    font-family: inherit;
    background: #fff;
}

/* =========================================================
   RESULT TOP
========================================================= */

#gut-test-modal .result-top-section {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(350px, 1fr);
    gap: 18px;
    margin-bottom: 22px;
    align-items: stretch;
}

/* LEFT */

#gut-test-modal .result-complete-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#gut-test-modal .result-complete-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
}

#gut-test-modal .result-success-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00a66a, #008a59);
    color: #fff;
    font-size: 30px;
    box-shadow: 0 8px 20px rgba(0, 139, 89, .18);
}

#gut-test-modal .result-complete-title h2 {
    margin: 0;
    color: #0d1014;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

#gut-test-modal .result-complete-subtitle {
    margin: 0 0 18px 80px;
    color: #4d5357;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   ASSESSMENT META
========================================================= */

#gut-test-modal .result-meta-box {
    min-height: 78px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e1e7e3;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .025);
}

#gut-test-modal .result-meta-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
}

#gut-test-modal .result-meta-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 0;
    width: 1px;
    height: calc(100% - 36px);
    background: #e4e8e6;
}

#gut-test-modal .result-meta-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c7651;
    font-size: 19px;
}

#gut-test-modal .result-meta-label {
    display: block;
    color: #686e71;
    font-size: 9px;
    margin-bottom: 2px;
}

#gut-test-modal .result-meta-value {
    display: block;
    color: #101820;
    font-size: 11px;
    font-weight: 700;
}

/* =========================================================
   HEALTH SCORE
========================================================= */

#gut-test-modal .health-score-card {
    position: relative;
    overflow: hidden;
    min-height: 205px;
    padding: 22px;
    border-radius: 17px;
    background:
        radial-gradient(circle at 0% 100%, rgba(39, 183, 129, .12), transparent 40%),
        linear-gradient(135deg, #005944, #003f32);
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 69, 52, .18);
}

#gut-test-modal .health-score-card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -70px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(255,255,255,.035);
}

#gut-test-modal .health-score-heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
}

#gut-test-modal .health-score-heading h3 {
    margin: 0;
    color: #fff !important;
    font-size: 17px;
    font-weight: 700;
}

#gut-test-modal .health-score-heading i {
    color: #d9e7e1;
    font-size: 13px;
}

#gut-test-modal .health-score-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
}

#gut-test-modal .score-circle {
    position: relative;
    width: 118px;
    height: 118px;
    flex: 0 0 118px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#gut-test-modal .score-circle svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

#gut-test-modal .score-circle-bg {
    fill: none;
    stroke: rgba(255,255,255,.14);
    stroke-width: 9;
}

#gut-test-modal .score-circle-progress {
    fill: none;
    stroke: url(#scoreGradient);
    stroke-width: 9;
    stroke-linecap: round;
    transition: stroke-dashoffset .8s ease;
}

#gut-test-modal .score-circle-value {
    position: relative;
    z-index: 2;
    text-align: center;
}

#gut-test-modal .score-circle-number {
    display: block;
    color: #fff !important;
    font-size: 39px;
    line-height: 1;
    font-weight: 800;
}

#gut-test-modal .score-circle-total {
    display: block;
    margin-top: 3px;
    color: #fff !important;
    font-size: 12px;
}

#gut-test-modal .score-message {
    flex: 1;
}

#gut-test-modal .score-message strong {
    display: block;
    margin-bottom: 7px;
    color: #ffd326 !important;
    font-size: 17px;
    line-height: 1.3;
}

#gut-test-modal .score-message p {
    margin: 0;
    color: rgba(255,255,255,.94) !important;
    font-size: 13px;
    line-height: 1.75;
}

/* =========================================================
   METRIC CARDS
========================================================= */

#gut-test-modal .result-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

#gut-test-modal .result-metric-card {
    min-height: 148px;
    padding: 17px;
    border: 1px solid #e1e8e4;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.025);
}

#gut-test-modal .result-metric-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
}

#gut-test-modal .result-metric-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff9f4;
    color: #08774f;
    font-size: 19px;
}

#gut-test-modal .metric-tdee .result-metric-icon {
    background: #edf5ff;
    color: #1474d4;
}

#gut-test-modal .metric-bmi .result-metric-icon {
    background: #f4efff;
    color: #7444c5;
}

#gut-test-modal .metric-whtr .result-metric-icon {
    background: #fff4ec;
    color: #f47720;
}

#gut-test-modal .result-metric-name {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #101820;
    font-size: 13px;
    font-weight: 750;
}

#gut-test-modal .result-metric-name i {
    color: #6e7477;
    font-size: 11px;
}

#gut-test-modal .result-metric-value {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 7px;
}

#gut-test-modal .result-metric-value strong {
    color: #101820 !important;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
}

#gut-test-modal .metric-bmr .result-metric-value strong {
    color: #076f49 !important;
}

#gut-test-modal .metric-tdee .result-metric-value strong {
    color: #101820 !important;
}

#gut-test-modal .metric-bmi .result-metric-value strong {
    color: #7444c5 !important;
}

#gut-test-modal .result-metric-unit {
    color: #111 !important;
    font-size: 11px;
    font-weight: 700;
}

#gut-test-modal .result-metric-description {
    color: #42494d !important;
    font-size: 11px;
    margin-bottom: 10px;
}

#gut-test-modal .result-metric-tag {
    display: inline-block;
    padding: 7px 9px;
    border-radius: 7px;
    background: #eef8f1;
    color: #12613f !important;
    font-size: 9px;
    line-height: 1.25;
}

/* =========================================================
   MAIN HEALTH SECTION
========================================================= */

#gut-test-modal .result-health-grid {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 15px;
    margin-bottom: 17px;
}

#gut-test-modal .result-panel {
    border: 1px solid #e0e7e3;
    border-radius: 15px;
    background: #fff;
    overflow: hidden;
}

#gut-test-modal .result-panel-header {
    padding: 18px 18px 12px;
}

#gut-test-modal .result-panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 7px;
    color: #111820 !important;
    font-size: 17px;
    font-weight: 800;
}

#gut-test-modal .result-panel-title i {
    color: #08774f;
}

#gut-test-modal .result-panel-subtitle {
    margin: 0;
    color: #4f5659 !important;
    font-size: 10px;
    line-height: 1.5;
}

/* =========================================================
   HEALTH OVERVIEW ROWS
========================================================= */

#gut-test-modal .overview-list {
    padding: 2px 16px 15px;
}

#gut-test-modal .overview-row {
    display: grid;
    grid-template-columns: minmax(140px, 1.25fr) minmax(75px, .7fr) minmax(130px, 1.25fr);
    align-items: center;
    gap: 12px;
    min-height: 67px;
    border-bottom: 1px solid #edf0ef;
}

#gut-test-modal .overview-row:last-child {
    border-bottom: 0;
}

#gut-test-modal .overview-title {
    display: flex;
    align-items: center;
    gap: 9px;
}

#gut-test-modal .overview-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef8f3;
    color: #08774f;
}

#gut-test-modal .overview-title strong {
    display: block;
    color: #172026 !important;
    font-size: 10px;
    font-weight: 800;
}

#gut-test-modal .overview-title span {
    display: block;
    color: #30373b !important;
    font-size: 9px;
    margin-top: 2px;
}

#gut-test-modal .overview-status {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 7px 8px;
    border-radius: 5px;
    background: #fff4ed;
    color: #ef6428 !important;
    font-size: 8px;
    font-weight: 700;
}

#gut-test-modal .overview-status.good {
    background: #edf9f2;
    color: #08774f !important;
}

#gut-test-modal .overview-status.bad {
    background: #fff0f0;
    color: #d62828 !important;
}

#gut-test-modal .risk-scale {
    position: relative;
}

#gut-test-modal .risk-scale-bar {
    position: relative;
    height: 7px;
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        #15965f 0%,
        #15965f 28%,
        #f4ad24 42%,
        #f4761e 70%,
        #e3212a 100%
    );
}

#gut-test-modal .risk-marker {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    border: 2px solid #161616;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

#gut-test-modal .overview-legend {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 15px 0 4px;
    font-size: 9px;
}

#gut-test-modal .overview-legend span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #32383b;
}

#gut-test-modal .legend-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #15965f;
}

#gut-test-modal .legend-dot.medium {
    background: #f4a723;
}

#gut-test-modal .legend-dot.high {
    background: #e3222b;
}

/* =========================================================
   VISCERAL FAT
========================================================= */

#gut-test-modal .visceral-content {
    padding: 2px 17px 17px;
}

#gut-test-modal .visceral-main {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 13px;
}

#gut-test-modal .visceral-illustration {
    width: 125px;
    height: 125px;
    flex: 0 0 125px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0f0;
    color: #d81f28;
}

#gut-test-modal .visceral-illustration i {
    font-size: 55px;
}

#gut-test-modal .visceral-status h4 {
    margin: 0 0 8px;
    color: #c51f27 !important;
    font-size: 19px;
    font-weight: 800;
}

#gut-test-modal .visceral-status p {
    margin: 0;
    color: #252b2f !important;
    font-size: 11px;
    line-height: 1.6;
}

#gut-test-modal .visceral-scale {
    margin: 7px 0 18px;
}

#gut-test-modal .visceral-scale-bar {
    height: 8px;
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        #17985f 0 25%,
        #f2ad25 25% 50%,
        #f47b1d 50% 75%,
        #e3212a 75% 100%
    );
}

#gut-test-modal .visceral-scale-labels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-top: 9px;
    text-align: center;
}

#gut-test-modal .visceral-scale-labels strong {
    display: block;
    color: #161c20 !important;
    font-size: 8px;
}

#gut-test-modal .visceral-scale-labels span {
    display: block;
    color: #51575a !important;
    font-size: 7px;
    margin-top: 3px;
}

#gut-test-modal .good-box {
    padding: 13px;
    border-radius: 11px;
    background: #f0f5f2;
}

#gut-test-modal .good-box-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #12613f !important;
    font-size: 12px;
    font-weight: 800;
}

#gut-test-modal .good-box-title i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0a9860;
    color: #fff;
}

#gut-test-modal .good-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#gut-test-modal .good-list li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #27332e !important;
    font-size: 9px;
    line-height: 1.35;
}

#gut-test-modal .good-list li i {
    color: #08774f;
    margin-top: 1px;
}

/* =========================================================
   URGENT ATTENTION
========================================================= */

#gut-test-modal .urgent-attention {
    display: grid;
    grid-template-columns: 125px 1fr;
    align-items: center;
    gap: 18px;
    margin-bottom: 17px;
    padding: 13px 20px;
    border: 1px solid #f2caca;
    border-radius: 14px;
    background: linear-gradient(90deg, #fff5f5, #fffafa);
}

#gut-test-modal .urgent-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

#gut-test-modal .urgent-icon i {
    font-size: 67px;
    color: #d91e26;
    filter: drop-shadow(0 5px 4px rgba(0,0,0,.15));
}

#gut-test-modal .urgent-content h3 {
    margin: 0 0 7px;
    color: #c82027 !important;
    font-size: 18px;
    font-weight: 800;
}

#gut-test-modal .urgent-content p {
    margin: 0 0 5px;
    color: #31363a !important;
    font-size: 10px;
    line-height: 1.6;
}

#gut-test-modal .urgent-content strong {
    color: #c82027 !important;
    font-size: 10px;
}

/* =========================================================
   DEEPER INSIGHTS / CONSULTATION
========================================================= */

#gut-test-modal .result-consultation {
    display: grid;
    grid-template-columns: 1.1fr .72fr 1fr;
    min-height: 205px;
    border: 1px solid #dfe7e2;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 17px;
}

#gut-test-modal .insights-content {
    padding: 17px 20px;
}

#gut-test-modal .insights-kicker {
    margin-bottom: 9px;
    color: #08774f !important;
    font-size: 10px;
    font-weight: 700;
}

#gut-test-modal .insights-content h3 {
    margin: 0 0 9px;
    color: #101820 !important;
    font-size: 19px;
    font-weight: 800;
}

#gut-test-modal .insights-content p {
    margin: 0 0 11px;
    color: #343b3e !important;
    font-size: 10px;
    line-height: 1.55;
}

#gut-test-modal .insight-list,
#gut-test-modal .consult-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

#gut-test-modal .insight-list li,
#gut-test-modal .consult-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 8px;
    color: #29312f !important;
    font-size: 9px;
    line-height: 1.35;
}

#gut-test-modal .insight-list li i,
#gut-test-modal .consult-list li i {
    color: #08774f;
    margin-top: 2px;
}

#gut-test-modal .nutritionist-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 205px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 25%, #f1faf5, #fff 65%);
}

#gut-test-modal .nutritionist-image img {
    width: 100%;
    max-width: 210px;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

#gut-test-modal .consult-content {
    padding: 20px 18px;
}

#gut-test-modal .consult-content h3 {
    margin: 0 0 9px;
    color: #12613f !important;
    font-size: 17px;
    font-weight: 800;
}

#gut-test-modal .consult-content p {
    margin: 0 0 11px;
    color: #30383a !important;
    font-size: 10px;
    line-height: 1.55;
}

#gut-test-modal .consult-button {
    width: 100%;
    min-height: 39px;
    border: 0;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #08774f;
    color: #fff !important;
    font-size: 12px;
    font-weight: 750;
    cursor: pointer;
    transition: .25s ease;
}

#gut-test-modal .consult-button:hover {
    background: #075f41;
    transform: translateY(-1px);
}

/* =========================================================
   PLAN CTA
========================================================= */

#gut-test-modal .result-plan-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 57px;
    padding: 10px 20px;
    border-radius: 13px;
    background: #f1f5f3;
}

#gut-test-modal .result-plan-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

#gut-test-modal .result-plan-icon {
    color: #f04a35;
    font-size: 24px;
}

#gut-test-modal .result-plan-text strong {
    color: #176140 !important;
    font-size: 12px;
}

#gut-test-modal .result-plan-button {
    min-width: 175px;
    min-height: 35px;
    padding: 7px 13px;
    border: 1px solid #08774f;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #08774f !important;
    background: #fff;
    font-size: 10px;
    font-weight: 750;
    text-decoration: none;
    transition: .25s ease;
}

#gut-test-modal .result-plan-button:hover {
    background: #08774f;
    color: #fff !important;
}

/* =========================================================
   RESULT ACTIONS
========================================================= */

#gut-test-modal .result-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 17px;
}

#gut-test-modal .result-actions button,
#gut-test-modal .result-actions a {
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 9px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

#gut-test-modal .result-retake {
    border: 1px solid #d7dfdb !important;
    background: #fff;
    color: #166043 !important;
}

#gut-test-modal .result-cart {
    background: #08774f;
    color: #fff !important;
}

#gut-test-modal .result-buy {
    background: #bd8b14;
    color: #fff !important;
}

/* =========================================================
   CONFIDENTIALITY
========================================================= */

#gut-test-modal .result-confidential {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 13px;
    color: #59605e !important;
    font-size: 9px;
}

#gut-test-modal .result-confidential i {
    color: #4e5653;
}

/* =========================================================
   MEDICAL UPLOAD
========================================================= */

#gut-test-modal .medical-upload-section {
    margin: 17px 0;
    padding: 18px;
    border: 1px solid #dce8e1;
    border-radius: 14px;
    background: #f8fcfa;
}

#gut-test-modal .medical-upload-section h4 {
    margin: 0 0 5px;
    color: #11633f !important;
    font-size: 17px;
}

#gut-test-modal .medical-upload-section p {
    margin: 0 0 15px;
    color: #4d5752 !important;
    font-size: 11px;
}

#gut-test-modal .medical-upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

#gut-test-modal .medical-upload-field label {
    display: block;
    margin-bottom: 5px;
    color: #27332f !important;
    font-size: 10px;
    font-weight: 700;
}

#gut-test-modal .medical-upload-field input {
    width: 100%;
    min-height: 40px;
    padding: 7px;
    border: 1px solid #d6e2dc;
    border-radius: 8px;
    background: #fff;
    font-size: 10px;
}

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

@media (max-width: 900px) {

    #gut-test-modal .result-top-section {
        grid-template-columns: 1fr;
    }

    #gut-test-modal .result-metric-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #gut-test-modal .result-health-grid {
        grid-template-columns: 1fr;
    }

    #gut-test-modal .result-consultation {
        grid-template-columns: 1fr 1fr;
    }

    #gut-test-modal .nutritionist-image {
        min-height: 220px;
    }

    #gut-test-modal .consult-content {
        grid-column: span 2;
    }
}

@media (max-width: 650px) {

    #gut-test-modal .gut-test-result {
        padding: 5px 0 20px;
    }

    #gut-test-modal .result-complete-title {
        align-items: flex-start;
        gap: 12px;
    }

    #gut-test-modal .result-success-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 23px;
    }

    #gut-test-modal .result-complete-title h2 {
        font-size: 21px;
    }

    #gut-test-modal .result-complete-subtitle {
        margin-left: 60px;
        font-size: 11px;
    }

    #gut-test-modal .result-meta-box {
        grid-template-columns: 1fr 1fr;
    }

    #gut-test-modal .result-meta-item {
        min-height: 58px;
    }

    #gut-test-modal .result-meta-item:nth-child(2)::after {
        display: none;
    }

    #gut-test-modal .health-score-card {
        min-height: auto;
    }

    #gut-test-modal .health-score-content {
        align-items: flex-start;
    }

    #gut-test-modal .score-circle {
        width: 95px;
        height: 95px;
        flex-basis: 95px;
    }

    #gut-test-modal .score-circle-number {
        font-size: 30px;
    }

    #gut-test-modal .score-message strong {
        font-size: 14px;
    }

    #gut-test-modal .score-message p {
        font-size: 10px;
    }

    #gut-test-modal .result-metric-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    #gut-test-modal .result-metric-card {
        min-height: 135px;
        padding: 12px;
    }

    #gut-test-modal .result-metric-value strong {
        font-size: 23px;
    }

    #gut-test-modal .overview-row {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 13px 0;
    }

    #gut-test-modal .overview-status {
        margin-left: 43px;
    }

    #gut-test-modal .risk-scale {
        margin-left: 43px;
    }

    #gut-test-modal .overview-legend {
        gap: 12px;
    }

    #gut-test-modal .visceral-main {
        flex-direction: column;
        align-items: flex-start;
    }

    #gut-test-modal .urgent-attention {
        grid-template-columns: 70px 1fr;
        gap: 10px;
        padding: 12px;
    }

    #gut-test-modal .urgent-icon i {
        font-size: 48px;
    }

    #gut-test-modal .urgent-content h3 {
        font-size: 14px;
    }

    #gut-test-modal .urgent-content p,
    #gut-test-modal .urgent-content strong {
        font-size: 9px;
    }

    #gut-test-modal .result-consultation {
        grid-template-columns: 1fr;
    }

    #gut-test-modal .consult-content {
        grid-column: auto;
    }

    #gut-test-modal .nutritionist-image {
        min-height: 180px;
    }

    #gut-test-modal .result-plan-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    #gut-test-modal .result-plan-button {
        width: 100%;
    }

    #gut-test-modal .medical-upload-grid {
        grid-template-columns: 1fr;
    }
}