/********************************* Font Import *********************************/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Lora:ital,wght@0,400;0,700;1,400&display=swap');

/*********************************
Common css *********************************/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-size: 16px;
	line-height: 145%;
	font-family: "Lato", sans-serif;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

p,
ul,
li {
	font-family: "Outfit",
		sans-serif;
	padding: 0;
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Lora", serif;
	padding: 0;
	margin: 0;
}

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

li {
	list-style: none;
}

h1 {
	font-size: 50px;
}

h2 {
	font-size: 35px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 25px;
}

section {
	background: #fff !important;
}

/*=================== UNIVERSAL BADGE (used by all pill-style badges/tags) ===================*/
.badge-pill {
	display: inline-block;
	vertical-align: middle;
	padding: 10px 18px;
	border-radius: 30px;
	background: rgba(231, 139, 195, .14);
	color: var(--pink);
	font-family: 'Lato', sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.badge-pill i {
	color: var(--pink);
}

.badge-pill-dark {
	background: rgba(255, 255, 255, .14);
	color: #ffd2ea;
}

.content .badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: transparent;
	border: 1.5px solid #d6daf0;
	color: var(--white);
}

.content .badge-pill i {
	color: var(--white);
}

/********************************* Variable color code *********************************/
:root {
	--white: #ffffff;
	--blue: #344B73;
	--smBlue: #0f172a;
	--lightBlue: #64748b;
	--black: #000;
	--pink: #AF6B89;
	--bgPink: #e24f9f;
	--deepPink: #ec4899;
	--lightPink: #c288af;
	--slpink: #c678ad;
	--ltBlue: #21376a;
	--brdrClr: #ded8cc;
	--offWhite: #f8f2e8;
	--deepPink: #ee86b7;
	--xsBlue: #8490ad;
	--dpBlue: #42527d;
	--smPink: #ff8ac9;
	--brdrsm: #26324c;
	--lpBlue: #6d7cff;
	--green: #16a34a;
	--bnGrey: #1e293b;
	--mnPink: var(--pink);
	--bgBlack: var(--blue);
	--bgGrey: #5f6680;
}

/* .banner { background: radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 35%), linear-gradient(135deg,#2d3576 0%, #4d427d 40%, #704d84
100%);} */
/* NAVBAR */
.container {
	padding: 15px 38px;
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	color: var(--white);
	padding: 15px 38px;
}

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

.logo img,
.logo-footer {
	max-width: 170px;
}

.logo-footer {
	margin-bottom: 20px;
}

.logo-box {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	background: linear-gradient(135deg, #ff9cc9, #eab2ff);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--skyBlue);
	font-weight: 700;
	font-size: 28px;
	box-shadow: 0 0 20px rgba(255, 162, 215, .35);
}

.logo-text h2 {
	font-size: 20px;
	font-weight: 600;
}

.arrow {
	transform: rotate(45deg);
	margin-left: 10px;
}

.join-btn {
	margin-top: 30px;
}

.join-btn .btn {
	margin-right: 15px;
	color: var(--black);
}

.logo-text p {
	color: var(--midWhite);
	font-style: italic;
	margin-top: 4px;
}

nav {
	display: flex;
	align-items: center;
	gap: 24px;
}

nav a {
	color: var(--white);
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	transition:
		.5s;
	text-transform: uppercase;
}

nav a:hover {
	background: linear-gradient(90deg, var(--pink), var(--blue));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.btn-reach-us {
	background: var(--blue);
	color: var(--white) !important;
	padding: 10px 26px;
	border-radius: 10px;
}

.btn-reach-us:hover {
	background: var(--pink) !important;
	-webkit-text-fill-color: #fff;
}

.menu-icon {
	display: none;
	font-size: 28px;
	cursor: pointer;
	color: var(--white);
}

.btn {
	padding: 14px 30px;
	border-radius: 40px;
	border: none;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	transition: .3s;
}

.pink-btn {
	background: var(--pink);
	color: #fff !important;
	box-shadow: 0 0 25px rgba(255, 162, 220, .35);
}

.pink-btn:hover {
	transform: translateY(-2px);
}

/* SCROLL EFFECT */
header {
	transition: 0.5s;
}

.main-header.scrolled {
	backdrop-filter: blur(18px);
	/* background: rgba(23,20,48,.88); */
	background-color:
		var(--white);
	box-shadow: 0 15px 45px rgba(0, 0, 0, .25);
}

.main-header.scrolled nav a,
.main-header.scrolled .menu-icon,
.main-header.inner-header nav a,
.main-header.inner-header .menu-icon {
	color: var(--blue);
}

.logo-sticky,
.navbar,
.main-header.scrolled .logo-icon {
	display: none;
}

.navbar,
.main-header.scrolled .logo-sticky {
	display: inline-block;
}

.main-header.inner-header .logo-icon {
	display: none;
}

.main-header.inner-header .logo-sticky {
	display: inline-block;
}

.wrap-header {
	width: 100%;
	position: relative;
	display: flex;
	align-items:
		center;
	justify-content: space-between;
}

/* VIDEO */
.video-section {
	position: relative;
	width: 100%;
	height: 110vh;
	overflow: hidden;
}

.hero-video-wrap {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-video-wrap:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	/* background:
radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 35%), linear-gradient(135deg,#2d3576 0%, #4d427d 40%, #704d84 100%); */
	background-color: rgba(0, 0, 0, 0.4);
	opacity: .8;
}

.video-section video {
	position: absolute;
	top: 0;
	left:
		0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-video-controls {
	position: absolute;
	right: 28px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 20px;
	border-radius: 50px;
	padding: 5px;
	background: rgba(231, 139, 195, .14);
	backdrop-filter: blur(12px);
}

.hero-ctrl-btn {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	border: none;
	background: transparent;
	color: #ffffffe3;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .25s ease, border-color .25s ease;
	backdrop-filter: blur(4px);
}

.hero-ctrl-btn:hover {
	background: rgba(0, 0, 0, 0.6);
	border-color: #fff;
}

.content {
	position: relative;
	z-index: 2;
	height: 100%;
	color: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	/* changed from 'center' to 'flex-start'
*/
	text-align: left;
	/* already left, good */
	padding: 20px;
	padding-left: 60px;
	padding-top: 40px;
	opacity: 1;
	transition: opacity 0.6s ease;
}

.content h1 {
	font-size: 65px;
	max-width: 1000px;
	margin-left: 0;
	margin-right: auto;
	font-family: "Lora", serif;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 70px;
}

.content h1 span {
	text-transform: uppercase;
	color: white;
	background: var(--blue);
	border-radius: 100px;
	padding: 3px 15px;
	font-weight: 700;
	line-height: 100px;
}

.content p {
	font-size: 19px;
	line-height: 1.5;
	max-width: 45%;
	margin: 20px 0 10px;
}

.join-btn {
	display: flex;
	gap: 0px;
	margin-top: 10px;
}

/*======================== Wellness section ==========================*/
/* .section {
  padding: 80px 38px
}

.section small {
  letter-spacing: 2px;
  color: var(--lightPink);
  font-size: 16px
}

.section h2 {
  font-size: 48px;
  line-height: .95;
  font-weight: 700;
  margin: 18px 0
}

.section h2 span {
  color: var(--slpink);
  font-style: italic
}

.section>p {
  font-size:
    16px;
  line-height: 1.7;
  color: var(--lightBlue);
  margin-bottom: 45px
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.card {
  border: 1px solid var(--brdrClr);
  border-radius: 12px;
  padding: 28px 18px;
  min-height: 190px;
  background:
    var(--offWhite)
}

.icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--deepPink);
  color: var(--white);
  display: grid;
  place-items: center;
  margin: 18px 0
}

.card small {
  color: var(--xsBlue)
}

.card h3 {
  font-size: 22px;
  line-height:
    1;
  margin-bottom: 12px
}

.card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dpBlue)
}

.bottom {
  height: 100px;
  background: linear-gradient(135deg, #10265a, #25336d)
}

.mid-head p {
  margin-bottom: 40px;
}

.mid-head {
  max-width: 60%;
  margin: 0 auto;
} */


/* ============================================
   THE CARE MANIFESTO SECTION - EXACTLY LIKE IMAGE
   ============================================ */

.manifesto-section {
	padding: 80px 0 40px;
	width: 1320px;
	margin: 0 auto;
}

.manifesto-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 80px;
}

.manifesto-left {
	flex: 1;
}

.manifesto-title {
	margin: 0;
	line-height: .9;
	font-weight: 700;
	color: #344B73;
	font-size: clamp(60px, 8vw, 130px);
	font-family: 'Lora', serif;
}

.manifesto-title span {
	display: block;
	color: #AF6B89;
	font-style: italic;
	font-weight: 700;
}

.manifesto-right {
	width: 420px;
	flex-shrink: 0;
}

.manifesto-content {
	border-left: 2px solid rgba(175, 107, 137, .25);
	padding-left: 28px;
}

.manifesto-content h4 {
	color: #344B73;
	font-size: 24px;
	line-height: 1.25;
	margin: 0 0 18px;
	font-family: 'Lora', serif;
	font-weight: 700;
}

.manifesto-content p {
	color: #4A5068;
	font-size: 18px;
	line-height: 1.8;
	margin: 0;
}

.manifesto-divider {
	height: 1px;
	background: #d9dde7;
	margin-top: 50px;
}


.cards-section {
	max-width: 1320px;
	margin: 0 auto;
	padding: 80px 10px;
}

/* === CARD BASE === */
.feature-card {
	border-radius: 20px;
	border: none;
	padding: 32px 28px 28px;
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: all .35s ease;
}

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

.card-1 {
	background: linear-gradient(to bottom,
			rgba(175, 107, 137, 0.2),
			transparent);
	box-shadow: 0 8px 32px rgba(180, 130, 155, 0.18);
}

.card-2 {
	background: linear-gradient(to bottom,
			rgba(52, 75, 115, 0.2),
			transparent);
	box-shadow: 0 8px 32px rgba(120, 145, 175, 0.18);
}

.card-3 {
	background: linear-gradient(to bottom,
			rgba(175, 107, 137, 0.2),
			transparent);
	box-shadow: 0 8px 32px rgba(180, 130, 150, 0.18);
}

.card-4 {
	background: linear-gradient(to bottom,
			rgba(52, 75, 115, 0.2),
			transparent);
	box-shadow: 0 8px 32px rgba(120, 135, 170, 0.18);
}

/* === CARD HEADER ROW === */

.card-header-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
}

/* === FADED NUMBER === */

.card-number {
	font-size: 56px;
	font-weight: 700;
	line-height: 1;
	color: rgba(100, 110, 140, 0.28);
	font-family: 'Lora', serif;
	letter-spacing: -1px;
	user-select: none;
	transition: all .35s ease;
}

/* === ICON BOX === */

.card-icon-box {
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.82);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
	transition: all .35s ease;
}

.card-icon-box svg {
	width: 22px;
	height: 22px;
}

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

.card-body-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* === HEADING === */

.card-heading {
	font-size: 1.15rem;
	line-height: 22px;
	font-weight: 800;
	color: #344B73;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	margin-bottom: 14px;
	font-family: 'Lora', serif;
}

/* === DIVIDER === */

.card-divider {
	width: 28px;
	height: 2.5px;
	background-color: #a0a8bf;
	margin-bottom: 20px;
	border-radius: 2px;
	transition: all .35s ease;
}

/* === PARAGRAPH TEXT === */

.card-text {
	font-size: 13px;
	color: #4a5068;
	line-height: 1.65;
	margin-bottom: 2px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
}

.card-text:last-of-type {
	margin-bottom: 0;
}

/* === SPACER === */

.card-spacer {
	flex: 1;
}

/* === ARROW BUTTON === */

.card-arrow-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.72);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	align-self: flex-end;
	margin-top: 28px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all .35s ease;
}

.card-arrow-btn:hover {
	background: rgba(255, 255, 255, 0.95);
}

.card-arrow-btn svg {
	width: 18px;
	height: 18px;
	color: #3a4570;
	transition: all .35s ease;
}

/* === GRID COLUMN GAPS === */

.row.cards-row {
	--bs-gutter-x: 22px;
	--bs-gutter-y: 22px;
}


/* === ICON COLORS === */

.card-1 .card-icon-box svg {
	color: rgb(175, 107, 137);
}

.card-2 .card-icon-box svg {
	color: #5a7aaa;
}

.card-3 .card-icon-box svg {
	color: #c06878;
}

.card-4 .card-icon-box svg {
	color: #4a5a8a;
}

/* === PINK ARROW DEFAULT === */

.card-arrow-btn.pink,
.card-arrow-btn.pink svg {
	color: rgb(175, 107, 137);
	stroke: rgb(175, 107, 137);
}

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

.feature-card:hover {
	transform: translateY(-12px);
}

.feature-card:hover .card-number {
	color: rgba(52, 75, 115, .65);
}

/* CARD 1 & CARD 3 */

.card-1:hover,
.card-3:hover {
	box-shadow: 0 20px 50px rgba(175, 107, 137, .22);
}

.card-1:hover .card-divider,
.card-3:hover .card-divider {
	background: rgb(175, 107, 137);
	width: 60px;
}

.card-1:hover .card-arrow-btn,
.card-3:hover .card-arrow-btn {
	background: rgb(175, 107, 137);
	transform: rotate(-45deg);
}

.card-1:hover .card-arrow-btn svg,
.card-3:hover .card-arrow-btn svg {
	color: #fff;
	stroke: #fff;
}

.card-1:hover .card-icon-box,
.card-3:hover .card-icon-box {
	box-shadow: 0 10px 25px rgba(175, 107, 137, .30);
	transform: translateY(-3px);
}

/* CARD 2 & CARD 4 */

.card-2:hover,
.card-4:hover {
	box-shadow: 0 20px 50px rgba(52, 75, 115, .22);
}

.card-2:hover .card-divider,
.card-4:hover .card-divider {
	background: #344B73;
	width: 60px;
}

.card-2:hover .card-arrow-btn,
.card-4:hover .card-arrow-btn {
	background: #344B73;
	transform: rotate(-45deg);
}

.card-2:hover .card-arrow-btn svg,
.card-4:hover .card-arrow-btn svg {
	color: #fff;
	stroke: #fff;
}

.card-2:hover .card-icon-box,
.card-4:hover .card-icon-box {
	box-shadow: 0 10px 25px rgba(52, 75, 115, .30);
	transform: translateY(-3px);
}


/*======================== Enabled sec ==========================*/
.app-showcase {
	position: relative;
	padding: 80px 0;
	background: transparent;
	overflow: hidden;
}

.app-showcase h2 {
	font-size: 52px;
	font-weight: 800;
	color: var(--blue);
	line-height: 1;
	letter-spacing: -2.5px;
	margin: 0 0 4px;
}

.app-showcase h2 span {
	color: var(--pink);
}

.lead-text {
	font-size: 17px;
	line-height: 1.75;
	color: var(--lightBlue);
	margin: 18px 0 22px;
	max-width: 460px;
}

.modern-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin-bottom: 36px;
}

.modern-card {
	padding: 22px;
	border-radius: 20px;
	background: var(--white);
	border: 1.5px solid #eaecf5;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.modern-card:hover {
	border-color: #c6cbe8;
	box-shadow: 0 6px 28px rgba(52, 75, 115, 0.09);
}

.modern-card span {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	border: none;
	margin-bottom: 14px;
}

.modern-card span i {
	font-size: 17px;
}

.ic-bg-pink {
	background: #fdf0f5;
}

.ic-bg-pink i {
	color: var(--pink);
}

.ic-bg-blue {
	background: #eef1fb;
}

.ic-bg-blue i {
	color: var(--blue);
}

.ic-bg-teal {
	background: #e8faf4;
}

.ic-bg-teal i {
	color: #1d9e75;
}

.ic-bg-amber {
	background: #fdf6e8;
}

.ic-bg-amber i {
	color: #c07010;
}

.modern-card h5 {
	font-weight: 700;
	color: var(--smBlue);
	font-size: 15px;
	margin-bottom: 5px;
}

.modern-card p {
	font-size: 13px;
	color: var(--lightBlue);
	line-height: 1.5;
	margin: 0;
}

.gradient-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 32px;
	border-radius: 50px;
	background: var(--pink);
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: opacity 0.2s, transform 0.15s;
}

.gradient-btn:hover {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 32px;
	border-radius: 50px;
	background: var(--blue);
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: opacity 0.3s, transform 0.20s;
	transform: translateY(-1px);
}

/* Right side */
.visual-wrap {
	position: relative;
	min-height: 580px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.deco-ring {
	position: absolute;
	border-radius: 50%;
	border: 1.5px dashed #d6daf0;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.deco-ring-1 {
	width: 340px;
	height: 340px;
}

.deco-ring-2 {
	width: 490px;
	height: 490px;
	border-color: #eceef8;
	border-width: 1px;
}

.app-img-frame {
	position: relative;
	z-index: 2;
	width: 275px;
	min-height: 550px;
	border-radius: 40px;
	border: 2px dashed #c6cbe8;
	background: #f7f9ff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-align: center;
	padding: 24px;
	overflow: hidden;
}

.app-img-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 34px;
	position: absolute;
	inset: 0;
	display: block;
}

.app-img-frame i {
	font-size: 40px;
	color: #c6cbe8;
}

.placeholder-text {
	font-size: 12px;
	color: #aab2d0;
	line-height: 1.6;
}

.float-card {
	position: absolute;
	z-index: 4;
	padding: 10px 18px;
	border-radius: 50px;
	background: var(--white);
	border: 1.5px solid #eaecf5;
	box-shadow: 0 8px 28px rgba(52, 75, 115, 0.10);
	font-size: 13px;
	font-weight: 600;
	color: var(--smBlue);
	display: flex;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
	height: auto;
}

.float-card.top {
	top: 100px;
	right: 0;
	background: #ffeaff;
	color: #aa4cc2;
	font-size: 16px;
}

.float-card.bottom {
	bottom: 110px;
	left: 0;
	background: #f0ecff;
	color: #a68dff;
	font-size: 16px;
}

.float-card.middle {
	top: 52%;
	right: -12px;
	background: var(--blue);
	color: var(--white);
	border: none;
	font-size: 12px;
	padding: 9px 16px;
}

/* Cascading style slider */
.care-stories {
	position: relative;
	padding: 120px 0;
	overflow: hidden;
}

.story-title {
	font-size: 72px;
	font-weight: 700;
	letter-spacing: -3px;
	color: var(--blue);
	width: 446px;
	margin: 0 auto 16px;
	line-height: 65px;
}

.story-text {
	color: #6b6f8f;
	font-size: 18px;
}

.story-slider {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 580px;
	margin-top: 60px;
}

.story-card {
	position: relative;
	width: 310px;
	padding: 18px;
	border-radius: 30px;
	background: rgba(255, 255, 255, .68);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, .9);
	box-shadow: 0 25px 70px rgba(45, 53, 118, .10);
	transition: .5s ease;
	overflow: visible;
}

.story-card img {
	width: 100%;
	height: 230px;
	object-fit: cover;
	border-radius: 22px;
}

.active-card {
	width: 390px;
	transform: scale(1.08);
	z-index: 5;
	background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(240, 235, 255, .92));
	border: 1px solid rgba(231, 139, 195, .18);
	box-shadow: 0 35px 90px rgba(45, 53, 118, .20), 0 15px 50px rgba(231, 139, 195, .18);
}

.active-card img {
	height: 270px;
}

.side-card {
	opacity: .55;
	filter: grayscale(1);
	transform: scale(.92);
}

.side-card:hover {
	opacity: .95;
	filter: grayscale(0);
	transform: scale(.95) translateY(-10px);
}

.verified {
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	padding: 9px 24px;
	border-radius: 30px;
	background: #9ca3af;
	color: var(--white);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	z-index: 10;
	box-shadow: 0 12px 30px rgba(45, 53, 118, .20);
}

.active-card .verified {
	background: var(--pink);
}

.story-body {
	padding: 24px 10px 8px;
}

.meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 18px;
}

.meta span {
	padding: 7px 14px;
	border-radius: 20px;
	background: rgba(231, 139, 195, .15);
	color: var(--pink);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.meta small {
	color: #8a8ea8;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 11px;
}

.story-body h4 {
	min-height: 90px;
	color: #2d3576;
	font-size: 15px;
	line-height: 1.4;
	font-weight: 500;
}

.rating {
	border-top: 1px solid rgba(77, 66, 125, .15);
	margin-top: 24px;
	padding-top: 18px;
	color: #f5a623;
	letter-spacing: 3px;
	font-size: 20px;
}

.rating b {
	float: right;
	color: #f5a623;
	font-size: 14px;
	letter-spacing: 0;
}

.slider-controls {
	display: flex;
	justify-content: center;
	gap: 18px;
	margin-top: -20px;
	position: relative;
	z-index: 20;
}

.slider-btn {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 1px solid rgba(231, 139, 195, .25);
	background: rgba(255, 255, 255, .8);
	color: #4d427d;
	font-size: 34px;
	line-height: 1;
	backdrop-filter: blur(14px);
	box-shadow: 0 18px 40px rgba(45, 53, 118, .14);
	transition: .3s ease;
}

.slider-btn:hover {
	background: var(--pink);
	color: var(--white);
	transform: translateY(-4px);
}

.slide-next.active-card {
	animation: slideNextActive .55s cubic-bezier(.22, 1, .36, 1);
}

.slide-next.side-card {
	animation: slideNextSide .55s cubic-bezier(.22, 1, .36, 1);
}

.slide-prev.active-card {
	animation: slidePrevActive .55s cubic-bezier(.22, 1, .36, 1);
}

.slide-prev.side-card {
	animation: slidePrevSide .55s cubic-bezier(.22, 1, .36, 1);
}

@keyframes slideNextActive {
	0% {
		opacity: 0;
		transform: translateX(120px) scale(.88) rotate(2deg);
	}

	100% {
		opacity: 1;
		transform: translateX(0) scale(1.08);
	}
}

@keyframes slideNextSide {
	0% {
		opacity: 0;
		transform: translateX(120px) scale(.88) rotate(2deg);
	}

	100% {
		opacity: .55;
		transform: translateX(0) scale(.92);
	}
}

@keyframes slidePrevActive {
	0% {
		opacity: 0;
		transform: translateX(-120px) scale(.88) rotate(-2deg);
	}

	100% {
		opacity: 1;
		transform: translateX(0) scale(1.08);
	}
}

@keyframes slidePrevSide {
	0% {
		opacity: 0;
		transform: translateX(-120px) scale(.88) rotate(-2deg);
	}

	100% {
		opacity: .55;
		transform: translateX(0) scale(.92);
	}
}

/* ========== EXPLORE OUR LIBRARY ========== */
.library-section {
	padding: 100px 0;
}

.library-row {
	align-items: stretch;
}

.library-title {
	font-size: 56px;
	font-weight: 700;
	letter-spacing: -3px;
	color: var(--blue);
	margin: 0 0 18px;
}

.library-text {
	max-width: 480px;
	margin-bottom: 32px;
}

/* BENTO GRID */
.library-bento {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* ARTICLE CARD */
.library-article-card {
	position: relative;
	height: 100%;
	min-height: 460px;
	border-radius: 30px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background-size: cover;
	background-position: center;
	box-shadow: 0 25px 70px rgba(45, 53, 118, .10);
	transition: .35s ease;
}

.library-article-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 30px;
	background: linear-gradient(180deg, rgba(52, 75, 115, .05) 0%, rgba(20, 26, 51, .85) 100%);
}

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

.library-article-card .badge-pill {
	position: relative;
	z-index: 1;
	width: max-content;
}

.library-article-card h4 {
	position: relative;
	z-index: 1;
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 14px;
}

.library-meta {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, .85);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* VIDEO CARD */
.library-video-card {
	position: relative;
	flex: 1;
	min-height: 200px;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 25px 70px rgba(45, 53, 118, .10);
}

.library-video-card img,
.library-video-card video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.library-video-caption {
	position: absolute;
	left: 22px;
	bottom: 18px;
	z-index: 2;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
}

/* PHOTO GALLERY CARD */
.library-gallery-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 30px;
	padding: 24px;
	background: rgba(255, 255, 255, .78);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, .9);
	box-shadow: 0 25px 70px rgba(45, 53, 118, .10);
	text-decoration: none;
	transition: .35s ease;
}

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

.library-gallery-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.library-gallery-icon {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(231, 139, 195, .14);
	color: var(--pink);
	font-size: 18px;
}

.library-gallery-thumbs {
	display: flex;
}

.library-gallery-thumbs img {
	width: 54px;
	height: 54px;
	border-radius: 12px;
	object-fit: cover;
	border: 3px solid #fff;
	box-shadow: 0 8px 18px rgba(45, 53, 118, .15);
}

.library-gallery-thumbs img:not(:first-child) {
	margin-left: -18px;
}

.library-gallery-card h4 {
	font-size: 20px;
	font-weight: 700;
	color: var(--blue);
	margin: 0 0 6px;
}

.library-gallery-link {
	color: var(--pink);
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
}


.pu-story-section {
	padding:
		60px 0;
	background: radial-gradient(circle at 20% 20%, rgba(231, 139, 195, .18), transparent 25%), radial-gradient(circle at 80% 70%, rgba(77, 66, 125, .14), transparent 30%), #f8fafc;
	overflow: hidden;
}

.pu-story-title {
	font-size: 48px;
	font-weight: 700;
	letter-spacing: -2px;
	color:
		#10192f;
	margin-bottom: 60px;
}

/* SLIDER */
.pu-story-row {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 560px;
}

.pu-story-card {
	width: 330px;
	padding: 18px;
	border-radius: 30px;
	background: rgba(255, 255, 255, .85);
	backdrop-filter:
		blur(15px);
	box-shadow: 0 25px 70px rgba(45, 53, 118, .12);
	transition: .5s;
	position: relative;
}

.pu-story-card-center {
	width: 400px;
	transform: scale(1.05);
	z-index: 10;
}

.pu-story-card-side {
	opacity: .55;
	transform: scale(.90);
	filter: grayscale(.7);
}

/* VIDEO */
.pu-story-video-box {
	position: relative;
	height: 220px;
	border-radius: 22px;
	overflow: hidden;
	background: #111827;
}

.pu-story-card-center .pu-story-video-box {
	height: 260px;
}

.pu-story-video-box video {
	width: 100%;
	height: 100%;
	object-fit:
		cover;
}

/* PLAY + PAUSE BUTTON */
.pu-story-play-btn,
.pu-story-pause-btn {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	color: white;
	background: rgba(255, 255, 255, .18);
	backdrop-filter:
		blur(20px);
	border: 1px solid rgba(255, 255, 255, .4);
	transition: .4s;
	z-index: 20;
}

.pu-story-play-btn {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70px;
	height: 70px;
	font-size: 28px;
}

.pu-story-pause-btn {
	top: 15px;
	right: 15px;
	width: 45px;
	height: 45px;
	font-size: 18px;
	display: none;
}

.pu-story-play-btn:hover {
	transform: translate(-50%, -50%) scale(1.1);
	background: var(--pink);
}

.pu-story-pause-btn:hover {
	transform: scale(1.1);
	background:
		var(--pink);
}

/* TAG */
.pu-story-tag {
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	padding: 8px 16px;
	border-radius: 30px;
	background: var(--blue);
	color: white;
	font-size: 11px;
	font-weight:
		700;
	z-index: 25;
}

/* CONTENT */
.pu-story-body {
	padding: 18px 8px;
}

.pu-story-meta {
	display: flex;
	justify-content: space-between;
	margin-bottom: 14px;
}

.pu-story-meta span {
	padding: 7px 12px;
	border-radius: 20px;
	background: rgba(231, 139, 195,
			.14);
	color: #c55a95;
	font-size: 11px;
	font-weight: 700;
}

.pu-story-price {
	font-weight: 700;
	color: #4d427d;
}

.pu-story-card-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--blue);
	margin-bottom: 10px;
}

.pu-story-desc {
	color: #6b7280;
	font-size:
		14px;
	line-height: 1.8;
	min-height: 70px;
}

.pu-story-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, .05);
	padding-top: 18px;
}

.pu-story-stars {
	color: #f59e0b;
}

.pu-story-read-btn {
	border: none;
	padding: 10px 18px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 500;
	background: var(--pink);
	color: #ffffff;
}

/* CONTROLS */
.pu-story-controls {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: -4px;
}

.pu-story-nav-btn {
	width: 55px;
	height: 55px;
	border: none;
	border-radius: 50%;
	font-size: 28px;
	background: white;
	box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
	transition: .4s;
	z-index: 10;
}

.pu-story-nav-btn:hover {
	background: var(--pink);
	color: white;
}

/* ANIMATION */
.pu-story-slide-next {
	animation: puSlideNext .6s;
}

.pu-story-slide-prev {
	animation: puSlidePrev .6s;
}

@keyframes puSlideNext {
	from {
		opacity: 0;
		transform: translateX(100px);
	}

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

@keyframes puSlidePrev {
	from {
		opacity: 0;
		transform: translateX(-100px);
	}

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

/* PU Section */
.pu-section {
	padding: 80px 0;
}

/* MAIN CARD */
.pu-card {
	position: relative;
	border-radius: 42px;
	padding: 60px;
	overflow: hidden;
	background: rgba(255,
			255, 255, .72);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, .8);
	box-shadow: 0 35px 90px rgba(45, 53, 118, .12);
}

/* LEFT CONTENT */
.pu-content span {
	display: inline-block;
	padding: 10px 18px;
	border-radius: 40px;
	background:
		rgba(231, 139, 195, .14);
	color: var(--mnPink);
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 24px;
}

.pu-content h2 {
	width: 350px;
	font-size: 48px;
	line-height: .95;
	font-weight: 700;
	letter-spacing: -3px;
	color: var(--blue);
	margin-bottom: 18px;
	line-height: 1.05;
}

.pu-content h4 {
	font-size: 26px;
	font-weight: 600;
	color: var(--pink);
	margin-bottom: 24px;
}

.pu-content p {
	font-size: 17px;
	line-height: 1.8;
	color: var(--bgGrey);
	max-width: 500px;
	margin-bottom: 34px;
}

/* BUTTON
*/
.theme-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	border-radius: 50px;
	background: var(--pink);
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	transition: .3s ease;
	box-shadow: 0 20px 40px rgba(231, 139, 195, .25);
}

.theme-btn:hover {
	transform: translateY(-4px);
	color: var(--white);
}

/* IMAGE AREA */
.image-wrapper {
	position: relative;
	min-height: 420px;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* MAIN IMAGE */
.main-image {
	width: 100%;
	height: 420px;
	border-radius: 36px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 30px 80px rgba(45, 53, 118, .22);
}

.main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 1s ease;
}

.main-image:hover img {
	transform: scale(1.06);
}

/* FLOATING IMAGE */
.floating-img {
	position: absolute;
	width: 220px;
	height: 160px;
	border-radius: 26px;
	overflow: hidden;
	border: 8px solid var(--white);
	box-shadow: 0 25px 60px rgba(45, 53, 118, .25);
	transition: .5s ease;
}

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

.floating-top {
	top: -75px;
	right: -40px;
	transform: rotate(8deg);
}

.floating-bottom {
	bottom: -30px;
	left: -20px;
	transform: rotate(-7deg);
}

.floating-img:hover {
	transform:
		scale(1.05) rotate(0deg);
}

/* GLOW EFFECT */
.glow {
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(231, 139, 195, .22), transparent 70%);
	filter: blur(30px);
	z-index: -1;
}

/* Contact form
*/
/* ===============================
   Modern Contact Section
=================================*/

.contact-modern {
	padding: 60px 0;
	overflow: hidden;
	position: relative;
}

.contact-shell {
	position: relative;
	border-radius: 42px;
	padding: 35px;
	overflow: hidden;
}

/* Glow effect */
.contact-shell::before {
	/* content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(231, 139, 195, .22);
  filter: blur(55px);
  right: -120px;
  top: -120px; */
}

/* Soft floating shape */
.contact-shell::after {
	content: "";
	position: absolute;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .05);
	bottom: -100px;
	left: -70px;
	backdrop-filter: blur(10px);
}

.contact-info-panel {
	position: relative;
	z-index: 2;
	padding: 50px;
	color: #fff;
}

.contact-info-panel h2 {
	font-size: 52px;
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -2px;
	margin-bottom: 22px;
	background: var(--blue);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.contact-info-panel p {
	color: #797979;
	font-size: 16px;
	line-height: 1.9;
	max-width: 500px;
	margin-bottom: 34px;
}

.info-list {
	display: grid;
	gap: 18px;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 16px 18px;
	border-radius: 22px;
	background: rgba(39, 80, 154, .08);
	border: 1px solid rgba(39, 80, 154, .08);
	backdrop-filter: blur(14px);
	transition: all .35s ease;
}

.info-item:hover {
	transform: translateX(8px);
	background: rgba(255, 255, 255, .14);
}

.info-item i {
	width: 50px;
	height: 50px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	background: transparent;
	color: var(--blue);
	/* border: 2px solid rgb(199, 199, 199); */
	font-size: 18px;
	flex-shrink: 0;
}

.info-item span {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: .75;
	margin-bottom: 2px;
	color: var(--blue);
}

.info-item b {
	font-size: 15px;
	font-weight: 600;
	color: var(--blue);
}

.info-item b:hover {
	color: var(--blue);
}

/* ===============================
   Form Card
=================================*/

.contact-form-card {
	position: relative;
	z-index: 3;
	padding: 42px;
	border-radius: 34px;
	background: rgba(255, 255, 255, .88);
	backdrop-filter: blur(22px);
	box-shadow: 0 0px 35px rgba(0, 0, 0, .05);
	overflow: hidden;
	margin-left: -50px;
}

/* Inner glow */
.contact-form-card::before {
	/* content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(231, 139, 195, .16);
  top: -60px;
  right: -60px;
  filter: blur(18px); */
}

.contact-form-card h3 {
	position: relative;
	z-index: 2;
	font-size: 34px;
	font-weight: 700;
	color: var(--blue);
	margin-bottom: 8px;
}

.contact-form-card p {
	position: relative;
	z-index: 2;
	color: #6b7280;
	margin-bottom: 28px;
}

/* Form Layout */
#contactForm {
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: relative;
	z-index: 2;
}

/* Inputs */
.form-control,
.form-select {
	height: 58px;
	border: 1px solid rgba(77, 66, 125, .12);
	border-radius: 18px;
	background: rgba(255, 255, 255, .95);
	color: var(--blue);
	padding: 14px 18px;
	font-size: 14px;
	transition: all .3s ease;
}

textarea.form-control {
	height: 100px;
	resize: none;
	padding-top: 16px;
}

.form-control:hover,
.form-select:hover {
	border-color: #d870ad;
}

.form-control:focus,
.form-select:focus {
	border-color: #e78bc3;
	box-shadow: 0 0 0 4px rgba(231, 139, 195, .16);
	background: #fff;
}

/* Button */
.submit-btn {
	position: relative;
	overflow: hidden;
	width: 100%;
	border: 0;
	padding: 10px 18px;
	border-radius: 18px;
	background: var(--pink);
	color: #ffffff;
	font-weight: 700;
	font-size: 15px;
	transition: all .35s ease;
}

.submit-btn::before {
	content: "";
	position: absolute;
	width: 0%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(255, 255, 255, .14);
	transition: .5s;
}

.submit-btn:hover::before {
	width: 100%;
}

.submit-btn:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(231, 139, 195, .35);
}

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

@media (max-width: 991px) {

	.contact-form-card {
		margin-left: 0;
	}

	.contact-info-panel,
	.contact-form-card {
		padding: 34px;
	}

	.contact-info-panel h2 {
		font-size: 40px;
	}
}

@media (max-width: 768px) {

	.contact-modern {
		padding: 80px 0 50px;
	}

	.contact-shell {
		padding: 20px;
		border-radius: 28px;
	}

	.contact-info-panel,
	.contact-form-card {
		padding: 26px;
	}

	.contact-info-panel h2 {
		font-size: 32px;
		line-height: 1.15;
	}

	.contact-form-card h3 {
		font-size: 28px;
	}

	.info-item {
		padding: 14px;
	}
}

.footer-modern {
	background: #263859;
	color: white;
	padding: 70px 0 0;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom:
		18px;
}

.footer-logo span {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: var(--pink);
	font-weight: 700;
}

.footer-modern p,
.footer-modern a,
.footer-modern li {
	color: #b9c0d8;
	text-decoration: none;
	font-size: 14px;
}

.footer-modern h5 {
	color: white;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
}

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

.footer-modern li {
	margin-bottom:
		12px;
}

.footer-modern a:hover {
	color: #e78bc3;
}

.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 22px;
}

.footer-social a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, .08);
	color: white;
}

.footer-bottom {
	margin-top: 45px;
	background: #1D2A43;
	border-top: 1px solid #344B73;
}

.footer-bottom .container {
	padding-top: 22px;
	padding-bottom: 22px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-bottom p {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
	color: #b9c0d8;
}

.footer-contact-icon {
	color: var(--pink);
	margin-right: 8px;
}

.footer-tagline {
	color: var(--pink) !important;
	font-weight: 600;
	font-size: 12px;
	text-transform: capitalize;
	letter-spacing: 1px;
	margin: 14px 0 0;
}

.footer-bottom-links {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
}

.footer-bottom-links .footer-tagline {
	margin: 0;
}

/* .form-control,
.form-select {
  margin-bottom: 20px;
} */



/* ========== ASSESSMENT SECTION ========== */
.assessment-section {
	padding: 0 0 90px;
}

.main-title {
	font-size: 90px;
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -3px;
	color: var(--blue);
	margin-bottom: 20px;
}

.assessment-sub-head {
	font-weight: 500;
	font-size: 15px;
	font-family: 'lato';
	color: #7b7979;
}

.lead-text.mb-0 {
	font-size: 22px;
	color: var(--pink);
	font-weight: 700;
	line-height: 27px;
}

/* ========== QUIZ CARD ========== */
.quiz-card {
	max-width: 80%;
	margin: auto;
	padding: 38px;
	border-radius: 34px;
	background: rgba(255, 255, 255, .75);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, .9);
	box-shadow: 0 35px 90px rgba(45, 53, 118, .14);
}

.quiz-head {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid rgba(77, 66, 125, .12);
	margin-bottom: 28px;
}

.quiz-head h3 {
	font-weight: 700;
}

.step-count {
	padding: 8px 14px;
	border-radius: 16px;
	background: #fff;
	color: #e78bc3;
	font-size: 12px;
	font-weight: 700;
}

.question {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 22px;
}

.option {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 17px 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, .75);
	border: 1px solid rgba(231, 139, 195, .15);
	margin-bottom: 14px;
	cursor: pointer;
	transition: .3s;
}

.option:hover,
.option.active {
	background: linear-gradient(135deg, rgba(231, 139, 195, .18), rgba(77, 66, 125, .08));
	border-color: #e78bc3;
	transform: translateX(6px);
}

.circle {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid #e78bc3;
	flex-shrink: 0;
}

.option.active .circle {
	background: #e78bc3;
	box-shadow: inset 0 0 0 4px white;
}

.option span {
	color: #5f6680;
	font-size: 14px;
}

#optionsBox {
	display: grid;
	grid-template-columns: auto auto;
}

.next-btn {
	border: 0;
	padding: 8px 25px;
	border-radius: 40px;
	font-weight: 500;
	background: var(--pink);
	color: #fff;
	font-size: 15px;
	cursor: pointer;
	margin-top: 10px;
}

.next-btn:disabled {
	opacity: .45;
	cursor: not-allowed;
}

/* ========== CARE TYPE SELECTION ========== */
.care-type-box {
	margin-bottom: 28px;
}

.care-type-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.care-type-options .option {
	margin-bottom: 0;
	justify-content: center;
}

/* ========== QUIZ ACTIONS (SKIP + NEXT) ========== */
.quiz-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.skip-btn {
	border: 1px solid var(--brdrClr);
	padding: 8px 25px;
	border-radius: 40px;
	font-weight: 500;
	background: #fff;
	color: #5f6680;
	font-size: 15px;
	cursor: pointer;
	margin-top: 10px;
	transition: .3s ease;
}

.skip-btn:hover {
	background: #f5f5f5;
	transform: translateY(-2px);
}

/* ========== PLAN CARD ========== */
.plan-card {
	display: none;
	max-width: 620px;
	margin: auto;
	padding: 28px;
	border-radius: 36px;
	background-color: #f9f9f9;
	color: var(--black);
	box-shadow: 0 40px 100px rgba(45, 53, 118, .18);
	animation: fadeUp .7s ease;
	overflow: hidden;
}

.plan-card.show {
	display: block;
}

/* ========== PLAN CARD THUMBNAIL ========== */
.plan-thumb {
	position: relative;
	width: 100%;
	height: 250px;
	border-radius: 28px;
	overflow: hidden;
	margin-bottom: 28px;
	background: #000;
}

.plan-thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.thumb-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .70), rgba(0, 0, 0, .12));
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
}

.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .20);
	border: 2px solid rgba(255, 255, 255, .55);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: .3s ease;
	backdrop-filter: blur(6px);
}

.play-btn i {
	color: #fff;
	font-size: 20px;
	margin-left: 3px;
}

.plan-thumb:hover .play-btn {
	transform: translate(-50%, -50%) scale(1.10);
	background: rgba(255, 255, 255, .30);
}

.thumb-content span {
	color: #ffd3eb;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.thumb-content h4 {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	margin-top: 8px;
	line-height: 1.2;
}

/* BADGE */
.plan-card h3 {
	font-size: 25px;
	font-weight: 700;
	color: var(--blue);
}

.price {
	font-size: 22px;
	font-weight: 700;
	color: var(--blue);
	margin: 18px 0;
}

.plan-card p {
	color: #5f6680;
	line-height: 1.7;
	font-size: 13px;
}

.plan-card ul {
	padding: 0;
	list-style: none;
	margin: 25px 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.plan-card li {
	padding: 7px 0;
	border-bottom: 1px solid rgba(45, 53, 118, .08);
	color: #4d5672;
	font-weight: 600;
	font-size: 13px;
}

/* BUTTONS */
.select-plan,
.compare-btn {
	border: 0;
	padding: 8px 18px;
	border-radius: 40px;
	font-weight: 600;
	margin: 6px;
	transition: .3s ease;
	font-size: 13px;
	cursor: pointer;
}

.select-plan {
	background: #fff;
	color: #2d3576;
	border: 1px solid var(--brdrClr);
}

.select-plan:hover {
	transform: translateY(-3px);
}

.compare-btn {
	background: var(--pink);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .25);
}

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

/* ========== RETAKE BUTTON ========== */
.retake-btn {
	border: 1px solid var(--brdrClr);
	padding: 8px 18px;
	border-radius: 40px;
	font-weight: 600;
	margin: 6px;
	font-size: 13px;
	background: #fff;
	color: #5f6680;
	cursor: pointer;
	transition: .3s ease;
}

.retake-btn:hover {
	background: #f5f5f5;
	transform: translateY(-2px);
}

.retake-top {
	display: inline-block;
	margin-bottom: 28px;
}

/* ========== COMPARISON SECTION ========== */
.comparison-section {
	display: none;
	animation: fadeUp .7s ease;
}

.comparison-section.show {
	display: block;
}

.comparison-section h2 {
	font-size: 48px;
	font-weight: 700;
	color: var(--blue);
}

.compare-text {
	color: #667085;
	margin-bottom: 20px;
}

/* ========== COMPARE TABS ========== */
.compare-tabs {
	display: inline-flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
	list-style: none;
	padding: 8px;
	margin: 0 auto 36px;
	border-bottom: 0;
	border-radius: 50px;
	background: rgba(255, 255, 255, .75);
	backdrop-filter: blur(14px);
	box-shadow: 0 20px 50px rgba(45, 53, 118, .10);
}

.compare-tab-btn {
	border: 0;
	background: transparent;
	color: #4d427d;
	font-weight: 900;
	font-size: 13px;
	padding: 14px 28px;
	border-radius: 40px;
	cursor: pointer;
	transition: .3s ease;
	font-family: 'Lato', sans-serif;
}

.compare-tab-btn:hover {
	background: transparent;
}

.compare-tab-btn.active {
	background: #955576;
	color: #fff;
	border-color: transparent;
	box-shadow: 0 14px 35px rgba(231, 139, 195, .35);
}

/* ========== COMPARE CARDS ========== */
.compare-card {
	position: relative;
	padding: 13px;
	border-radius: 30px;
	background: rgba(255, 255, 255, .78);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, .9);
	box-shadow: 0 25px 70px rgba(45, 53, 118, .10);
	text-align: left;
	transition: .35s ease;
	width: 100%;
	display: flex;
	flex-direction: column;
	transform: scale(0.9);
}

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

.compare-card>div>span {
	display: inline-block;
	padding: 8px 14px;
	border-radius: 30px;
	background: rgba(231, 139, 195, .15);
	color: var(--pink);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	width: max-content;
}

.compare-card h4 {
	font-size: 22px;
	font-weight: 700;
	color: var(--blue);
}

.compare-card h3 {
	font-size: 36px;
	font-weight: 700;
	color: var(--blue);
	margin: 22px 0;
}

.compare-card h3 small {
	font-size: 13px;
	color: #777;
}

.compare-card .plan-price {
	margin: 18px 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.compare-card .plan-price .price-line {
	font-size: 26px;
	font-weight: 700;
	color: var(--blue);
	line-height: 1.2;
}

.compare-card .plan-price .price-line.alt {
	font-size: 22px;
	color: #6b7190;
}

.compare-card .plan-price .price-line small {
	font-size: 13px;
	font-weight: 600;
	color: #777;
}

.card-billing-toggle {
	display: inline-flex;
	gap: 4px;
	padding: 4px;
	margin-bottom: 12px;
	border-radius: 50px;
	background: rgba(45, 53, 118, .06);
	margin-top: 20px;
}

.cbt-btn {
	border: 0;
	background: transparent;
	color: #4d427d;
	font-weight: 800;
	font-size: 12px;
	padding: 4px 12px;
	border-radius: 40px;
	cursor: pointer;
	transition: .3s ease;
	font-family: 'Lato', sans-serif;
}

.cbt-btn.active {
	background: #955576;
	color: #fff;
	box-shadow: 0 10px 25px rgba(231, 139, 195, .35);
}

.compare-card .plan-price .price-line.quarterly,
.compare-card .plan-price .price-line.annual {
	display: none;
}

.compare-card.billing-quarterly .plan-price .price-line.quarterly {
	display: block;
}

.compare-card.billing-annual .plan-price .price-line.annual {
	display: block;
}

.compare-card ul {
	padding: 0;
	list-style: none;
	margin: 10px 0;
	flex-grow: 1;
}

.compare-card li {
	padding: 3px 0;
	color: #5f6680;
	border-bottom: 1px solid rgba(77, 66, 125, .10);
	font-size: 14px;
}

.compare-card li::before {
	content: "✓";
	color: #e78bc3;
	font-weight: 700;
	margin-right: 8px;
}

/* ========== PLAN DETAILS — FEATURE LIST ========== */
.view-details-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: none;
	border: none;
	border-top: 1px dashed rgba(77, 66, 125, .18);
	margin-top: 6px;
	padding: 12px 2px 2px;
	cursor: pointer;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--pink);
}

.view-details-btn .vd-chevron {
	transition: transform .3s ease;
}

.view-details-btn.open .vd-chevron {
	transform: rotate(180deg);
}

.card-details-panel {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height .4s cubic-bezier(.22, 1, .36, 1), opacity .3s ease;
}

.card-details-panel.open {
	max-height: 600px;
	opacity: 1;
	margin: 12px 0 0;
}

.fpd-label {
	font-size: 10px;
	letter-spacing: .07em;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--pink);
	margin: 0 0 8px;
}

.card-feature-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.card-feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 7px 2px;
	font-size: 12.5px;
	font-weight: 500;
	line-height: 1.5;
	color: #6b7190;
	border-bottom: 1px solid rgba(77, 66, 125, .08);
}

.card-feature-list li:last-child {
	border-bottom: none;
}

.card-feature-list li::before {
	content: '✓';
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--pink);
	font-size: 10px;
	margin-top: 3px;
	flex-shrink: 0;
}

/* PLAN ENQUIRY BUTTON */
.compare-card .plan-btn {
	width: 100%;
	padding: 14px;
	border-radius: 40px;
	background: #fff;
	color: #2d3576;
	border: 1px solid var(--brdrClr);
	font-weight: 600;
	margin-top: auto;
	cursor: pointer;
	transition: .3s ease;
}

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

.compare-card.active {
	background-color: #f9f9f9;
	color: var(--black);
	transform: translateY(-10px);
	border: 2px solid rgba(231, 139, 195, .45);
}

.compare-card.active h4,
.compare-card.active h3,
.compare-card.active li {
	color: var(--black);
}

.compare-card.premium {
	background: linear-gradient(135deg, #fff, #fff0f8);
}

/* ========== COMPARE CARD THUMBNAIL ========== */
.card-thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 18px;
	overflow: hidden;
	margin-bottom: 20px;
	background: #000;
}

.card-thumb-img,
.card-thumb video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 0 -60px;
	display: block;
	transition: transform .4s ease;
}

.compare-card:hover .card-thumb-img,
.compare-card:hover .card-thumb video {
	transform: scale(1.04);
}

.card-thumb-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .28);
	display: flex;
	align-items: center;
	justify-content: center;
	/* opacity: 0; */
	transition: opacity .3s ease, background .3s ease;
}

.compare-card:hover .card-thumb-overlay {
	opacity: 1;
	background: rgba(0, 0, 0, .38);
}

.resource-card-thumb .card-thumb-overlay {
	opacity: 1;
}

.card-play-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .22);
	border: 2px solid rgba(255, 255, 255, .60);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: .3s ease;
	backdrop-filter: blur(6px);
}

.card-play-btn i {
	color: #fff;
	font-size: 16px;
	margin-left: 2px;
}

.card-play-btn:hover {
	transform: scale(1.12);
	background: rgba(255, 255, 255, .35);
}

/* ========== VIDEO LIGHTBOX MODAL ========== */
.video-lightbox-modal .modal-content {
	background: #000;
	border: none;
	border-radius: 14px;
	overflow: hidden;
}

.video-lightbox-modal .modal-body video {
	width: 100%;
	max-height: 80vh;
	aspect-ratio: 16 / 9;
	display: block;
}

.resources-page .video-lightbox-modal .modal-body video {
	min-height: 300px;
}

.video-lightbox-modal .video-lightbox-close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	background-color: #fff;
	opacity: 1;
	border-radius: 50%;
	padding: 8px;
}

/* ========== GALLERY LIGHTBOX MODAL ========== */
.resource-card.media-only .resource-card-thumb {
	cursor: pointer;
}

.gallery-lightbox-modal .modal-content {
	background: #000;
	border: none;
	border-radius: 14px;
	overflow: hidden;
}

.gallery-lightbox-modal .modal-body img {
	width: 100%;
	max-height: 80vh;
	object-fit: contain;
	display: block;
}

.gallery-lightbox-modal .gallery-lightbox-close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	background-color: #fff;
	opacity: 1;
	border-radius: 50%;
	padding: 8px;
}

.gallery-lightbox-modal .gallery-lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, .85);
	color: #222;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-lightbox-modal .gallery-lightbox-nav:hover {
	background: #fff;
}

.gallery-lightbox-modal .gallery-lightbox-prev {
	left: 12px;
}

.gallery-lightbox-modal .gallery-lightbox-next {
	right: 12px;
}

/* ========== PLAN CARDS CAROUSEL ========== */
.plan-carousel {
	position: relative;
	padding-top: 18px;
	margin-top: -18px;
	padding-bottom: 4px;
}

.plan-carousel-item {
	height: auto;
}

.plan-carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	margin-top: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--brdrClr);
	box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 5;
	transition: .3s ease;
}

.plan-carousel-nav::after {
	display: none;
}

.plan-carousel-nav:hover {
	background: var(--pink);
	color: #fff;
}

.plan-carousel-prev {
	left: -40px;
}

.plan-carousel-next {
	right: -40px;
}

/* Desktop: plain 3-card row, carousel chrome off */
@media (min-width: 992px) {
	.plan-carousel-nav {
		display: none;
	}
}

/* ========== ANIMATION ========== */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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


.custom-modal {
	border: 0;
	border-radius: 28px;
	padding: 15px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.modal-heading {
	font-size: 22px;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 5px;
}

.modal-subtitle {
	font-size: 14px;
	color: #667085;
	margin: 0;
}

.form-label {
	font-size: 14px;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 10px;
}

.custom-input {
	height: 56px;
	border-radius: 14px;
	border: 1px solid #e5e7eb;
	padding: 12px 16px;
	box-shadow: none;
}

.custom-input:focus,
.custom-textarea:focus {
	border-color: #e78bc3;
	box-shadow: 0 0 0 4px rgba(231, 139, 195, .12);
}

.submit-btn {
	width: 100%;
	height: 58px;
	border: 0;
	border-radius: 50px;
	background: var(--pink);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	transition: .3s ease;
}

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

.card {
	background: linear-gradient(180deg,
			rgba(175, 107, 137, 0.2) 0%,
			rgba(175, 107, 137, 0) 100%);
}

/* ========== CARD DETAIL PAGES ========== */

/* HERO */
.detail-hero {
	padding: 60px 0 0;
	background: radial-gradient(circle at 15% 20%, rgba(231, 139, 195, .16), transparent 25%), radial-gradient(circle at 85% 75%, rgba(77, 66, 125, .14), transparent 30%), linear-gradient(135deg, #fff8fb, #eef1ff);
	overflow: hidden;
}

.detail-title {
	font-size: 52px;
	font-weight: 700;
	letter-spacing: -3px;
	color: var(--blue);
	line-height: 1.05;
	margin: 0px 0 18px;
}

.detail-lead {
	font-size: 17px;
	line-height: 1.8;
	color: var(--bgGrey);
	max-width: 540px;
	margin-bottom: 34px;
}

.detail-hero-actions {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.detail-hero-img {
	position: relative;
	width: 100%;
	height: 460px;
	border-radius: 36px;
	box-shadow: 0 30px 80px rgba(45, 53, 118, .22);
}

.detail-hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 36px;
}

/* CONTENT SECTION */
.detail-section {
	padding: 45px 0 0;
}

.detail-section.alt-bg {
	background: #f9f8fc;
}

.detail-section-head {
	max-width: 720px;
	margin: 0 auto 50px;
	text-align: center;
}

.detail-section-head h2 {
	font-size: 44px;
	font-weight: 700;
	letter-spacing: -2px;
	color: var(--blue);
	margin: 16px 0;
}

.detail-section-head p {
	color: var(--bgGrey);
	font-size: 17px;
	line-height: 1.8;
}

/* HIGHLIGHT QUOTE */
.detail-quote {
	border-left: 3px solid var(--pink);
	padding-left: 28px;
	font-size: 22px;
	line-height: 1.6;
	color: var(--blue);
	font-weight: 600;
	font-style: italic;
	margin: 0;
}

/* FEATURE GRID */
#app-features .row,
.row:has(.detail-feature-card) {
	counter-reset: feature-counter;
}

.detail-feature-card {
	position: relative;
	overflow: hidden;
	height: 100%;
	padding: 30px;
	border-radius: 24px;
	background: rgba(255, 255, 255, .78);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, .9);
	box-shadow: 0 25px 70px rgba(45, 53, 118, .08);
	transition: .35s ease;
	counter-increment: feature-counter;
}

.detail-feature-card::before {
	content: "0" counter(feature-counter);
	position: absolute;
	top: 10px;
	right: 14px;
	font-size: 50px;
	font-weight: 800;
	line-height: 1;
	color: rgba(45, 53, 118, .06);
}

.detail-feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 80px rgba(45, 53, 118, .14);
}

.detail-feature-card.f-navy {
	background: linear-gradient(145deg, rgba(52, 72, 115, 0.07), rgba(52, 72, 115, 0.02));
	border-color: rgba(52, 72, 115, 0.15);
}

.detail-feature-card.f-pink {
	background: linear-gradient(145deg, rgba(175, 107, 137, 0.07), rgba(175, 107, 137, 0.02));
	border-color: rgba(175, 107, 137, 0.2);
}

.detail-feature-icon {
	position: relative;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	background: #fff;
	color: var(--pink);
	box-shadow: 0 10px 25px rgba(45, 53, 118, .12);
	margin-bottom: 20px;
}

.detail-feature-card h5 {
	position: relative;
	font-size: 18px;
	font-weight: 700;
	color: var(--blue);
	margin-bottom: 14px;
}

.detail-feature-divider {
	position: relative;
	width: 34px;
	height: 3px;
	border-radius: 2px;
	background: var(--pink);
	margin-bottom: 16px;
}

.detail-feature-card p {
	position: relative;
	font-size: 14px;
	line-height: 1.7;
	color: var(--bgGrey);
	margin: 0;
}

/* CTA BANNER */
.detail-cta {
	position: relative;
	border-radius: 42px;
	padding: 0px 60px 45px;
	overflow: hidden;
	text-align: center;
	/* background: linear-gradient(135deg, #2d3576, #4d427d); */
	color: #fff;
}

.detail-cta h2 {
	font-size: 55px;
	font-weight: 700;
	letter-spacing: -2px;
	margin-bottom: 16px;
	width: 655px;
	margin: 16px auto;
	color: var(--blue);
}

.detail-cta h2 span {
	color: var(--pink);
}

.detail-cta p {
	font-size: 17px;
	color: rgba(113, 113, 113);
	max-width: 540px;
	margin: 0 auto 30px;
}

/* ========== PU MATE / PU APP DETAIL PAGES ========== */

/* Hero stats row */
.pu-stats-row {
	display: flex;
	gap: 50px;
	margin-top: 36px;
	padding-top: 28px;
	border-top: 1px solid var(--brdrClr);
}

.pu-stat-item h4 {
	font-size: 30px;
	font-weight: 700;
	color: var(--blue);
	margin-bottom: 4px;
}

.pu-stat-item span {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--bgGrey);
}

/* Ghost / outline button */
.ghost-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 30px;
	border-radius: 40px;
	background: #fff;
	color: var(--blue);
	font-weight: 600;
	font-size: 15px;
	border: 1px solid var(--brdrClr);
	transition: .3s ease;
}

.ghost-btn:hover {
	border-color: var(--pink);
	color: var(--pink);
	transform: translateY(-2px);
}

/* Hero image quote overlay */
.pu-hero-quote {
	position: absolute;
	bottom: -15px;
	right: -16px;
	max-width: 260px;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 22px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 25px 60px rgba(45, 53, 118, .18);
}

.pu-hero-quote p {
	font-size: 13px;
	line-height: 1.5;
	color: var(--blue);
	font-weight: 600;
	margin: 0;
}

.pu-quote-author {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, .85);
}

.pu-quote-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--pink);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-family: "Lora", serif;
	color: #fff;
	flex-shrink: 0;
}

/* Floating info card over an image */
.pu-img-wrap {
	position: relative;
}

.pu-floating-info {
	position: absolute;
	bottom: -24px;
	right: -16px;
	max-width: 260px;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 22px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 25px 60px rgba(45, 53, 118, .18);
}

.pu-floating-info .pu-floating-icon {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: rgba(231, 139, 195, .14);
	color: var(--pink);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}

.pu-floating-info p {
	font-size: 13px;
	line-height: 1.5;
	color: var(--blue);
	font-weight: 600;
	margin: 0;
}

/* Career highlight box */
.pu-career-box {
	border-radius: 28px;
	padding: 32px 36px;
	background: var(--blue);
	color: #fff;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.6;
	margin-top: 30px;
}

.pu-career-box em {
	color: #e78bc3;
	font-style: italic;
}

/* Apply / application form section */
.apply-shell {
	border-radius: 42px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 35px 90px rgba(45, 53, 118, .12);
}

.apply-info-panel {
	background: var(--blue);
	color: #fff;
	padding: 60px 50px;
	height: 100%;
}

.apply-info-panel h2 {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: -1px;
	margin-bottom: 16px;
}

.apply-info-panel p {
	color: rgba(255, 255, 255, .8);
	line-height: 1.8;
	margin-bottom: 30px;
}

.apply-checklist {
	display: grid;
	gap: 16px;
}

.apply-checklist li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	font-size: 14px;
}

.apply-checklist li i {
	color: #e78bc3;
	font-size: 16px;
}

.apply-form-panel {
	padding: 60px 50px;
}

/* ========== APP PHONE MOCKUPS ========== */
.app-phones-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding: 30px 0 60px;
}

.phone-mock {
	position: relative;
	width: 190px;
	height: 380px;
	border-radius: 36px;
	background: #fff;
	border: 8px solid #1f2540;
	box-shadow: 0 25px 60px rgba(45, 53, 118, .16);
	overflow: hidden;
	flex-shrink: 0;
	/*padding: 30px 14px 14px;*/
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.phone-mock::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 18px;
	background: #1f2540;
	border-radius: 0 0 12px 12px;
}

.phone-mock.center {
	width: 200px;
	height: 430px;
	z-index: 2;
	transform: translateY(-24px);
	background: linear-gradient(160deg, #2d3576, #1f2540);
	border-color: #1f2540;
}

.phone-mock.side {
	transform: translateY(20px);
	opacity: .92;
}

.phone-title {
	font-size: 13px;
	font-weight: 700;
	color: var(--blue);
	margin-bottom: 4px;
}

.phone-mock.center .phone-title {
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.phone-avatar-sm {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--pink);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.phone-card {
	border-radius: 14px;
	padding: 12px 14px;
	background: #f7f6fb;
}

.phone-mock.center .phone-card {
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .08);
}

.phone-card-label {
	font-size: 9px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--pink);
	margin-bottom: 8px;
}

.phone-vitals {
	display: flex;
	gap: 10px;
}

.phone-vitals div {
	flex: 1;
	text-align: center;
}

.phone-vitals b {
	display: block;
	font-size: 14px;
	color: #fff;
}

.phone-vitals span {
	font-size: 9px;
	color: rgba(255, 255, 255, .6);
	text-transform: uppercase;
}

.phone-update {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 10px;
	color: rgba(255, 255, 255, .8);
	line-height: 1.5;
	margin-bottom: 8px;
}

.phone-update:last-child {
	margin-bottom: 0;
}

.phone-update .dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #4ade80;
	margin-top: 3px;
	flex-shrink: 0;
}

.phone-sos {
	margin-top: auto;
	border-radius: 14px;
	padding: 12px 14px;
	background: var(--pink);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 10px;
}

.phone-task {
	font-size: 12px;
	font-weight: 700;
	color: var(--blue);
	margin-bottom: 2px;
}

.phone-task-meta {
	font-size: 10px;
	color: var(--bgGrey);
}

.phone-record {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 11px;
	color: var(--bgGrey);
	padding: 8px 0;
	border-bottom: 1px solid var(--brdrClr);
}

.phone-record:last-child {
	border-bottom: none;
}

.phone-record b {
	color: var(--blue);
	font-weight: 600;
	font-size: 12px;
}

/* App store / play store badges */
.store-badges {
	display: flex;
	gap: 24px;
	margin-top: 26px;
}

.store-badge {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 24px;
	border-radius: 16px;
	background: #1f2540;
	color: #fff;
}

.store-badge i {
	font-size: 24px;
}

.store-badge .store-badge-sub {
	display: block;
	font-size: 10px;
	color: rgba(255, 255, 255, .6);
}

.store-badge .store-badge-main {
	font-size: 15px;
	font-weight: 700;
}

.store-badge .coming-soon-tag {
	position: absolute;
	top: -15px;
	right: 0px;
	background: var(--pink);
	color: #fff;
	font-size: 8px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .5px;
	padding: 0px 8px;
	border-radius: 30px;
}


/* ========== RESOURCE CENTER SECTION ========== */
.resource-section {
	padding: 100px 0;
}

.resource-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

.resource-head-text {
	max-width: 560px;
}

.resource-head-text .library-title {
	margin-bottom: 14px;
}

.resource-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 6px;
}

.resource-tab {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 0;
	padding: 14px 26px;
	border-radius: 40px;
	background: #fff;
	color: var(--blue);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	box-shadow: 0 10px 30px rgba(45, 53, 118, .08);
	cursor: pointer;
	transition: .3s ease;
}
.resource-tab a{
	color: var(--blue);
}

.resource-tab:hover {
	color: var(--pink);
	transform: translateY(-2px);
}

.resource-tab.active, .resource-tab.active a {
	background: var(--pink);
	color: #fff;
	box-shadow: 0 14px 35px rgba(231, 139, 195, .35);
}

.resource-tab.active:hover {
	color: #fff;
	transform: none;
}

/* FEATURED ARTICLE */
.resource-featured {
	display: flex;
	background: #fff;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 25px 70px rgba(45, 53, 118, .10);
	margin-bottom: 30px;
}

.resource-featured-img {
	position: relative;
	flex: 0 0 38%;
	min-height: 280px;
	background-size: cover;
	background-position: center;
}

.resource-pick {
	position: absolute;
	top: 22px;
	left: 22px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	border-radius: 30px;
	background: rgba(255, 255, 255, .92);
	color: var(--blue);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.resource-pick i {
	color: #f5a623;
}

.resource-featured-body {
	flex: 1;
	padding: 44px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.resource-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.resource-tag-pink {
	padding: 7px 16px;
	border-radius: 20px;
	background: rgba(231, 139, 195, .15);
	color: var(--pink);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.resource-date {
	color: #8a8ea8;
	font-size: 13px;
	font-weight: 600;
}

.resource-featured-body h3 {
	font-size: 28px;
	font-weight: 700;
	color: var(--blue);
	line-height: 1.35;
	margin-bottom: 14px;
}

.resource-featured-body p {
	color: #6b6f8f;
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 22px;
}

.resource-read {
	display: inline-flex;
	align-items: center;
	color: var(--pink);
	font-weight: 800;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
}

.resource-read:hover .arrow {
	margin-left: 16px;
}

/* GRID */
.resource-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.resource-card {
	position: relative;
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 25px 70px rgba(45, 53, 118, .08);
	display: flex;
	flex-direction: column;
	transition: .35s ease;
	height: max-content;
}

.resource-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 80px rgba(45, 53, 118, .15);
}

.resource-card-thumb {
	position: relative;
	height: 190px;
	overflow: hidden;
}

.resource-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	object-position: top;
}

.resource-card-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.resource-card.media-only .resource-card-thumb {
	flex: 1;
	min-height: 450px;
}

.resource-card.media-only[data-category="gallery"] .resource-card-thumb {
	flex: none;
	height: 200px;
	min-height: 200px;
}

.resource-tag-overlay {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	padding: 7px 16px;
	border-radius: 20px;
	background: rgba(20, 26, 51, .45);
	backdrop-filter: blur(6px);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 1px solid rgba(255, 255, 255, .25);
}

.resource-tag-overlay.pink {
	background: var(--pink);
	border: none;
}

.resource-duration {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	padding: 6px 12px;
	border-radius: 8px;
	background: rgba(0, 0, 0, .55);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.resource-card-body .resource-meta {
	margin-bottom: 12px;
}

.resource-card-body h5 {
	font-size: 17px;
	font-weight: 700;
	color: var(--blue);
	line-height: 1.4;
	margin-bottom: 8px;
}

.resource-card-body p {
	color: #6b6f8f;
	font-size: 13px;
	line-height: 1.6;
	margin-bottom: 0;
	flex-grow: 1;
}

.resource-card-body .resource-read {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(77, 66, 125, .10);
}

/* ========== COMPARE PLANS — CTA STRIP ========== */
.cstrip {
	background: #263859;
	border-radius: 28px;
	padding: 48px clamp(24px, 5vw, 64px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	position: relative;
	overflow: hidden;
	margin-top: 50px;
}

.cstrip::before {
	content: "";
	position: absolute;
	top: -60px;
	right: -60px;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(175, 107, 137, .25) 0%, transparent 70%);
	pointer-events: none;
}

.cstrip-txt {
	position: relative;
	z-index: 1;
}

.cstrip-title {
	font-family: 'Lora', serif;
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin-bottom: .4rem;
}

.cstrip-title em {
	color: #D9A5BF;
	font-style: italic;
}

.cstrip-sub {
	font-size: 14px;
	color: rgba(255, 255, 255, .65);
	line-height: 1.6;
	margin: 0;
}

.cstrip-btn {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: 16px 32px;
	border-radius: 999px;
	background: var(--pink);
	color: #fff !important;
	border: none;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
	text-decoration: none;
	transition: background .25s ease, transform .25s ease;
	box-shadow: 0 10px 28px rgba(175, 107, 137, .35);
}

.cstrip-btn:hover {
	background: #955576;
	transform: translateY(-3px);
	color: #fff !important;
}

.cstrip-btn svg {
	width: 14px;
	height: 14px;
}

@media (max-width: 700px) {
	.cstrip {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
}


.info-tooltip {
	position: relative;
	display: inline-block;
	margin-left: 8px;
	cursor: pointer;
}

.info-tooltip i {
	font-size: 14px;
	color: var(--pink);
}

.tooltip-text {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	bottom: 130%;
	left: 0;
	transform: translateX(-60%);
	width: 320px;
	background: var(--blue);
	color: #fff;
	text-align: left;
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 13px;
	line-height: 1.5;
	z-index: 999;
	transition: all 0.25s ease;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.info-tooltip:hover .tooltip-text {
	visibility: visible;
	opacity: 1;
}

.full-comparison {
	margin-top: 20px;
}

.full-comparison span {

	font-style: italic;
	font-weight: 700;
	color: var(--pink);
	text-decoration: underline;
}

.full-comparison span:hover {
	color: var(--blue);
}

/* ========== INDEX PAGE: FLOATING CALL BUTTON ========== */
.floating-call-btn {
	position: fixed;
	bottom: 32px;
	right: 32px;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.call-btn-link {
	position: relative;
	z-index: 3;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--pink);
	color: #fff !important;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	box-shadow: 0 8px 28px rgba(175, 107, 137, 0.45);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-decoration: none;
}

.call-btn-link:hover {
	transform: scale(1.12);
	box-shadow: 0 12px 36px rgba(175, 107, 137, 0.6);
	color: #fff !important;
}

.call-btn-link i {
	animation: phone-ring 2.5s infinite;
}

@keyframes phone-ring {
	0% {
		transform: rotate(0deg);
	}

	5% {
		transform: rotate(15deg);
	}

	10% {
		transform: rotate(-12deg);
	}

	15% {
		transform: rotate(10deg);
	}

	20% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

.call-ripple {
	position: absolute;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: rgba(175, 107, 137, 0.35);
	z-index: 1;
	animation: ripple-out 2.5s ease-out infinite;
}

.call-ripple-2 {
	animation-delay: 0.8s;
	background: rgba(175, 107, 137, 0.20);
}

@keyframes ripple-out {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	100% {
		transform: scale(2.4);
		opacity: 0;
	}
}

.call-tooltip {
	position: absolute;
	right: 72px;
	top: 50%;
	transform: translateY(-50%);
	background: #344B73;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	padding: 8px 14px;
	border-radius: 30px;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
	transform: translateY(-50%) translateX(6px);
}

.call-tooltip::after {
	content: "";
	position: absolute;
	right: -7px;
	top: 50%;
	transform: translateY(-50%);
	border: 5px solid transparent;
	border-left-color: #344B73;
}

.floating-call-btn:hover .call-tooltip {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
	.floating-call-btn {
		bottom: 22px;
		right: 20px;
	}

	.call-btn-link {
		width: 52px;
		height: 52px;
		font-size: 18px;
	}

	.call-ripple {
		width: 52px;
		height: 52px;
	}

	.call-tooltip {
		display: none;
	}
}

@media (max-width: 480px) {
	.floating-call-btn {
		bottom: 70px;
		right: 16px;
	}

	.call-btn-link {
		width: 48px;
		height: 48px;
		font-size: 17px;
		box-shadow: 0 6px 20px rgba(175, 107, 137, 0.40);
	}

	.call-ripple {
		width: 48px;
		height: 48px;
	}
}

/* ========== INDEX PAGE: OUR TECHNOLOGY SECTION ========== */
.tech-section {
	padding: 100px 0;
	background: radial-gradient(circle at 10% 20%, rgba(175, 107, 137, .08), transparent 30%),
		radial-gradient(circle at 90% 80%, rgba(52, 75, 115, .08), transparent 30%);
}

.tech-main-title {
	font-size: 56px;
	font-weight: 700;
	letter-spacing: -3px;
	color: var(--blue);
	margin: 0 0 18px;
}

.tech-card {
	padding: 32px;
	border-radius: 30px;
	background: rgba(255, 255, 255, .78);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, .9);
	box-shadow: 0 25px 70px rgba(45, 53, 118, .10);
	transition: .35s ease;
}

.tech-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 80px rgba(45, 53, 118, .16);
}

.tech-card h3 {
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	margin: 20px 0 14px;
}

.tech-card h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--blue);
	margin: 18px 0 10px;
}

.tech-card p {
	font-size: 15px;
	line-height: 1.75;
	color: #6b7280;
	margin: 0;
}

.tech-card-dark {
	background: linear-gradient(135deg, #2d3576, #4d427d);
	border: none;
	box-shadow: 0 30px 80px rgba(45, 53, 118, .28);
}

.tech-card-dark p {
	color: rgba(255, 255, 255, .78);
	font-size: 16px;
	line-height: 1.8;
}

.tech-card-dark:hover {
	box-shadow: 0 35px 90px rgba(45, 53, 118, .38);
}

.tech-card-pink {
	background: linear-gradient(135deg, rgba(231, 139, 195, .18), rgba(175, 107, 137, .06));
	border: 1px solid rgba(231, 139, 195, .25);
}

.tech-card-pink h4 {
	color: #AF6B89;
}

.tech-card-pink p {
	color: #5f6680;
}

.tech-card-light {
	background: #f8f9ff;
	border: 1px solid rgba(52, 75, 115, .10);
}

.tech-icon-box {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	background: rgba(255, 255, 255, .20);
	color: #fff;
	flex-shrink: 0;
}

.tech-icon-pink {
	background: rgba(231, 139, 195, .20);
	color: var(--pink);
}

.tech-icon-blue {
	background: rgba(52, 75, 115, .12);
	color: var(--blue);
}

.tech-icon-teal {
	background: #e8faf4;
	color: #1d9e75;
}

.tech-icon-amber {
	background: #fdf6e8;
	color: #c07010;
}

.tech-stats-row {
	display: flex;
	gap: 30px;
	margin-top: 34px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, .15);
}

.tech-stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tech-stat-num {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	font-family: 'Lora', serif;
	letter-spacing: -1px;
}

.tech-stat-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, .60);
}

.tech-mini-card {
	padding: 30px 26px;
	border-radius: 24px;
	background: rgba(255, 255, 255, .78);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, .9);
	box-shadow: 0 20px 55px rgba(45, 53, 118, .09);
	height: 100%;
	transition: .35s ease;
}

.tech-mini-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 28px 70px rgba(45, 53, 118, .15);
	border-color: rgba(231, 139, 195, .30);
}

.tech-mini-card i {
	font-size: 26px;
	color: var(--pink);
	margin-bottom: 18px;
	display: block;
}

.tech-mini-card h5 {
	font-size: 16px;
	font-weight: 700;
	color: var(--blue);
	margin-bottom: 10px;
	font-family: 'Lora', serif;
}

.tech-mini-card p {
	font-size: 14px;
	line-height: 1.7;
	color: #6b7280;
	margin: 0;
}

@media (max-width: 991px) {
	.tech-main-title {
		font-size: 42px;
		letter-spacing: -2px;
	}
}

@media (max-width: 768px) {
	.tech-section {
		padding: 70px 0;
	}

	.tech-main-title {
		font-size: 36px;
		letter-spacing: -1.5px;
	}

	.tech-stats-row {
		gap: 20px;
	}

	.tech-stat-num {
		font-size: 22px;
	}
}

/* ========== REUSABLE INLINE-STYLE-REPLACEMENT UTILITIES ========== */
.hl-pink {
	color: var(--pink);
}

.hl-blue {
	color: var(--blue);
}

.mt-10 {
	margin-top: 10px;
}

.mx-auto-inline {
	margin-inline: auto;
}

.info-link {
	text-decoration: none;
	font-weight: 600;
	color: var(--blue);
}

.footer-link {
	color: inherit;
	text-decoration: none;
}

/* ========== INDEX PAGE: ONE-OFF SECTION TWEAKS ========== */
.lead-text-strong {
	font-size: 22px;
	color: var(--pink);
	font-weight: 700;
	line-height: 27px;
}

.app-img-frame-dark {
	border: 8px solid #1f2540;
	border-radius: 40px;
	background: #1f2540;
}

.app-frame-notch {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 18px;
	background: #1f2540;
	border-radius: 0 0 12px 12px;
	z-index: 3;
}

.em-pink-block {
	color: var(--pink);
	font-style: italic;
	display: block;
}

.quiz-label-pink {
	font-weight: 400;
	color: var(--pink);
}

.library-img-diet {
	background-image: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?q=80&w=1400&auto=format&fit=crop');
}

.pu-content-h2-lg {
	font-size: 54px;
}

.pu-content-sub {
	color: var(--pink);
	width: max-content;
	margin-top: 20px;
	font-size: 25px;
	font-weight: 400;
	letter-spacing: 0;
}

/* ========== RESOURCES PAGE: ONE-OFF SECTION TWEAKS ========== */
.resource-img-anxiety {
	background-image: url('https://images.unsplash.com/photo-1559839734-2b71ea197ec2?q=80&w=1400&auto=format&fit=crop');
}

/* ========== DETAIL PAGES: ONE-OFF SECTION TWEAKS ========== */
.detail-title-sm {
	font-size: 44px;
}

.detail-hero-img-sm {
	height: 420px;
}

.detail-hero-img-lg {
	height: 560px;
}

.hl-pink-italic {
	color: var(--pink);
	font-style: italic;
}

.mb-18 {
	margin-bottom: 18px;
}

/* ========== PU APP PAGE: ONE-OFF SECTION TWEAKS ========== */
.lead-pink-strong {
	font-size: 22px;
	color: var(--pink);
	font-weight: 700;
	margin-bottom: 14px;
}

.detail-section-tight {
	margin: 30px auto 50px;
}

.hl-pink-italic-bold {
	color: var(--pink);
	font-style: italic;
	font-weight: 900;
}

/* ========== RECOMMENDED PACKAGES PAGE: ONE-OFF SECTION TWEAKS ========== */
.plans-hero {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 48px;
	text-align: left;
	margin-bottom: 80px;
}


.plans-hero-title {
	font-family: 'Lora', serif;
	font-size: clamp(3rem, 6vw, 5.5rem);
	font-weight: 700;
	line-height: 1.05;
	color: var(--blue);
	margin: 0;
}

.plans-hero-title em {
	display: block;
	color: var(--pink);
	font-style: italic;
}

.plans-hero-right {
	flex: 0 0 420px;
	max-width: 420px;
	margin-top: 8px;
}

.plans-hero-right .compare-text {
	border-left: 2px solid rgba(175, 107, 137, .25);
	padding-left: 32px;
}

.retake-pill {
	display: block;
	margin-bottom: 28px;
	width: max-content;
	border: 1px solid var(--blue);
	padding: 8px 18px;
	border-radius: 40px;
	font-weight: 600;
	font-size: 13px;
	background: #fff;
	color: #5f6680;
	cursor: pointer;
	transition: .3s ease;
	margin-left: 32px;
}

.retake-pill:hover {
	background: #f5f5f5;
	transform: translateY(-2px);
}

#comparisonSection.assessment-section {
	margin-top: 80px;
}

.compare-card.recommended {
	border: 3px solid var(--pink);
	transform: scale(1);
	/* background: #003342; */
}

@media (min-width: 992px) {
	.compare-card {
		transform: scale(0.9);
	}
	.compare-card.recommended {
		transform: scale(1);
	}
}

/* .compare-card.recommended h4,
.compare-card.recommended h3,
.compare-card.recommended .plan-price .price-line,
.compare-card.recommended .plan-price .price-line small,
.compare-card.recommended li,
.compare-card.recommended li::before,
.compare-card.recommended span,
.compare-card.recommended small,
.compare-card.recommended p, 
.compare-card.recommended .brochure-link, 
.compare-card.recommended .cbt-btn {
	color: #fff;
} */

.brochure-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	color: #5f6680;
	text-decoration: underline;
	border: none;
	background: none;
}

.brochure-link:hover {
	color: var(--pink);
}

.reco-ribbon {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--pink);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 20px;
	box-shadow: 0 8px 20px rgba(175, 107, 137, .35);
	white-space: nowrap;
	z-index: 2;
}

@media (max-width: 768px) {
	.plans-hero {
		flex-direction: column;
		text-align: left;
	}

	.plans-hero-right {
		border-left: none;
		padding-left: 0;
		padding-top: 20px;
		max-width: 100%;
	}
}

/* ========== OUR PHILOSOPHY PAGE: ONE-OFF SECTION TWEAKS ========== */
.manifesto-section-pushed {
	padding-top: 160px;
}

.mb-40 {
	margin-bottom: 40px;
}

.detail-section-cta-pad {
	padding: 0 143px 60px;
}

/* ========== PHILOSOPHY STATS ========== */
.stat-card {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.stat-number {
	font-family: 'Lora', serif;
	font-size: 64px;
	font-weight: 700;
	line-height: 1;
	color: var(--pink);
	margin-bottom: 14px;
}

.stat-number .stat-pct {
	font-size: 28px;
	color: var(--blue);
	margin-left: 2px;
}

.stat-rule {
	width: 32px;
	height: 3px;
	border-radius: 3px;
	background: linear-gradient(to right, var(--pink), var(--blue));
	margin-bottom: 14px;
}

.stat-label {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 8px;
}

.stat-card p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--bgGrey);
	margin: 0;
}

@media (max-width: 991px) {
	.stat-number {
		font-size: 52px;
	}
}

@media (max-width: 480px) {
	.stat-number {
		font-size: 46px;
	}
}

/* ========== SUCCESS STORY DETAIL PAGE ========== */
.story-page-hero {
	padding: 150px 0 00px;
	text-align: center;
}

.story-page-kicker {
	font-size: 46px;
	font-weight: 800;
	letter-spacing: 1px;
	color: var(--black);
	text-transform: uppercase;
	margin-bottom: 30px;
	font-family: 'Lora', serif;
}

.story-page-title {
	font-size: 26px;
	font-weight: 700;
	color: var(--blue);
	margin: 0 0 6px;
}

.story-page-subtitle {
	font-size: 26px;
	font-weight: 700;
	color: var(--blue);
	margin: 0;
}

.story-page-body {
	background: var(--offWhite);
	padding: 30px 0 60px;
}

.story-page-photo {
	max-width: 420px;
	margin: 0 auto 50px;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 25px 70px rgba(45, 53, 118, .15);
}

.story-page-photo img {
	width: 100%;
	display: block;
	object-fit: cover;
}

.story-page-text {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.story-page-text p {
	color: var(--blue);
	font-size: 16px;
	line-height: 1.9;
	margin-bottom: 22px;
}

.story-page-text p:last-child {
	margin-bottom: 0;
}

.story-page-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 30px;
	color: var(--pink);
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .5px;
}

.story-page-back:hover {
	color: var(--blue);
}

@media (max-width: 768px) {
	.story-page-kicker {
		font-size: 32px;
	}

	.story-page-title,
	.story-page-subtitle {
		font-size: 20px;
	}

	.story-page-body {
		padding: 50px 0 70px;
	}
}

.th-p .badge-pill {
	display: inline-block;
	vertical-align: middle;
	padding: 5px 12px;
	border-radius: 30px;
	background: rgba(231, 139, 195, .14);
	color: var(--pink);
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 0px;
}

.th-p {
	display: flex;
	justify-content: space-between;
}

.blue {
	color: var(--blue);
	font-weight: 700;
}

.btn-reach-us.rounded-pill {
	font-size: 13px;

}

.plan-carousel-next,
.plan-carousel-prev {
	display: none;
}

.scroll-hint2 {
	font-size: 12px;
	text-align: left;
	padding: 2px 10px;
	background-color: rgb(175 107 137 / 8%);
	color: #955576;
	border-radius: 20px;
	margin-bottom: 25px;
	width: max-content;
	margin-inline: auto;
}

.email-form {
	width: 90%;
}

.email-form .custom-input {
	border-radius: 14px 0 0 14px;
	height: 40px;
}

.email-form .gradient-btn {
	border-radius: 0 14px 14px 0;
	padding: 8px 20px;
}

.email-form .gradient-btn:hover {
	border-radius: 0 14px 14px 0;
	padding: 8px 20px;
	transform: none;
}

.floating-whatsapp{
	position: fixed;
	bottom: 100px;
    right: 32px;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.floating-whatsapp .call-btn-link{
    background: var(--blue);
    box-shadow: 0 8px 28px rgba(107, 108, 175, 0.45);
}
.floating-whatsapp .call-btn-link:hover {
	box-shadow: 0 12px 36px rgba(107, 108, 175, 0.6);
}
.floating-whatsapp .call-ripple {
	background: rgba(52, 75, 115, 0.35);
}
.floating-whatsapp .call-ripple-2 {
	background: rgba(52, 75, 115, 0.20);
}
.floating-whatsapp:hover .call-tooltip {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
	.floating-whatsapp {
		bottom: 84px;
		right: 20px;
	}
	.floating-whatsapp .call-tooltip {
		display: none;
	}
}

@media (max-width: 480px) {
	.floating-whatsapp {
		bottom: 128px;
		right: 16px;
	}
}

/* ===== TOOLTIP ICON (plan info buttons) ===== */
.credit-tooltip-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	margin-left: 4px;
	vertical-align: middle;
	z-index: 1;
	background: none;
	border: 0;
	padding: 0;
}

.credit-tooltip-icon {
	width: 14px;
	height: 14px;
	color: #9AAABB;
	transition: color .2s;
}

.credit-tooltip-wrap:hover .credit-tooltip-icon {
	color: var(--pink);
}

/* ===== INFO MODAL ===== */
.info-modal {
	border-radius: 16px;
}

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

.info-modal-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--blue);
	margin: 0;
}

.info-modal-body {
	padding: 20px 22px;
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: #475467;
}

.info-modal-body p {
	margin: 0 0 12px;
}

.info-modal-body ul {
	margin: 0 0 12px;
	padding-left: 20px;
}

.info-modal-body li {
	margin-bottom: 6px;
}

/* ========== PRIVACY POLICY / LEGAL PAGES ========== */
.policy-hero {
	padding: 100px 0 00px;
	text-align: center;
	background: radial-gradient(circle at 15% 20%, rgba(231, 139, 195, .16), transparent 25%), radial-gradient(circle at 85% 75%, rgba(77, 66, 125, .14), transparent 30%), linear-gradient(135deg, #fff8fb, #eef1ff);
}

.policy-hero-content {
	max-width: 720px;
	margin: 0 auto;
}

.policy-hero h1 {
	font-family: 'Lora', serif;
	font-size: 44px;
	font-weight: 700;
	letter-spacing: -1px;
	color: var(--blue);
	margin-bottom: 16px;
}

.policy-hero p {
	color: var(--bgGrey);
	font-size: 17px;
	line-height: 1.8;
}

.policy-content {
	padding: 0px 0 100px;
}

.policy-hero .badge-pill {
	margin-bottom: 18px;
}

.policy-updated {
	display: inline-block;
	margin-top: 18px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--pink);
}

.policy-container {
	max-width: 900px;
	margin: 0 auto;
}

.policy-card {
	background: var(--white);
	border-radius: 28px;
	box-shadow: 0 30px 80px rgba(45, 53, 118, .10);
	padding: 56px 64px;
}

.policy-intro p {
	margin-bottom: 18px;
	color: var(--bgGrey);
	line-height: 1.8;
}

.policy-section {
	margin-top: 36px;
	padding-top: 36px;
	border-top: 1px solid rgba(52, 72, 115, .08);
}

.policy-intro + .policy-section {
	border-top: none;
	margin-top: 0;
	padding-top: 0;
}

.policy-section h2 {
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: 'Lora', serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--blue);
	margin-bottom: 14px;
}

.policy-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--pink), var(--blue));
	color: #fff;
	font-family: 'Lato', sans-serif;
	font-size: 15px;
	font-weight: 800;
}

.policy-section p {
	color: var(--bgGrey);
	line-height: 1.8;
	font-size: 16px;
	margin-bottom: 14px;
}

.policy-section ul {
	margin: 0 0 14px;
	padding-left: 0;
	list-style: none;
}

.policy-section li {
	position: relative;
	color: var(--bgGrey);
	line-height: 1.8;
	font-size: 16px;
	margin-bottom: 10px;
	padding-left: 26px;
}

.policy-section li::before {
	content: '\f00c';
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--pink);
	font-size: 10px;
	position: absolute;
	left: 0;
	top: 6px;
}

.sub-section {
	margin-top: 24px;
	padding: 18px 22px;
	border-radius: 16px;
	background: #f9f8fc;
}

.sub-section h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--blue);
	margin-bottom: 10px;
}

.about-section {
	margin-top: 50px;
	padding: 30px 34px;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(231, 139, 195, .12), rgba(77, 66, 125, .08));
	border: 1px solid rgba(52, 72, 115, .08);
}

.about-section h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Lora', serif;
	color: var(--blue);
	margin-bottom: 16px;
}

.about-section-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.about-section-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--bgGrey);
	margin-bottom: 10px;
	padding-left: 0;
}

.about-section-list li::before {
	content: none;
}

.about-section-list li i {
	width: 16px;
	color: var(--pink);
}

@media (max-width: 768px) {
	.policy-hero {
		padding: 130px 0 40px;
	}

	.policy-hero h1 {
		font-size: 32px;
	}

	.policy-card {
		padding: 32px 24px;
		border-radius: 20px;
	}

	.policy-section h2 {
		font-size: 19px;
	}
}

.policy-callout {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 18px;
	padding: 16px 20px;
	border-radius: 14px;
	background: rgba(245, 158, 11, .08);
	border: 1px solid rgba(245, 158, 11, .25);
}

.policy-callout i {
	color: #f59e0b;
	font-size: 16px;
	margin-top: 3px;
	flex-shrink: 0;
}

.policy-callout p {
	margin: 0;
	color: #92660b;
	font-size: 14px;
	line-height: 1.7;
}

/* ========== TOP TOAST NOTIFICATION ========== */
.site-toast {
	position: fixed;
	top: 18px;
	left: 50%;
	transform: translate(-50%, -16px);
	z-index: 10000;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	border-radius: 30px;
	background: var(--blue);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 14px 36px rgba(52, 72, 115, .35);
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease, transform .3s ease;
	max-width: 90vw;
}

.site-toast i {
	color: #4ade80;
	font-size: 16px;
	flex-shrink: 0;
}

.site-toast.show {
	opacity: 1;
	transform: translate(-50%, 0);
}

@media (max-width: 480px) {
	.site-toast {
		font-size: 13px;
		padding: 10px 16px;
	}
}