/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Hipno - Psychology and Counseling HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Why Choose Us css
08. What We Do css
09. Case Study css
10. How It Work css
11. Cta Box Css
12. Our Testimonial css
13. Our FAQs css
14. Our Blog css
15. Our Appointment css
16. Footer css
17. About Us Page css
18. Services Page css
19. Services Single css
20. Blog Archive css
21. Blog Single css
22. Case Study Page css
23. Case Study Single css
24. Team Page css
25. Team Single css 
26. Pricing Page css
27. Testimonial Page css
28. Image Gallery css
29. Video Gallery css
30. FAQs Page css
31. Contact Us Page css
32. Book Appointment Page cs
33. 404 Error Page css
34. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #262626;
	--secondary-color		: #F9F9F9;
	--text-color			: #838383;
	--accent-color			: #9B9A84;
	--white-color			: #FFFFFF;
	--divider-color			: #EEEDED;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Sora", sans-serif;
	--accent-font			: "Marcellus", serif;
}


/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background-color: var(--white-color);
	color: var(--text-color);
}

p{
	line-height: 1.6em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-family: var(--accent-font);
	font-weight: 400;
	line-height: 1.1em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 10px;
	padding: 16px 20px;
	border: none;
	overflow: hidden;
	transition: all 0.6s ease-in-out;
	z-index: 1;
}

.btn-default:hover{
	background-color: transparent;
}

.btn-default::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
	right: 0;
    width: 0;
    height: 106%;
    background: var(--primary-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::before{
	width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default.btn-highlighted{
	background-color: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	padding: 15px 20px;
}

.btn-default.btn-highlighted:hover{
	color: var(--white-color);
}

.readmore-btn{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover{
	color: var(--primary-color);
}

.readmore-btn::before{
	content: '';
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 0;
	transform: translateY(-50%);
	background: url('../images/arrow-accent.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	width: 20px;
	height: 20px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover:before{
	filter: brightness(0) invert(0);
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	background: radial-gradient(circle at center, #1b4332 0%, #0e261f 70%, #081713 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 140px;
	position: relative;
	width: 140px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading{
	border: 2px solid transparent;
	border-color: transparent #d4af37 transparent #10b981;
	animation: rotate-loading 2s linear 0s infinite normal;
	transform-origin: 50% 50%;
	box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90px;
	height: 90px;
	max-width: 90px;
	transform: translate(-50%, -50%);
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}
#loading-icon img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

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

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

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-btn{
	text-align: end;
}

.section-title{
	margin-bottom: 40px;
}

.section-title-content p{
	margin: 0;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-family: var(--default-font);
	font-size: 14px;
    font-weight: 500;
	line-height: 1.1em;
	letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
	padding-left: 18px;
    margin-bottom: 15px;
}

.section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--accent-color);
	border-radius: 50%;
    width: 8px;
    height: 8px;
}

.section-title h1{
	font-size: 70px;
	font-weight: 400;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 48px;
	font-weight: 400;
	margin-bottom: 0;
	cursor: none;
}

.section-title p{
	margin-top: 30px;
	margin-bottom: 0;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: relative;
	border-bottom: 1px solid var(--dark-divider-color);
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	border-bottom: 1px solid var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

header.main-header .header-sticky.active::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 80%;
	width: 100%;
	height: 100%;
}

.navbar{
	padding: 30px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: right;
	margin-left: 40px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li a{
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 400;
	padding: 14px 20px !important;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul ul.nav-dropdown-wide{
	width: 280px;
	white-space: nowrap;
}

.main-menu ul li.submenu:first-child ul{
    width: 230px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}
.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.header-btn{
	margin-left: 20px;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 10px 20px 10px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
    top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 260px 0 60px;
	margin-top: -116px;
	min-height: 100vh;
}

.hero::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(1.91deg, rgba(38, 38, 38, 0.3) 64.59%, #262626 101.91%), linear-gradient(270deg, rgba(38, 38, 38, 0) 44.72%, #262626 117.07%), linear-gradient(180deg, rgba(38, 38, 38, 0) 68.75%, rgba(38, 38, 38, 0.8) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
    padding: 295px 0;
	min-height: 100vh;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(1.91deg, rgba(38, 38, 38, 0.3) 64.59%, #262626 101.91%), linear-gradient(270deg, rgba(38, 38, 38, 0) 44.72%, #262626 117.07%), linear-gradient(180deg, rgba(38, 38, 38, 0) 68.75%, rgba(38, 38, 38, 0.8) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 50px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2));
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content{
	position: relative;
	width: 100%;
	max-width: 640px;
	z-index: 2;
}

.hero-content .section-title p,
.hero-content .section-title h1,
.hero-content .section-title h3{
	color: var(--white-color);
}

.hero-content .section-title h3::before{
	background: var(--white-color);
}

.hero-content-body{
	display: flex;
	align-items: center;
}

.hero-btn{
	margin-right: 20px;
}

.hero-client-box{
	display: flex;
	align-items: center;
}

.hero-client-box .customer-images{
	margin-right: 20px;
	display: inline-flex;
    align-items: center;
    justify-content: center;
}

.customer-img{
	position: relative;
	display: inline-block;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    overflow: hidden;
    margin-left: -16px;
	width: 50px;
	height: 50px;
	z-index: 1;
}

.customer-img:first-child{
    margin: 0;
}

.customer-img figure{
    display: block;
}

.customer-img img{
    max-width: 100%;
    border-radius: 50%;
}

.customer-img.add-more{
	width: 52px;
	height: 52px;
	background-color: var(--accent-color);
	text-align: center;
	display: inline-flex;
    align-items: center;
    justify-content: center;
}

.customer-img.add-more p{
	font-family: var(--accent-font);
	color: var(--white-color);
	margin: 0;
}

.hero-client-content p{
	color: var(--white-color);
	margin: 0;
}

.hero-list{
	position: relative;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 180px;
	padding: 60px 0 0;
	z-index: 1;
}

.hero-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 80px;
}

.hero-list ul li{
	position: relative;
	display: inline-block;
	text-transform: capitalize;
	color: var(--white-color);
	padding-left: 34px;
}

.hero-list ul li::before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--white-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us{
	padding: 100px 0;
}

.about-us-images{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	gap: 30px;
}

.about-img-1{
	width: calc(40% - 15px);
}

.about-img-2{
	width: calc(60% - 15px);
}

.about-img-1 img,
.about-img-2 img{
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.about-img-1 figure{
	display: block;
}

.about-img-1 img{
	aspect-ratio: 1 / 1.75;
	object-fit: cover;
}

.about-img-2 figure{
	display: block;
    mask-image: url(../images/about-img-2-bg-shape.svg);
    background-image: url(../images/about-img-2-bg-shape.svg);
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.about-img-2 img{
	aspect-ratio: 1 / 1.75;
	object-fit: cover;
}

.about-customer-box{
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--secondary-color);
	border-radius: 20px;
	width: 100%;
	max-width: 370px;
	padding: 30px;
}

.about-customer-rating{
	margin-bottom: 15px;
}

.about-customer-rating i{
	font-size: 14px;
	color: var(--accent-color);
}

.about-customer-content{
	margin-bottom: 15px;
}

.about-customer-content p{
	margin: 0;
}

.about-customer-content p span{
	color: var(--primary-color);
}

.about-customer-box .customer-images{
	display: flex;
	align-items: center;
}

.about-us-content{
	margin-left: 25px;
}

.about-vision-mission{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-top: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
	padding: 40px 0;
	margin-bottom: 40px;
}

.vision-mission-content{
	width: calc(50% - 15px);
}

.vision-mission-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.vision-mission-content p{
	margin: 0;
}

.vision-mission-content ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.vision-mission-content ul li{
	position: relative;
	display: inline-block;
	padding-left: 34px;
	margin-bottom: 20px;
}

.vision-mission-content ul li:last-child{
	margin-bottom: 0;
}

.vision-mission-content ul li::before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.about-us-content-btn .btn-default.btn-highlighted{
	margin-left: 30px;
}

/************************************/
/***    06. Our Services css      ***/
/************************************/

.our-services{
	background: var(--secondary-color);
	padding: 100px 0;
}

.service-item{
	position: relative;
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.service-image a{
	position: relative;
	display: block;
	cursor: none;
}

.service-image a::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	bottom: 0;
	background: var(--primary-color);
	opacity: 50%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.service-image img{
	aspect-ratio: 1 / 0.97;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img{
	transform: scale(1.1);
}

.service-content{
	position: absolute;
	top: 30px;
	left: 30px;
	right: 30px;
	max-width: 210px;
	z-index: 2;
}

.service-content h3{
	font-size: 20px;
	color: var(--white-color);
}

.service-btn{
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	z-index: 2;
}

.service-btn .readmore-btn{
	display: block;
	color: var(--white-color);
}

.service-btn .readmore-btn:hover{
	color: var(--accent-color);
}

.service-btn .readmore-btn::before{
	filter: brightness(0) invert(1);
}

.service-get-quote-text{
	text-align: center;
	margin-top: 20px;
}

.service-get-quote-text p{
	margin: 0;
}

.service-get-quote-text p span{
	background-color: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	font-weight: 500;
	line-height: 1.1em;
	padding: 2px 10px;
	margin-right: 5px;
}

.service-get-quote-text a{
	font-weight: 700;
	text-decoration: underline;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.service-get-quote-text a:hover{
	color: var(--accent-color);
}

/************************************/
/***    07. Why Choose Us css     ***/
/************************************/

.why-choose-us{
	padding: 100px 0;
}

.why-choose-us-box{
	height: 100%;
	display: flex;
	gap: 30px;
}

.why-choose-image{
	position: relative;
	width: 33%;
	height: 100%;
}

.why-choose-image figure{
	height: 100%;
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.why-choose-image figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.62;
	object-fit: cover;
	border-radius: 20px;
}

.contact-circle-img{
	position: absolute;
	right: -15px;
	bottom: 0;
	transform: translate(50%, -50%);
	z-index: 1;
}

.contact-circle-img img{
	max-width: 130px;
	animation: infiniterotate 30s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.why-choose-content{
	width: 67%;
	height: 100%;
}

.why-choose-list{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-bottom: 40px;
}

.why-choose-item{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.why-choose-item .icon-box{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 8px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 20px;
	transition: all 0.5s ease-in-out;
}

.why-choose-item:hover .icon-box{
	background-color: transparent;
}

.why-choose-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.why-choose-item:hover .icon-box::before{
	transform: scale(1);
}

.why-choose-item .icon-box img{
	position: relative;
	max-width: 24px;
	z-index: 1;
}

.why-choose-item-content{
	width: calc(100% - 60px);
}

.why-choose-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
}

.why-choose-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.why-choose-body-content,
.why-choose-body-image{
	width: calc(50% - 15px);
}

.why-choose-body-image figure,
.why-choose-body-image img{
	width: 100%;
	aspect-ratio: 1 / 0.75;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-body-content h3{
	font-size: 20px;
	margin-bottom: 15px;
}

.why-choose-body-content p{
	margin-bottom: 15px;
}

/************************************/
/***      08. What We Do css      ***/
/************************************/

.what-we-do{
	background: linear-gradient(180deg, var(--secondary-color) 65%, var(--white-color) 35%);
	padding: 100px 0 50px;
}

.intro-video-box{
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	text-align: center;
	padding: 170px 100px 50px;
}

.intro-video-box::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
    background: linear-gradient(180deg, rgba(38, 38, 38, 0) 65.21%, rgba(38, 38, 38, 0.8) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.intro-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.intro-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-play-button{
	position: relative;
	z-index: 1;
}

.video-play-button a{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 100%;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
}

.video-play-button a:before{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i{
	font-size: 30px;
	color: var(--white-color);
}

.intro-video-counter{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 30px 120px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 50px;
	margin-top: 170px;
	z-index: 1;
}

.video-counter-item h2{
	font-size: 50px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.video-counter-item p{
	color: var(--white-color);
	text-transform: capitalize;
	opacity: 80%;
	margin: 0;
}

/************************************/
/***      09. Case Study css	  ***/
/************************************/

.case-study{
	padding: 50px 0 70px;
}

.case-study-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.case-study-image{
	border-radius: 30px;
	margin-bottom: 30px;
	overflow: hidden;
}

.case-study-image figure,
.case-study-image a{
	display: block;
	cursor: none;
	border-radius: 20px;
}

.case-study-image img{
	width: 100%;
	aspect-ratio: 1 / 0.72;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.case-study-item:hover .case-study-image img{
	transform: scale(1.1);
}

.case-study-content{
	margin-bottom: 30px;
}

.case-study-content h3{
	font-size: 20px;
	line-height: 1.4em;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.case-study-content h3 a{
	color: inherit;
}

.case-study-content p{
	margin: 0;
}

/************************************/
/***      10. How It Work css	  ***/
/************************************/

.how-it-work{
	background: var(--secondary-color);
	padding: 100px 0;
}

.how-work-step-box{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.how-work-step-item{
	position: relative;
	width: calc(25% - 30px);
	background: url('../images/how-work-step-arrow-1.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 60% auto;
	display: flex;
	flex-wrap: wrap;
}

.how-work-step-item:nth-child(even){
	background: url('../images/how-work-step-arrow-2.svg');
	background-repeat: no-repeat;
    background-position: right center;
    background-size: 60% auto;
	flex-direction: column-reverse;
}

.how-work-step-item:last-child,
.how-work-step-item:nth-child(4n + 4){
	background: transparent;
}

.how-work-step-no{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 8px;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 30px;
}

.how-work-step-item:nth-child(even) .how-work-step-no{
	margin: 30px 0 0 0;
}

.how-work-step-no::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.how-work-step-item:hover .how-work-step-no::before{
	transform: scale(1);
}

.how-work-step-no h3{
	position: relative;
	font-family: var(--default-font);
	font-size: 50px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--white-color);
	z-index: 1;
}

.how-work-step-content{
	width: 100%;
	max-width: 210px;
}

.how-work-step-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.how-work-step-content p{
	margin: 0;
}

/************************************/
/***       11. Cta Box Css        ***/
/************************************/

.cta-section{
	padding: 100px 0 50px;
}

.cta-box{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 20px;
	display: flex;
	align-items: end;
	padding: 0 60px 0 30px;
}

.cta-box-image{
	width: 40%;
}

.cta-box-image img{
	width: 100%;
	aspect-ratio:  1 / 0.9;
	object-fit: cover;
}

.cta-box-content{
	width: 60%;
	margin: 60px 0 60px 30px;
}

.cta-box-content .section-title h3,
.cta-box-content .section-title h2,
.cta-box-content .section-title p{
	color: var(--white-color);
}

.cta-box-content .section-title h3::before{
	background: var(--white-color);
}

.cta-box-content .cta-box-btn{
	position: relative;
}

.cta-box-content .cta-box-btn:before{
	content: '';
	position: absolute;
	width: 85px;
	height: 42px;
	top: 50%;
	right: 60%;
	transform: translate(0 , -50%);
	background: url('../images/arrow-cta-btn.svg') no-repeat right center;
	background-size: cover;
	animation: ctamoveobject 3s infinite linear alternate;
}

@keyframes ctamoveobject{
	50%{
		right: 55%;
	}
}

.cta-box-btn .btn-default{
	background: var(--white-color);
	color: var(--accent-color);
}

.cta-box-btn .btn-default:hover{
	color: var(--white-color);
}

/************************************/
/***    12. Our Testimonial css	  ***/
/************************************/

.our-testimonial{
	padding: 50px 0 100px;
}

.testimonial-review-box{
	background: var(--secondary-color);
	border-radius: 20px;
	text-align: center;
	padding: 40px 80px;
}

.testimonial-site-logo{
	margin-bottom: 25px;
}

.testimonial-site-logo img{
	max-width: 160px;
}

.testimonial-review-box .about-customer-rating{
	display: inline-block;
	background-color: var(--accent-color);
	border-radius: 10px;
	padding: 15px 20px;
}

.testimonial-review-box .about-customer-rating i{
	font-size: 18px;
	color: var(--white-color);
}

.testimonial-review-box .customer-images{
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-slider{
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.testimonial-slider-image{
	width: calc(35% - 15px);
}

.testimonial-slider-image figure{
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.testimonial-slider-image img{
	width: 100%;
	border-radius: 20px;
	aspect-ratio: 1 / 0.999;
	object-fit: cover;
}

.testimonial-slider-content{
	width: calc(65% - 15px);
}

.testimonial-rating{
	margin-bottom: 20px;
}

.testimonial-rating i{
	font-size: 16px;
	color: var(--accent-color);
	margin-right: 2px;
}

.testimonial-rating i:last-child{
	margin-right: 0;
}

.testimonial-content{
	margin-bottom: 30px;
}

.testimonial-content p{
	margin-bottom: 0;
}

.author-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.author-content p{
	text-transform: capitalize;
	margin: 0;
}

.testimonial-pagination{
    position: absolute;
    bottom: 0px;
	right: 0px;
    text-align: right;
    z-index: 1;
}

.testimonial-pagination .swiper-pagination-bullet{
    height: 10px;
    width: 10px;
    background: var(--divider-color);
    opacity: 1;
    margin: 0 3px;
    transition: all 0.4s ease-in-out;
}

.testimonial-pagination .swiper-pagination-bullet-active{
    position: relative;
    width: 22px;
    border-radius: 100px;
    background-color: var(--accent-color);
}

.testimonial-company-slider{
	margin-top: 80px;
}

.testimonial-company-slider .company-logo{
	text-align: center;
}

.testimonial-company-slider .company-logo img{
	width: 100%;
	max-height: 40px;
}

/************************************/
/***      	13. Our FAQs css	  ***/
/************************************/

.our-faqs{
	position: relative;
	background: url('../images/faqs-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.our-faqs::before{
	content: '';
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	opacity: 90%;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.our-faqs-content{
	position: relative;
	margin-right: 20px;
	z-index: 1;
}

.our-faqs-content .section-title h3,
.our-faqs-content .section-title h2{
	color: var(--white-color);
}

.our-faqs-content .section-title h3::before{
	background: var(--white-color);
}

.faq-cta-box{
	position: relative;
	display: inline-block;
	backdrop-filter: blur(50px);
	border-radius: 20px;
	width: 100%;
	max-width: 400px;
	padding: 30px;
	overflow: hidden;
}

.faq-cta-box::before{
	content: '';
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--white-color);
	opacity: 5%;
	width: 100%;
	height: 100%;
}

.faq-cta-box .customer-images{
	margin-bottom: 20px;
}

.faq-cta-box-content h3{
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 20px;
}

.btn-faqs{
	position: relative;
	color: var(--white-color);
	padding-left: 30px;
}

.btn-faqs::before{
	content: '\f2a0';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 18px;
	left: 0;
	top: 0;
	bottom: 0;
	color: var(--white-color);
}

.faq-accordion{
	position: relative;
	z-index: 1;
}

.faq-accordion .accordion-item{
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.faq-accordion .accordion-item:last-child{
    margin-bottom: 0;
	padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button{
	position: relative;
    font-size: 20px;
    line-height: 1.2em;
    color: var(--white-color);
	align-items: start;
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button span{
	margin-right: 5px;
}

.faq-accordion .accordion-button:not(.collapsed){
    padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f0fe';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-size: 20px;
	font-weight: 400;
	color: var(--white-color);
	text-align: right;
    top: 0;
    right: 0;
	width: 30px;
	height: 30px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    content: '\f146';
}

.faq-accordion .accordion-item .accordion-body{
    padding-right: 30px;
}

.faq-accordion .accordion-item:last-child .accordion-body{
    padding-bottom: 0;
}

.faq-accordion .accordion-item .accordion-body p{
    color: var(--white-color);
    margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-body p:last-child{
    margin-bottom: 0;
}

/************************************/
/***       14. Our Blog css       ***/
/************************************/

.our-blog{
	padding: 100px 0 20px;
}

.post-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image{
	margin-bottom: 20px;
}

.post-featured-image figure a{
    cursor: none;
    display: block;
	border-radius: 20px;
    overflow: hidden;
}

.post-featured-image img{
    aspect-ratio: 1 / 0.72;
    object-fit: cover;
	border-radius: 20px;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-content{
	margin-bottom: 20px;
}

.post-item-content h3{
    font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h3 a{
    color: inherit;
}

/************************************/
/***    15. Our Appointment css	  ***/
/************************************/

.our-appointment{
	background: linear-gradient(180deg, var(--white-color) 50%, var(--accent-color) 50%);
	padding: 50px 0  100px;
}

.our-appointment-box{
	background: var(--white-color);
	box-shadow: 0px 0px 50px 0px #0000000A;
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 60px;
	padding: 100px;
}

.our-appointment-content,
.appointment-form{
	width: calc(50% - 30px);
}

.appointment-form form .form-control{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    padding: 16px 20px;
    outline: none;
    box-shadow: none;
}

.appointment-form form .form-control::placeholder{
	text-transform: capitalize;
    color: var(--text-color);
}

.appointment-form form .form-group select{
	padding: 16px 30px 16px 20px;
}

.appointment-item{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
	display: flex;
	align-items: center;
}

.appointment-item:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.appointment-item .icon-box{
	margin-right: 20px;
}

.appointment-item .icon-box img{
	max-width: 60px;
}

.appointment-item-content{
	width: calc(100% - 80px);
}

.appointment-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.appointment-item-content p{
	margin: 0;
}

.our-partner{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-top: 100px;
}

.partner-logo-box,
.our-partner-content{
	width: calc(50% - 15px);
}

.our-partner-content .section-title{
	margin-bottom: 0;
}

.our-partner-content .section-title h3,
.our-partner-content .section-title h2,
.our-partner-content .section-title p{
	color: var(--white-color);
}

.our-partner-content .section-title h3::before{
	background: var(--white-color);
}

.partner-logo-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 50px;
}

.partner-logo-image{
	width: calc(33.33% - 33.33px);
	text-align: center;
}

.partner-logo-image img{
	width: 100%;
	max-height: 40px;
	transition: all 0.3s ease-in-out;
}

.partner-logo-image img:hover{
	filter: invert(1);
}

/************************************/
/***    	16. Footer css		  ***/
/************************************/

.footer-cta-box{
	background: var(--primary-color);
	padding: 30px 0;
}

.footer-cta-content .section-title{
	margin-bottom: 0;
}

.footer-cta-content .section-title h2{
	color: var(--white-color);
}

.footer-cta-btn{
	text-align: right;
}

.footer-cta-btn .btn-default i{
	font-size: 18px;
	margin-right: 5px;
	color: var(--white-color);
}

.footer-cta-btn .btn-default.btn-phone{
	background: var(--dark-divider-color);
}

.footer-cta-btn .btn-default.btn-phone::before{
	background: var(--accent-color);
}

.footer-cta-btn .btn-default.btn-comment{
	margin-left: 30px;
}

.footer-cta-btn .btn-default.btn-comment::before{
	background: var(--dark-divider-color);
}

.main-footer{
	background: var(--secondary-color);
	padding: 60px 0 0;
}

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

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

.footer-contact-box{
	display: flex;
	align-items: center;
	gap: 50px;
}

.footer-contact-item p{
	text-transform: capitalize;
	margin-bottom: 10px;
}

.footer-contact-item h3{
	font-size: 20px;
}

.footer-social-links h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.footer-social-links p{
	margin-bottom: 25px;
}

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

.footer-social-links ul li{
	display: inline-block;
	border-radius: 50%;
	margin-right: 15px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a{
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a{
	border-color: var(--primary-color);
}

.footer-social-links ul li a i{
	color: var(--accent-color);
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

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

.footer-copyright{
	position: relative;
	border-top: 1px solid var(--divider-color);
	padding: 50px 0;
	margin-top: 50px;
	z-index: 1;
}

.footer-menu ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
}

.footer-menu ul li{
	display: inline-block;
	margin-right: 50px;
}

.footer-menu ul li:last-child{
	margin-right: 0;
}

.footer-menu ul li a{
	font-family: var(--accent-font);
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.footer-menu ul li:hover a{
	color: var(--accent-color);
}

.footer-copyright-text{
	text-align: end;
}

.footer-copyright-text p{
	margin: 0;
}

/************************************/
/***    17. About Us Page css	  ***/
/************************************/

.page-header{
	position: relative;
	background: url('../images/page-header-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 270px 0 170px;
	margin-top: -116px;
}

.page-header::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(38, 38, 38, 0) 75.27%, rgba(38, 38, 38, 0.8) 100%), linear-gradient(270deg, rgba(38, 38, 38, 0) 45.18%, #262626 105.08%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-box{
	position: relative;
	z-index: 1;
}

.page-header-box h1{
	display: inline-block;
	font-size: 70px;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    content: "\f111";
    font-family: "FontAwesome";
    font-size: 8px;
    color: var(--white-color);
}

.our-approach{
	background: var(--secondary-color);
    padding: 100px 0;
}

.our-approach-list{
    border-top: 1px solid var(--divider-color);
    padding-top: 40px;
}

.our-approach-item{
    position: relative;
    margin-bottom: 40px;
    padding-left: 35px;
}

.our-approach-item::before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 22px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 0;
    left: 0;
}

.our-approach-item:last-child{
    margin-bottom: 0;
}

.approach-item-content h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.approach-item-content p{
    margin: 0;
}

.our-approach-image{
    position: relative;
    padding: 0 0 100px 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.our-approach-img-1 figure,
.our-approach-img-2 figure,
.our-approach-img-1 img,
.our-approach-img-2 img{
	display: block;
    border-radius: 20px;
}

.our-approach-img-1 img{
    width: 100%;
    aspect-ratio: 1 / 1.04;
    object-fit: cover;
}

.our-approach-img-2{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 525px;
}

.our-approach-img-2 img{
    width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
}

.our-team{
    padding: 50px 0 100px;
}

.our-team-content{
    position: sticky;
    top: 30px;
}

.mental-therapy-counter{
	display: inline-block;
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 40px 60px;
}

.mental-therapy-header{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.mental-therapy-header .icon-box{
    margin-right: 26px;
}

.mental-therapy-header .icon-box img{
    max-width: 44px;
}

.mental-therapy-header h2{
    width: calc(100% - 70px);
    font-size: 40px;
}

.mental-therapy-body p{
    text-transform: capitalize;
    margin: 0;
}

.team-member-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-left: 15px;
}

.team-member-item{
    width: calc(50% - 15px);
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
}

.team-image a{
	display: block;
	cursor: none;
}

.team-image img{
	width: 100%;
	aspect-ratio: 1 / 0.98;
	object-fit: cover;
    border-radius: 20px 20px 0 0;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img{
    transform: scale(1.1);
}

.team-body{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 30px;
}

.team-content,
.team-social-icon{
    width: calc(50% - 10px);
}

.team-content h3{
	font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-content h3 a{
    color: inherit;
}

.team-content p{
    text-transform: capitalize;
    margin: 0;
}

.team-social-icon ul{
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.team-social-icon ul li{
    display: inline-block;
    margin-right: 5px;
}

.team-social-icon ul li:last-child{
    margin-right: 0;
}

.team-social-icon ul li a{
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    height: 36px;
    width: 36px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a:hover{
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.team-social-icon ul li a i{
    color: inherit;
    font-size: 18px;
}

.our-benefit{
    background: var(--secondary-color);
    padding: 100px 0;
}

.our-benefit-btn{
    margin-bottom: 60px;
}

.our-benefit-img figure{
    display: block;
    border-radius: 20px;
}

.our-benefit-img img{
    width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
    border-radius: 20px;
}

.our-benefit-box{
    margin-left: 15px;
}

.benefit-box-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.our-benefit-item{
    position: relative;
    width: calc(50% - 15px);
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px 20px;
    overflow: hidden;
}

.our-benefit-item::after{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.our-benefit-item:hover::after{
    top: 0;
}

.our-benefit-item .icon-box{
    position: relative;
    background: var(--accent-color);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    z-index: 1;
}

.our-benefit-item .icon-box::after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--secondary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.our-benefit-item:hover .icon-box:after{
    transform: scale(1);
}

.our-benefit-item .icon-box img{
    position: relative;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.our-benefit-item:hover .icon-box img{
    filter: invert(1);
}

.benefit-item-content{
    position: relative;
    z-index: 1;
}

.benefit-item-content h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
}

.benefit-item-content p{
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover .benefit-item-content h3,
.our-benefit-item:hover .benefit-item-content p{
    color: var(--white-color);
}

.our-benefit-list ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.our-benefit-list ul li{
    position: relative;
    width: calc(50% - 15px);
    color: var(--primary-color);
    text-transform: capitalize;
    padding-left: 30px;
}

.our-benefit-list ul li:after{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

/************************************/
/***     18. Services Page css	  ***/
/************************************/

.page-services{
    padding: 100px 0 70px;
}

.why-choose-us.page-why-choose-us{
	background: var(--secondary-color);
}

/************************************/
/***    19. Services Single css   ***/
/************************************/

.page-service-single{
    padding: 100px 0;
}

.service-sidebar{
    position: sticky;
    top: 30px;
    margin-right: 20px;
}

.service-catagery-list{
	background-color: var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
	overflow: hidden;
}

.service-catagery-list h3{
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--divider-color);
	padding: 30px;
}

.service-catagery-list ul{
    list-style: none;
    margin: 0;
	padding: 30px;
}

.service-catagery-list ul li{
    margin-bottom: 20px;
}

.service-catagery-list ul li:last-child{
    margin-bottom: 0;
}

.service-catagery-list ul li a{
    position: relative;
    display: block;
    text-transform: capitalize;
	background-color: var(--white-color);
	border-radius: 15px;
    color: var(--text-color);
	padding: 15px 50px 15px 20px;
    transition: all 0.4s ease-in-out;
}

.service-catagery-list ul li:hover a{
	background-color: var(--accent-color);
    color: var(--white-color);
}

.service-catagery-list ul li a::before{
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
	transform: translateY(-50%);
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.4s ease-in-out;
}

.service-catagery-list ul li:hover a::before{
    filter: brightness(0) invert(1);
}

.faq-cta-box.sidebar-cta-box{
    max-width: 100%;
    background-color: var(--accent-color);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}

.faq-cta-box.sidebar-cta-box::before{
    display: none;
}

.service-feature-image{
    margin-bottom: 40px;
}

.service-feature-image figure{
    display: block;
    border-radius: 20px;
}

.service-feature-image img{
    width: 100%;
    aspect-ratio: 1 / 0.55;
    object-fit: cover;
    border-radius: 20px;
}

.service-entry{
    margin-bottom: 40px;
}

.service-entry h2{
    font-size: 48px;
    margin-bottom: 20px;
}

.service-entry p{
    margin-bottom: 20px;
}

.service-entry p:last-child{
    margin-bottom: 0;
}

.service-entry ul{
    display: flex;
	flex-wrap: wrap;
	gap: 20px 10px;
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.service-entry ul li{
    position: relative;
    text-transform: capitalize;
	color: var(--primary-color);
	width: calc(50% - 5px);
    padding-left: 34px;
}

.service-entry ul li::before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.service-therapy-benefits{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    margin: 40px 0;
}

.therapy-benefits-content,
.therapy-benefits-image{
    width: calc(50% - 15px);
}

.therapy-benefits-content ul{
    margin-bottom: 0;
}

.therapy-benefits-content ul li{
    width: 100%;
}

.therapy-benefits-image figure{
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.therapy-benefits-image img{
    width: 100%;
    aspect-ratio: 1 / 0.85;
    object-fit: cover;
    border-radius: 20px;
}

.therapy-benefits-box{
    background-color: var(--secondary-color);
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 80px;
    padding: 60px;
    margin-bottom: 40px;
}

.therapy-benefits-item{
    position: relative;
    width: calc(50% - 40px);
}

.therapy-benefits-item::before{
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    bottom: 0;
    background-color: var(--divider-color);
    width: 1px;
    height: 100%;
}

.therapy-benefits-item:nth-of-type(2n + 2):before,
.therapy-benefits-item:last-child:before{
    display: none;
}

.therapy-benefits-item .icon-box{
    position: relative;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    margin-bottom: 30px;
    overflow: hidden;
}

.therapy-benefits-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.therapy-benefits-item:hover .icon-box::before{
    transform: scale(1);
}

.therapy-benefits-item .icon-box img{
	position: relative;
    max-width: 30px;
    z-index: 1;
}

.therapy-benefits-item-content h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.therapy-benefits-item-content p{
    margin-bottom: 0;
}

.service-therapy-steps{
    margin: 40px 0;
}

.therapy-step-item{
    display: flex;
    margin-bottom: 30px;
}

.therapy-step-item:last-child{
    margin-bottom: 0;
}

.therapy-step-no{
    position: relative;
    height: 80px;
    width: 80px;
    background-color: var(--accent-color);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    overflow: hidden;
}

.therapy-step-no::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.therapy-step-item:hover .therapy-step-no::before{
    transform: scale(1);
}

.therapy-step-no h2{
    font-family: var(--default-font);
    font-size: 40px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 0;
    z-index: 1;
}

.therapy-step-content{
    width: calc(100% - 100px);
}

.therapy-step-content h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.therapy-step-content p{
    margin-bottom: 0;
}

.service-entry-video-image{
    position: relative;
    margin-top: 30px;
}

.service-entry-video-image .video-image a{
    cursor: none;
}

.service-entry-video-image .video-image figure{
    border-radius: 20px;
    overflow: hidden;
}

.service-entry-video-image .video-image img{
    width: 100%;
    aspect-ratio: 1 / 0.478;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(70%);
}

.service-entry-video-image .video-play-button{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-accordion.page-faq-accordion .accordion-item{
    border-bottom-color: var(--divider-color);
}

.faq-accordion.page-faq-accordion .accordion-header .accordion-button{
    color: var(--primary-color);
}

.faq-accordion.page-faq-accordion .accordion-item .accordion-button::after,
.faq-accordion.page-faq-accordion .accordion-item .accordion-button.collapsed::after{
    color: var(--primary-color);
}

.faq-accordion.page-faq-accordion .accordion-item .accordion-body p{
    color: var(--text-color);
}

/************************************/
/***     20. Blog Archive css	  ***/
/************************************/

.page-blog{
    padding: 100px 0;
}

.page-blog .post-item{
	height: calc(100% - 40px);
	margin-bottom: 40px;
}

.page-pagination{
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--divider-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 500;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
    color: var(--white-color);
}

/************************************/
/***     21. Blog Single css	  ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;
    border-radius: 20px;
}

.post-image figure,
.post-image img{
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
    border-radius: 20px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 400;
	line-height: 1.2em;
	margin: 0 0 0.6em;
}

.post-entry h1{
	font-size: 70px;
}

.post-entry h2{
	font-size: 48px;
}

.post-entry h3{
	font-size: 46px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li{
	font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url(../images/icon-blockquote.svg), var(--accent-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
    background-size: 58px;
    border-radius: 20px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
    font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 400;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    background: var(--accent-color);
    color: var(--white-color);
	border-radius: 10px;
    padding: 6px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 10px;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***   22. Case Study Page css	  ***/
/************************************/

.page-case-study{
    padding: 100px 0 70px;
}

/************************************/
/***   23. Case Study Single css  ***/
/************************************/

.page-case-study-single{
    padding: 100px 0;
}

.case-study-sidebar{
    position: sticky;
    top: 30px;
    margin-right: 30px;
}

.case-study-detail-box{
    background-color: var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
}

.case-study-detail-box h2{
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--divider-color);
    padding: 30px;
}

.case-study-list-box{
    padding: 30px;
}

.case-study-list-item{
    padding: 15px 20px;
    background-color: var(--white-color);
    border-radius: 15px;
    margin-bottom: 20px;
}

.case-study-list-item:last-child{
    margin-bottom: 0;
}

.case-study-list-item h3{
    font-size: 20px;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.case-study-list-item p{
    text-transform: capitalize;
    margin-bottom: 0;
}

.case-study-featured-image{
    margin-bottom: 40px;
}

.case-study-featured-image figure{
    display: block;
    border-radius: 20px;
}

.case-study-featured-image img{
    width: 100%;
    aspect-ratio: 1 / 0.55;
    object-fit: cover;
    border-radius: 20px;
}

.case-study-entry{
    margin-bottom: 40px;
}

.case-study-entry h2{
    font-size: 48px;
    margin-bottom: 20px;
}

.case-study-entry p{
    margin-bottom: 20px;
}

.case-study-entry p:last-child{
    margin-bottom: 0;
}

.case-study-entry ul{
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.case-study-entry ul li{
    position: relative;
    text-transform: capitalize;
	color: var(--primary-color);
    padding-left: 34px;
    margin-bottom: 20px;
}

.case-study-entry ul li:last-child{
    margin-bottom: 0;
}

.case-study-entry ul li::before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.therapeutic-approach-list{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.therapeutic-approach-item{
    width: 50%;
}

.therapeutic-approach-item{
    padding: 50px 50px 50px 0;
    border-bottom: 1px solid var(--divider-color);
    border-right: 1px solid var(--divider-color);
}

.therapeutic-approach-item:nth-of-type(2n + 2){
    padding: 50px 0 50px 50px;
    border-bottom: 1px solid var(--divider-color);
    border-right: none;
}

.therapeutic-approach-item:nth-last-child(-n + 2){
    padding-bottom: 0;
    border-bottom: none;
}

.therapeutic-approach-item:nth-child(-n + 2){
    padding-top: 0;
}

.therapeutic-approach-item .icon-box{
    position: relative;
    background-color: var(--accent-color);
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.5s ease-in-out;
}

.therapeutic-approach-item .icon-box img{
    max-width: 30px;
    z-index: 1;
}

.therapeutic-approach-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.therapeutic-approach-item:hover .icon-box::before{
    transform: scale(1);
}

.therapeutic-approach-content h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.case-study-image-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.case-study-list,
.case-study-entry-image{
    width: calc(50% - 15px);
}

.case-study-list ul{
    margin-bottom: 0;   
}

.case-study-entry-image figure{
    display: block;
    border-radius: 20px;
}

.case-study-entry-image img{
    width: 100%;
    aspect-ratio: 1 / 0.714;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***       24. Team Page css 	  ***/
/************************************/

.page-team{
    padding: 100px 0 70px;
}

.page-team .team-member-item{
    width: 100%;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

/************************************/
/***      25. Team Single css 	  ***/
/************************************/

.page-team-single{
    padding: 100px 0;
}

.team-single-sidebar{
    position: sticky;
    top: 30px;
}

.team-sidebar-box{
	border-radius: 20px;
	overflow: hidden;
}

.team-sidebar-image figure{
    display: block;
}

.team-sidebar-image img{
    width: 100%;
    aspect-ratio: 1 / 0.975;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.team-sidebar-body{
    background-color: var(--secondary-color);
    padding: 30px;
}

.team-sidebar-body ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-sidebar-body ul li{
    display: inline-flex;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--divider-color);
}

.team-sidebar-body ul li:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.team-sidebar-body ul li span{
    font-family: var(--accent-font);
    font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
    width: 40%;
}

.team-sidebar-footer{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 30px;
    background-color: var(--accent-color);
    border-radius: 0 0 20px 20px;
}

.team-sidebar-footer span{
    font-family: var(--accent-font);
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
}

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

.team-sidebar-footer ul li{
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.team-sidebar-footer ul li a{
    border: 1px solid var(--white-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-sidebar-footer ul li:hover a{
    border-color: var(--primary-color);
}

.team-sidebar-footer ul li a i{
    color: var(--white-color);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.team-sidebar-footer ul li:hover a i{
    color: var(--primary-color);
}

.team-single-content{
    margin-left: 30px;
}

.team-single-content h2{
    font-size: 48px;
    margin-bottom: 20px;
    cursor: none;
}

.team-single-content p{
    margin-bottom: 20px;
}

.team-single-content p:last-child{
    margin-bottom: 0;
}

.team-member-info,
.team-member-experience,
.team-member-expertise{
    margin-bottom: 60px;
}

.team-member-experience{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.member-experience-info,
.team-member-skills{
    width: calc(50% - 15px);
}

.member-experience-info-item{
    margin-bottom: 30px;
}

.member-experience-info-item:last-child{
    margin-bottom: 0;
}

.member-experience-info-item h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.skills-progress-bar{
	margin-bottom: 30px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0;
}

.skills-progress-bar .skillbar .skill-data{
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.skills-progress-bar .skill-data .skill-title{	
	font-size: 15px;
	text-transform: capitalize;
}

.skills-progress-bar .skill-data .skill-no{
	font-size: 15px;
	color: var(--primary-color);
	margin-left: 20px;
}

.skills-progress-bar .skillbar .skill-progress{
	width: 100%;
	height: 16px;
	background: var(--secondary-color);
	border-radius: 100px;
	position: relative;
}

.skills-progress-bar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--accent-color);
	border-radius: 100px;
}

.team-contact-form{
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 40px;
}

/************************************/
/***      26. Pricing Page css 	  ***/
/************************************/

.page-pricing{
    padding: 100px 0;
}

.pricing-box{
    height: calc(100% - 30px);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    margin-bottom: 30px;
    padding: 40px;
}

.pricing-box.highlight-box{
    background-color: var(--accent-color);
    border-color: transparent;
}

.pricing-box-header{
    margin-bottom: 40px;
}

.pricing-title{
    margin-bottom: 30px;
}

.pricing-title h3{
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.pricing-box.highlight-box .pricing-title h3{
    color: var(--white-color);
}

.pricing-title h2{
    font-size: 48px;
    margin-bottom: 20px;
}

.pricing-box.highlight-box .pricing-title h2{
    color: var(--white-color);
}

.pricing-title h2 sub{
	font-family: var(--default-font);
    font-size: 16px;
    color: var(--text-color);
    bottom: 0;
}

.pricing-box.highlight-box .pricing-title h2 sub{
    color: var(--secondary-color);
}

.pricing-title p{
    margin-bottom: 0;
}

.pricing-box.highlight-box .pricing-title p{
    color: var(--secondary-color);
}

.pricing-btn .btn-default{
    width: 100%;
    text-align: center;
}

.pricing-box.highlight-box .pricing-btn .btn-default{
    background-color: var(--white-color);
    color: var(--primary-color);
}

.pricing-box.highlight-box .btn-default:hover{
    color: var(--white-color);
}

.pricing-list-title{
    margin-bottom: 20px;
}

.pricing-list-title h3{
    font-size: 20px;
}

.pricing-box.highlight-box .pricing-list-title h3{
    color: var(--white-color);
}

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

.pricing-list ul li{
    position: relative;
    color: var(--primary-color);
    text-transform: capitalize;
    padding-left: 30px;
    margin-bottom: 20px;
}

.pricing-list ul li:last-child{
    margin-bottom: 0;
}

.pricing-box.highlight-box .pricing-list ul li{
    color: var(--secondary-color);
}

.pricing-list ul li::before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.pricing-box.highlight-box .pricing-list ul li::before{
    color: var(--white-color);
}

.pricing-benefit-list{
	margin-top: 30px;
}

.pricing-benefit-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	gap: 20px 40px;
}

.pricing-benefit-list ul li{
	color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list ul li img{
	max-width: 20px;
	margin-right: 15px;
}

.our-testimonial.pricing-testimonial{
	padding: 100px 0;
}

/************************************/
/***    27. Testimonial Page css  ***/
/************************************/

.page-testimonial{
	padding: 100px 0 70px;
}

.client-testimonial-item{
    position: relative;
	height: calc(100% - 30px);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px 25px;
	margin-bottom: 30px;
}

.client-testimonial-item::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    border-radius: 20px;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.client-testimonial-item:hover::before{
    top: 0;
    height: 100%;
}

.client-testimonial-header{
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 40px;
    z-index: 1;
}

.client-testimonial-author{
	width: calc(68% - 5px);
	display: flex;
	align-items: center;
}

.client-author-image{
	margin-right: 15px;
}

.client-author-image figure{
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.client-author-image img{
	width: 60px;
	height: 60px;
	border-radius: 10px;
}

.client-author-content{
	width: calc(100% - 75px);
}

.client-author-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.client-author-content p{
    text-transform: capitalize;
	margin: 0;
}

.client-testimonial-rating{
    width: calc(32% - 5px);
    text-align: right;
}

.client-testimonial-rating i{
    font-size: 14px;
	color: var(--accent-color);
}

.client-testimonial-body{
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
}

.client-testimonial-body p:last-child{
    margin-bottom: 0;
}

.client-testimonial-quote{
    position: relative;
    z-index: 1;
}

.client-testimonial-quote img{
    max-width: 40px;
}

/************************************/
/***     28. Image Gallery css 	  ***/
/************************************/

.page-gallery{
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
	aspect-ratio: 1 / 0.794;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***     29. Video Gallery css 	  ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

.video-gallery-image{
	border-radius: 20px;
	overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	aspect-ratio: 1 / 0.794;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***      30. FAQs Page css 	  ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.faq-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.faq-catagery-list{
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 60px;
}

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

.faq-catagery-list ul li{
    margin-bottom: 20px;
}

.faq-catagery-list ul li:last-child{
	margin-bottom: 0;
}

.faq-catagery-list ul li a{
	position: relative;
    display: block;
    color: var(--text-color);
    background-color: var(--white-color);
    border-radius: 15px;
    text-transform: capitalize;
    padding: 15px 50px 15px 20px;
    transition: all 0.4s ease-in-out;
}

.faq-catagery-list ul li:hover a{
	color: var(--white-color);
    background-color: var(--accent-color);
}

.faq-catagery-list ul li a::after{
	content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.4s ease-in-out;
}

.faq-catagery-list ul li:hover a::after{
    filter: brightness(0) invert(1);
}

.faq-accordion.page-faq-accordion{
    margin-bottom: 60px;
}

.faq-accordion.page-faq-accordion:last-child{
    margin-bottom: 0;
}

/************************************/
/***   31. Contact Us Page css 	  ***/
/************************************/

.page-contact-us{
    padding: 100px 0;
}

.contact-form-box{
    background-color: var(--secondary-color);
    border-radius: 20px;
    text-align: center;
    padding: 80px;
}

.contact-form .form-control{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--text-color);
    background-color: var(--white-color);
    border: none;
    border-radius: 10px;
    padding: 16px 20px;
    outline: none;
    box-shadow: none;
}

.contact-form .form-control::placeholder{
    color: var(--text-color);
}

.contact-info-box{
    background-color: var(--accent-color);
    border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 40px 60px;
	padding: 80px;
    margin-top: 100px;
}

.contact-info-item{
	width: calc(33.33% - 40px);
	display: flex;
	flex-wrap: wrap;
}

.contact-info-item .icon-box{
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--white-color);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}

.contact-info-item:hover .icon-box{
	background-color: transparent;
}

.contact-info-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.contact-info-item:hover .icon-box::before{
    transform: scale(1);
}

.contact-info-item .icon-box img{
    max-width: 35px;
    transition: all 0.4s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box img{
    filter: brightness(0) invert(1);
}

.contact-info-content{
	width: calc(100% - 80px);
}

.contact-info-content h3{
	font-size: 20px;
	text-transform: capitalize;
    color: var(--white-color);
	margin-bottom: 15px;
}

.contact-info-content p{
    color: var(--white-color);
	margin-bottom: 0;
}

.google-map-iframe,
.google-map-iframe iframe{
    height: 600px;
    width: 100%;
}

.google-map-iframe iframe{
    filter: grayscale(1);
    transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover{
    filter: grayscale(0);
}

/*************************************/
/*** 32. Book Appointment Page css ***/
/*************************************/

.page-book-appointment{
    padding: 100px 0;
}

/************************************/
/***    33. 404 Error Page css 	  ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 80px;
}

.error-page-image img{
	width: 100%;
	max-width: 50%;
}

.error-page-content{
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 20px;
}

.error-page-content-body p{
	margin-bottom: 20px;
}

/************************************/
/***      34. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1024px){
	
	.main-menu ul li{
		margin: 0;
	}

	.our-appointment-box{
		padding: 50px;
	}
}

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

	.navbar{
		padding: 20px 0;
	}

	.main-menu ul li.highlighted-menu{
		display: block;
	}
	
	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.header-btn{
		display: none;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h3{
		margin-bottom: 15px;
	}

	.section-title h1{
		font-size: 50px;
	}

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

	.section-title p{
		margin-top: 15px;
	}

	.section-title-content{
		margin-top: 15px;
	}

	.section-btn{
		text-align: left;
		margin-top: 15px;
	}

	.hero{
		padding: 180px 0 50px;
		margin-top: -90px;
		min-height: auto;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 200px 0 150px;
		min-height: auto;
	}

	.hero.hero-slider-layout .hero-pagination{
		padding-left: 15px;
		bottom: 30px;
	}

	.hero-content{
		max-width: 100%;
	}

	.hero-list{
		margin-top: 90px;
		padding: 50px 0 0;
		z-index: 1;
	}

	.hero-list ul{
		gap: 20px;
	}

	.hero-list ul li{
		font-size: 14px;
		padding-left: 28px;
	}

	.hero-list ul li::before{
		font-size: 18px;
	}

	.about-us{
		padding: 50px 0;
	}

	.about-us-images{
		max-width: 80%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.about-customer-box{
		max-width: 345px;
		padding: 20px;
	}

	.about-us-content{
		margin-left: 0px;
	}

	.about-vision-mission{
		padding: 30px 0;
		margin-bottom: 30px;
	}

	.vision-mission-content h3{
		margin-bottom: 20px;
	}

	.vision-mission-content ul li{
		margin-bottom: 15px;
	}

	.our-services{
		padding: 50px 0;
	}

	.service-image img{
		aspect-ratio: 1 / 0.87;
	}

	.service-content{
		top: 20px;
		left: 20px;
		right: 20px;
	}

	.service-btn{
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.service-get-quote-text{
		margin-top: 10px;
	}

	.service-get-quote-text p{
		font-size: 14px;
	}

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-us-box{
		height: auto;
		display: flex;
		flex-wrap: wrap;
		flex-direction: column-reverse;
		gap: 30px;
	}

	.why-choose-image{
		position: relative;
		width: 100%;
		height: auto;
	}

	.why-choose-content{
		width: 100%;
		height: auto;
	}

	.why-choose-image figure img{
		height: auto;
		aspect-ratio: 1 / 0.8;
	}

	.contact-circle-img{
		position: absolute;
		right: auto;
		left: 0;
		top: -15px;
		bottom: auto;
		transform: translate(50%, -50%);
	}

	.why-choose-list{
		margin-bottom: 30px;
	}

	.why-choose-item .icon-box{
		margin-right: 10px;
	}

	.why-choose-item-content{
		width: calc(100% - 50px);
	}

	.why-choose-item-content h3{
		font-size: 18px;
	}

	.why-choose-body-image img{
		aspect-ratio: 1 / 0.85;
	}

	.what-we-do{
		padding: 50px 0 25px;
	}

	.intro-video-box{
		padding: 150px 15px 25px;
	}

	.video-play-button a{
		width: 70px;
		height: 70px;
	}

	.video-play-button a i{
		font-size: 24px;
	}

	.intro-video-counter{
		gap: 30px;
		padding-top: 25px;
		margin-top: 150px;
	}

	.video-counter-item h2{
		font-size: 40px;
	}

	.case-study{
		padding: 25px 0 20px;
	}

	.case-study-image{
		margin-bottom: 20px;
	}

	.case-study-content{
		margin-bottom: 20px;
	}

	.how-it-work{
		padding: 50px 0;
	}

	.how-work-step-item{
		background: transparent;
		width: calc(50% - 20px);
	}

	.how-work-step-item:nth-child(even){
		background: transparent;
	}

	.how-work-step-no{
		width: 80px;
		height: 80px;
		margin-bottom: 20px;
	}

	.how-work-step-item:nth-child(even) .how-work-step-no{
		margin: 20px 0 0 0;
	}

	.how-work-step-no h3{
		font-size: 40px;
	}

	.how-work-step-content{
		max-width: 100%;
	}

	.cta-section{
		padding: 50px 0 25px;
	}

	.cta-box{
		padding: 0 15px;
	}

	.cta-box-image{
		width: 43%;
	}

	.cta-box-content{
		width: 57%;
		margin: 20px 0 20px 10px;
	}

	.cta-box-content .cta-box-btn:before{
		right: 20%;
	}
	
	@keyframes ctamoveobject{
		50%{
			right: 30%;
		}
	}

	.our-testimonial{
		padding: 25px 0 50px;
	}

	.testimonial-review-box{
		padding: 30px 40px;
		margin-bottom: 30px;
	}

	.testimonial-review-box .about-customer-rating{
		padding: 10px 15px;
	}

	.testimonial-review-box .about-customer-rating i{
		font-size: 16px;
	}

	.testimonial-slider{
		padding: 20px;
	}

	.testimonial-rating{
		margin-bottom: 10px;
	}

	.testimonial-content{
		margin-bottom: 20px;
	}

	.testimonial-company-slider{
		margin-top: 40px;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.our-faqs-content{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.faq-cta-box{
		padding: 20px;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.our-blog{
		padding: 50px 0 0px;
	}

	.our-appointment{
		padding: 25px 0 50px;
	}

	.our-appointment-box{
        padding: 30px 15px;
		gap: 30px;
    }

	.our-appointment-content,
	.appointment-form{
		width: 100%;
	}

	.appointment-form form .form-control{
		padding: 10px 15px;
	}

	.appointment-form form .form-group select{
		padding: 10px 30px 10px 15px;
	}

	.appointment-item{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.appointment-item .icon-box{
		margin-right: 10px;
	}

	.appointment-item .icon-box img{
		max-width: 50px;
	}

	.appointment-item-content{
		width: calc(100% - 60px);
	}

	.our-partner{
		margin-top: 50px;
		gap: 20px;
	}

	.partner-logo-box, .our-partner-content{
		width: calc(50% - 10px);
	}

	.partner-logo-box{
		gap: 20px 30px;
	}

	.partner-logo-image{
		width: calc(33.33% - 20px);
	}

	.footer-cta-box{
		padding: 20px 0;
	}

	.footer-cta-content{
		text-align: center;
		margin-bottom: 20px;
	}

	.footer-cta-btn{
		text-align: center;
	}

	.main-footer{
		padding: 40px 0 0;
	}

	.about-footer,
	.footer-logo{
		margin-bottom: 30px;
	}

	.footer-contact-box{
		gap: 25px;
	}

	.footer-contact-item h3{
		font-size: 18px;
	}

	.footer-social-links p{
		margin-bottom: 15px;
	}

	.footer-copyright{
		padding: 20px 0;
		margin-top: 30px;
	}

	.footer-menu ul li{
		margin-right: 15px;
	}

	.page-header{
        padding: 180px 0 80px;
        margin-top: -90px;
    }

    .page-header-box h1{
        font-size: 50px;
    }

	.our-approach{
        padding: 50px 0;
    }

    .our-approach-content{
        margin-bottom: 30px;
    }

    .our-approach-list{
        padding-top: 30px;
    }

	.our-approach-item{
        margin-bottom: 30px;
        padding-left: 30px;
    }

    .our-approach-item::before{
        font-size: 20px;
    }

    .approach-item-content h3{
        margin-bottom: 5px;
    }

    .our-team{
        padding: 25px 0 50px;
    }

	.our-team-content{
        margin-bottom: 30px;
    }

    .mental-therapy-counter{
        padding: 30px 40px;
    }

    .mental-therapy-header h2{
        font-size: 34px;
    }

	.team-member-list{
        margin-left: 0;
    }

    .team-body{
        padding: 20px;
    }

	.team-content,
    .team-social-icon{
        width: 100%;
    }

    .team-social-icon ul{
        text-align: left;
    }

	.our-benefit{
        padding: 50px 0;
    }

    .our-benefit-content{
        margin-bottom: 30px;
    }

	.our-benefit-btn{
        margin-bottom: 30px;
    }

    .our-benefit-box{
        margin-left: 0px;
    }

    .benefit-box-list{
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

	.our-benefit-item{
		padding: 20px;
	}

    .our-benefit-item .icon-box{
        margin-bottom: 30px;
    }

	.page-services{
		padding: 50px 0 20px;
	}

	.page-services{
        padding: 50px 0 20px;
    }

    .page-service-single{
        padding: 50px 0;
    }

    .service-sidebar{
        position: initial;
        margin: 0 0 30px 0;
    }

    .service-catagery-list{
        margin-bottom: 30px;
    }

    .service-catagery-list h3,
    .service-catagery-list ul{
        padding: 20px;
    }

    .service-catagery-list ul li a{
        padding: 12px 45px 12px 15px;
    }

    .service-catagery-list ul li a::before{
        right: 15px;
    }

    .service-feature-image{
        margin-bottom: 30px;
    }

    .service-entry{
        margin-bottom: 30px;
    }
    
    .service-entry h2{
        font-size: 38px;
    }

	.service-entry ul{
		gap: 15px 10px;
	}

    .service-entry ul li{
        padding-left: 25px;
    }

    .service-entry ul li::before{
        font-size: 18px;
        top: 3px;
    }

    .service-therapy-benefits{
        margin: 30px 0;
    }

    .therapy-benefits-box{
        gap: 40px 60px;
        padding: 40px;
        margin-bottom: 30px;
    }

    .therapy-benefits-item{
        width: calc(50% - 30px);
    }

    .therapy-benefits-item::before{
        right: -30px;
    }
    
    .therapy-benefits-item .icon-box{
        margin-bottom: 20px;
    }

    .therapy-benefits-item-content h3{
        margin-bottom: 10px;
    }
    
    .therapy-step-item{
        margin-bottom: 20px;
    }

	.service-therapy-steps{
		margin: 30px 0;
	}
}

/* ============================================================
   REMIND LAB - CUSTOM ADDITIONS
   ============================================================ */

/* Online Learning Button */
.btn-default.btn-learning {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 15px 20px;
    margin-right: 10px;
}

.btn-default.btn-learning::before {
    background-color: var(--accent-color);
}

.btn-default.btn-learning:hover {
    color: var(--white-color);
}

/* Dropdown section labels (non-clickable group headers) */
.main-menu ul li.nav-dropdown-label {
    pointer-events: none;
    padding: 10px 20px 4px !important;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent-color) !important;
    background: transparent !important;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.main-menu ul li.nav-dropdown-label:first-child {
    border-top: none;
    padding-top: 6px !important;
}

.main-menu ul li.nav-dropdown-label span {
    display: block;
}

/* View All row in dropdown */
.main-menu ul li.nav-dropdown-viewall a {
    font-weight: 600;
    color: var(--accent-color) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    margin-top: 4px;
}

.main-menu ul li.nav-dropdown-viewall a:hover {
    color: var(--primary-color) !important;
}

/* Mobile: hide section labels cleanly */
@media (max-width: 991px) {
    .btn-default.btn-learning {
        margin-right: 0;
        margin-bottom: 8px;
        display: block;
        width: 100%;
        text-align: center;
    }

    .header-btn {
        flex-direction: column;
        gap: 8px;
    }

    .main-menu ul li.nav-dropdown-label {
        font-size: 9px;
        padding: 8px 15px 2px !important;
    }
}

    .therapy-step-no{
        height: 60px;
        width: 60px;
    }

    .therapy-step-no h2{
        font-size: 30px;
    }

    .therapy-step-content{
        width: calc(100% - 80px);
    }

    .therapy-step-content h3{
        margin-bottom: 10px;
    }

	.page-blog{
        padding: 50px 0;
    }

	.page-blog .post-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

    .page-pagination{
        margin-top: 10px;
    }

    .page-single-post{
		padding: 50px 0;
	}

	.post-image{
		margin-bottom: 20px;
	}

	.post-entry blockquote{
		background-position: 25px 25px;
        background-size: 50px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

	.post-entry h2{
		font-size: 38px;
	}

	.post-entry ul li{
		font-size: 16px;
	}

	.post-tags{
		margin-bottom: 20px;
	}

	.post-social-sharing ul{
		text-align: left;
	}

	.tag-links{
		font-size: 22px;
	}

	.post-tags .tag-links a{
		font-size: 16px;
		padding: 6px 15px;
	}

	.page-case-study{
        padding: 50px 0 20px;
    }

	.page-case-study-single{
        padding: 50px 0;
    }

    .case-study-sidebar{
        position: initial;
        margin: 0 0 30px 0;
    }

    .case-study-detail-box h2,
    .case-study-list-box{
        padding: 20px;
    }

    .case-study-detail-box{
        margin-bottom: 30px;
    }

	.case-study-list-item{
		padding: 12px 15px;
		margin-bottom: 15px;
	}

    .case-study-featured-image{
        margin-bottom: 30px;
    }

    .case-study-entry{
        margin-bottom: 30px;
    }

    .case-study-entry h2{
        font-size: 38px;
    }

    .therapeutic-approach-list{
        margin-bottom: 30px;
    }

	.therapeutic-approach-item{
		padding: 30px 30px 30px 0;
	}

	.therapeutic-approach-item:nth-of-type(2n + 2){
		padding: 30px 0 30px 30px;
	}

	.therapeutic-approach-item:nth-last-child(-n + 2){
		padding-bottom: 0;
	}

	.therapeutic-approach-item:nth-child(-n + 2){
		padding-top: 0;
	}

    .case-study-image-list{
        gap: 20px;
    }

    .case-study-list{
        width: calc(55% - 10px);
    }

    .case-study-entry-image{
        width: calc(45% - 10px);
    }

	.page-team{
		padding: 50px 0 20px;
	}

	.page-team-single{
        padding: 50px 0;
    }
    
    .team-single-sidebar{
        position: initial;
        margin-bottom: 30px;
    }

    .team-sidebar-image img{
        aspect-ratio: 1 / 0.65;
		object-position: top center;
    }

    .team-sidebar-body{
        padding: 20px;
    }

    .team-sidebar-body ul li{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .team-sidebar-footer{
        padding: 12px 20px;
    }

    .team-single-content{
        margin-left: 0;
    }

    .team-member-info,
    .team-member-experience,
    .team-member-expertise{
        margin-bottom: 40px;
    }

    .team-single-content h2{
        font-size: 38px;
    }

    .member-experience-info-item{
        margin-bottom: 20px;
    }

	.team-contact-form{
		padding: 30px;
	}

	.page-pricing{
        padding: 50px 0;
    }

    .pricing-box{
        padding: 30px;
    }

    .pricing-box-header{
        margin-bottom: 30px;
    }

    .pricing-title{
        margin-bottom: 20px;
    }

    .pricing-title h2{
        font-size: 38px;
    }

    .pricing-list ul li{
        margin-bottom: 10px;
    }

    .pricing-list ul li::before{
        font-size: 18px;
    }

    .pricing-benefit-list{
        margin-top: 10px;
    }

	.our-testimonial.pricing-testimonial{
		padding: 50px 0;
	}

	.page-testimonial{
        padding: 50px 0 20px;
    }

    .client-testimonial-item{
        padding: 20px;
    }

    .client-testimonial-header{
        margin-bottom: 30px;
    }

    .client-author-image{
        margin-right: 10px;
    }

    .client-author-image img{
        width: 50px;
        height: 50px;
    }

    .client-author-content{
        width: calc(100% - 60px);
    }

    .client-author-content h3{
        font-size: 18px;
    }

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

	.page-gallery{
		padding: 50px 0 20px;
	}

	.page-video-gallery{
		padding: 50px 0 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.faq-sidebar{
		position: initial;
		top: 0px;
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.faq-catagery-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.faq-accordion.page-faq-accordion{
		margin-bottom: 40px;
	}

	.page-contact-us{
        padding: 40px 0;
    }

    .contact-form-box{
        padding: 50px;
    }

    .contact-form .form-control{
        padding: 10px 15px;
	}

    .contact-info-box{
        gap: 10px;
        padding: 40px 15px;
        margin-top: 50px;
    }

    .contact-info-item{
        width: calc(33.33% - 6.66px);
    }

    .contact-info-item .icon-box{
        height: 40px;
        width: 40px;
        margin-right: 10px;
    }

    .contact-info-item .icon-box img{
        max-width: 25px;
    }

    .contact-info-content{
        width: calc(100% - 50px);
    }

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

    .google-map-iframe,
	.google-map-iframe iframe{
		height: 450px;
	}

	.page-book-appointment{
        padding: 50px 0;
    }

	.error-page{
		padding: 50px 0;
	}
	
	.error-page-image{
		margin-bottom: 40px;
	}

	.error-page-image img{
		max-width: 80%;
	}
}

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

	.btn-default{
		padding: 14px 20px;
	}

	.btn-default.btn-highlighted{
		padding: 13px 20px;
	}

	.section-row{
		margin-bottom: 30px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 32px;
	}

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

	.hero-content-body{
		display: block;
	}

	.hero-btn{
		margin-right: 0px;
		margin-bottom: 20px;
	}

	.hero-slide .hero-content .hero-btn{
		margin-bottom: 0;
	}

	.hero-list ul{
        flex-wrap: wrap;
		gap: 10px 20px;
    }

	.hero-list ul li{
		width: calc(50% - 10px);
		font-size: 12px;
		padding-left: 26px;
	}

	.hero-list ul li::before{
		top: 4px;
        font-size: 16px;
    }

	.about-us-images{
        max-width: 100%;
		gap: 20px;
    }

	.about-img-1{
		width: calc(40% - 10px);
	}

	.about-img-2{
		width: calc(60% - 10px);
	}

	.about-customer-box{
        max-width: 210px;
        padding: 10px;
    }

	.about-customer-content,
	.about-customer-rating{
		margin-bottom: 5px;
	}

	.about-customer-rating i{
		font-size: 12px;
	}

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

	.about-customer-box .customer-img{
		width: 34px;
		height: 34px;
		margin-left: -12px;
	}

	.about-customer-box .customer-img:first-child{
		margin: 0;
	}

	.about-customer-box .customer-img.add-more p{
		font-size: 12px;
	}

	.about-vision-mission{
		gap: 20px;
	}

	.vision-mission-content{
		width: 100%;
	}

	.vision-mission-content h3{
		font-size: 18px;
        margin-bottom: 15px;
    }

	.vision-mission-content ul li{
        margin-bottom: 10px;
		padding-left: 28px;
    }

	.vision-mission-content ul li::before{
		top: 3px;
		font-size: 18px;
	}

	.service-content h3{
		font-size: 18px;
	}

	.why-choose-list{
		gap: 20px;
	}

	.why-choose-item{
		width: 100%;
	}

	.why-choose-body{
		flex-direction: column-reverse;
	}

	.why-choose-body-content,
	.why-choose-body-image{
		width: 100%;
	}

	.contact-circle-img{
        left: 50%;
        transform: translate(-50%, -50%);
    }

	.contact-circle-img img{
		max-width: 110px;
	}

	.why-choose-body-image img{
        aspect-ratio: 1 / 0.8;
    }

	.intro-video-box{
		background-position: right center;
        padding: 100px 15px 25px;
    }

	.intro-video-counter{
        gap: 20px;
        padding-top: 25px;
        margin-top: 100px;
    }

	.video-counter-item{
		width: calc(50% - 10px);
	}

	.video-counter-item h2{
        font-size: 30px;
    }

	.video-counter-item p{
		font-size: 14px;
	}

	.case-study-content{
        margin-bottom: 15px;
    }

	.how-work-step-box{
		gap: 35px;
	}

	.how-work-step-item{
        width: 100%;
    }

	.how-work-step-item:nth-child(even){
		flex-direction: row;
	}

	.how-work-step-no{
        width: 60px;
        height: 60px;
		margin-bottom: 0;
		margin-right: 15px;
    }

	.how-work-step-item:nth-child(even) .how-work-step-no{
        margin: 0px 15px 0 0;
    }

	.how-work-step-no h3{
        font-size: 30px;
    }

	.how-work-step-content{
		width: calc(100% - 75px);
        max-width: 100%;
    }

	.how-work-step-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.cta-box{
        flex-direction: column-reverse;
		padding: 50px 15px 0;
    }

	.cta-box-image{
        width: 100%;
    }

	.cta-box-content{
		width: 100%;
		margin: 0 0 20px 0;
	}

	.cta-box-content .cta-box-btn:before{
		right: 20px;
	}
	
	@keyframes ctamoveobject{
		50%{
			right: 50px;
		}
	}

	.testimonial-review-box{
        padding: 20px 30px;
    }

	.testimonial-review-box .about-customer-rating{
		margin-bottom: 15px;
	}
	
	.testimonial-item{
		gap: 20px;
	}

	.testimonial-slider-image,
	.testimonial-slider-content{
		width: 100%;
	}

	.author-content h3{
		font-size: 18px;
	}

	.testimonial-company-slider{
        margin-top: 30px;
    }

	.faq-cta-box{
		max-width: 100%;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 18px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding-right: 0px;
	}

	.post-item-content{
		margin-bottom: 15px;
	}

	.post-item-content h3{
		font-size: 18px;
	}

	.appointment-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

	.appointment-item-content h3{
		font-size: 18px;
	}

	.partner-logo-box, .our-partner-content{
        width: 100%;
    }

	.footer-cta-btn .btn-default{
		font-size: 14px;
		padding: 12px 15px;
	}

	.footer-cta-btn .btn-default i{
		font-size: 16px;
	}

	.footer-cta-btn .btn-default.btn-comment{
		margin-left: 15px;
	}

	.about-footer .section-title h2{
        font-size: 24px;
    }

	.footer-contact-box{
        display: block;
    }

	.footer-contact-item{
		margin-bottom: 20px;
	}

	.footer-contact-item:last-child{
		margin-bottom: 0;
	}

	.footer-contact-item p{
		margin-bottom: 5px;
	}

	.footer-social-links h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.footer-copyright{
        padding: 15px 0;
    }

	.footer-menu ul{
		text-align: center;
		margin-bottom: 10px;
	}

	.footer-menu ul li{
        margin-right: 10px;
    }

	.footer-copyright-text{
		text-align: center;
	}

	.page-header-box h1{
		font-size: 32px;
	}

	.our-approach-item::before{
        font-size: 18px;
    }

	.approach-item-content h3{
        font-size: 18px;
    }

	.our-approach-image{
        padding: 0 0 50px 80px;
    }

    .our-approach-img-2{
        max-width: 270px;
    }

	.mental-therapy-header .icon-box{
		margin-right: 16px;
	}

	.mental-therapy-header .icon-box img{
		max-width: 34px;
	}

	.mental-therapy-header h2{
		width: calc(100% - 50px);
        font-size: 28px;
    }

	.team-member-item{
        width: 100%;
    }

    .team-content h3{
        font-size: 18px;
    }

	.our-benefit-item{
        width: 100%;
    }

    .benefit-item-content h3{
        font-size: 18px;
        margin-bottom: 10px;
    }

    .our-benefit-list ul{
        gap: 15px;
    }

    .our-benefit-list ul li{
        width: 100%;
    }

	.service-catagery-list h3{
        font-size: 18px;
    }

    .service-feature-image{
        margin-bottom: 20px;
    }

    .service-feature-image img{
        aspect-ratio: 1 / 0.7;
    }

    .service-entry h2{
        font-size: 26px;
        margin-bottom: 15px;
    }

    .service-entry p{
        margin-bottom: 15px;
    }

    .service-entry ul{
        margin-bottom: 15px;
    }

    .service-entry ul li{
        width: 100%;
    }

    .service-therapy-benefits{
        gap: 20px;
        margin: 20px 0;
    }

    .therapy-benefits-content ul{
        margin-bottom: 0;
    }

    .therapy-benefits-content,
    .therapy-benefits-image{
        width: 100%;
    }

    .therapy-benefits-image img{
        aspect-ratio: 1 / 0.72;
    }

    .therapy-benefits-box{
        gap: 30px;
        padding: 20px;
        margin-bottom: 20px;
    }

    .therapy-benefits-item{
        width: 100%;
    }

    .therapy-benefits-item::before{
        top: auto;
        right: 0;
        left: 0;
        bottom: -15px;
        height: 1px;
        width: 100%;
    }

    .therapy-step-no{
        height: 40px;
        width: 40px;
        margin-right: 10px;
    }

    .therapy-step-no h2{
        font-size: 20px;
        margin-bottom: 0;
    }

    .service-therapy-steps{
        margin: 20px 0;
    }

    .therapy-step-content{
        width: calc(100% - 50px);
    }

    .therapy-step-content h3{
        font-size: 18px;
    }

    .service-entry-video-image{
        margin-top: 20px;
    }

    .service-entry-video-image .video-image img{
        aspect-ratio: 1 / 0.58;
    }

    .service-entry-video-image .video-play-button a{
        width: 50px;
        height: 50px;
    }

    .service-entry-video-image .video-play-button a:after,
    .service-entry-video-image .video-play-button a:before{
        top: -50%;
        left: -50%;
    }

    .service-entry-video-image .video-play-button a i{
        font-size: 20px;
    }

	.post-image figure,
	.post-image img{
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote{
		background-position: 20px 20px;
        padding: 70px 20px 20px 20px;
	}
	
	.post-entry h2{
		font-size: 26px;
	}

	.tag-links{
		font-size: 20px;
	}

	.case-study-detail-box h2,
    .case-study-list-item h3{
        font-size: 18px;
    }

    .case-study-featured-image{
        margin-bottom: 20px;
    }

    .case-study-featured-image img{
        aspect-ratio: 1 / 0.7;
    }

    .case-study-entry h2{
        font-size: 26px;
        margin-bottom: 15px;
    }

    .case-study-entry p{
        margin-bottom: 15px;
    }

    .therapeutic-approach-item{
        width: 100%;
        border-bottom: 1px solid var(--divider-color);
        border-right: none;
        margin-bottom: 20px;
        padding: 0 0 20px 0;
    }
    
    .therapeutic-approach-item:nth-of-type(2n + 2){
        padding: 0 0 20px 0;
    }

    .therapeutic-approach-item:nth-last-child(-n + 2){
        border-bottom: 1px solid var(--divider-color);
        padding-bottom: 20px;
    }

    .therapeutic-approach-item:last-child{
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .therapeutic-approach-item .icon-box{
        width: 40px;
        height: 40px;
        margin-bottom: 20px;
    }

    .therapeutic-approach-item .icon-box img{
        max-width: 25px;
    }

    .therapeutic-approach-content h3{
        font-size: 18px;
        margin-bottom: 10px;
    }

    .case-study-list,
    .case-study-entry-image{
        width: 100%;
    }

    .case-study-entry ul li{
        font-size: 14px;
        margin-bottom: 10px;
        padding-left: 28px;
    }

    .case-study-entry ul li::before{
        font-size: 18px;
    }

    .case-study-entry-image img{
        aspect-ratio: 1 / 0.68;
    }

	.team-sidebar-image img{
        aspect-ratio: 1 / 0.86;
		object-position: initial;
    }

    .team-sidebar-body ul li{
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .team-sidebar-body ul li span,
    .team-sidebar-footer span{
        font-size: 18px;
    }

    .team-member-info,
    .team-member-experience,
    .team-member-expertise{
        margin-bottom: 30px;
    }

    .team-single-content h2{
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .team-single-content p{
        margin-bottom: 15px;
    }

    .team-member-experience{
        gap: 20px;
    }

    .member-experience-info,
    .team-member-skills{
        width: 100%;
    }

	.member-experience-info-item h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

    .skills-progress-bar{
        margin-bottom: 20px;
    }

	.pricing-box{
        padding: 20px;
    }

    .pricing-box-header{
        margin-bottom: 20px;
    }

	.pricing-title h3{
		font-size: 18px;
	}

    .pricing-title h2{
        font-size: 28px;
        margin-bottom: 15px;
    }

    .pricing-title h2 sub{
        font-size: 14px;
    }

    .pricing-list-title{
        margin-bottom: 15px;
    }

    .pricing-list-title h3{
        font-size: 18px;
    }

    .pricing-benefit-list ul{
        gap: 10px 15px;
    }

    .pricing-benefit-list ul li{
        width: calc(50% - 7.5px);
        font-size: 12px;
    }

    .pricing-benefit-list ul li img{
        max-width: 18px;
        margin-right: 5px;
    }

	.client-testimonial-header{
        margin-bottom: 20px;
    }

	.client-testimonial-rating i{
		font-size: 12px;
	}

    .client-testimonial-body{
        margin-bottom: 10px;
    }

    .client-testimonial-quote img{
        max-width: 30px;
    }

	.faq-catagery-list ul li a{
		padding: 12px 45px 12px 15px;
	}

	.contact-form-box{
        padding: 20px;
    }

    .contact-info-box{
        gap: 25px;
        padding: 20px;
    }

    .contact-info-item{
        width: 100%;
    }

    .contact-info-content h3{
        font-size: 18px;
        margin-bottom: 5px;
    }

    .google-map-iframe,
	.google-map-iframe iframe{
        height: 350px;
    }

	.error-page-image{
		margin-bottom: 20px;
	}
}
/* ==========================================================
   PHASE 1 â€” UNIQUE PAGE DESIGNS
   ========================================================== */

/* Color tokens */
:root {
    --color-exam:     #1a2332;
    --color-youth:    #fff6ee;
    --color-corp:     #f4f6f8;
    --color-personal: #f9f4ef;
    --color-exec:     #0d1117;
    --color-success:  #2d5016;
    --color-alert:    #8b1a1a;
}

/* Program switcher bar */
.program-switcher {
    background: #fdf8f2;
    border-top: 2px solid #d4c4ae;
    border-bottom: 1px solid #ede5d8;
    padding: 0;
	position: relative;
	top: 0;
    z-index: 99;
    box-shadow: 0 3px 18px rgba(155,130,90,0.10);
}
.program-switcher ul { display:flex; flex-wrap:wrap; list-style:none; margin:0; padding:0; align-items:stretch; }
.program-switcher ul li a {
    display:block; padding:13px 20px; font-size:12px; color:#a09280;
    text-decoration:none; border-bottom:3px solid transparent;
    transition:all 0.22s ease; white-space:nowrap; letter-spacing:0.4px;
}
.program-switcher ul li a:hover {
    color:#5a3d28; border-bottom-color:rgba(196,168,130,0.5); background:rgba(196,168,130,0.07);
}
.program-switcher ul li a.active {
    color:#1a2332; border-bottom-color:#9b9a84; font-weight:600; background:rgba(155,154,132,0.08);
}
.program-switcher-label {
    font-size:10px; letter-spacing:2.5px; text-transform:uppercase; color:#c4a882;
    padding:13px 20px; display:flex; align-items:center; border-right:1px solid #e8ddd0;
    font-family:'Marcellus',serif; background:rgba(196,168,130,0.07);
}

/* Full-width Program Hero */
.program-hero { padding:90px 0 70px; position:relative; overflow:hidden; }
.program-hero--dark { background:var(--color-exam); color:#fff; }
.program-hero--warm { background:var(--color-youth); }
.program-hero-badge {
    display:inline-block; background:rgba(155,154,132,0.25); color:#9b9a84;
    font-size:11px; letter-spacing:2px; text-transform:uppercase;
    padding:5px 14px; border-radius:20px; margin-bottom:20px;
}
.program-hero--dark .program-hero-badge { background:rgba(255,255,255,0.1); color:rgba(255,255,255,0.65); }
.program-hero h1 { font-size:clamp(32px,5vw,58px); line-height:1.15; margin-bottom:16px; }
.program-hero--dark h1 { color:#fff; }
.program-hero-sub { font-size:16px; line-height:1.75; opacity:.82; margin-bottom:30px; max-width:540px; }
.program-hero--dark .program-hero-sub { color:rgba(255,255,255,0.72); }
.program-hero-stats { display:flex; flex-wrap:wrap; gap:20px; margin-bottom:34px; }
.program-hero-stat { text-align:center; min-width:70px; padding:0 8px; }
.program-hero-stat strong { display:block; font-size:18px; font-family:'Marcellus',serif; }
.program-hero--dark .program-hero-stat strong { color:#fff; }
.program-hero-stat small { font-size:10px; text-transform:uppercase; letter-spacing:1px; }
.program-hero--dark .program-hero-stat small { color:rgba(255,255,255,0.45); }
.program-hero-stat-divider { width:1px; background:rgba(255,255,255,0.18); align-self:stretch; }
.program-hero-ctas { display:flex; gap:12px; flex-wrap:wrap; }
.btn-hero-primary {
    background:#fff; color:var(--color-exam); padding:13px 30px; border-radius:4px;
    font-weight:700; font-size:14px; text-decoration:none; display:inline-block; transition:all 0.25s;
}
.btn-hero-primary:hover { background:#f0f0f0; color:var(--color-exam); }
.btn-hero-ghost {
    border:1px solid rgba(255,255,255,0.38); color:#fff; padding:13px 30px; border-radius:4px;
    font-size:14px; text-decoration:none; display:inline-block; transition:all 0.25s;
}
.btn-hero-ghost:hover { border-color:#fff; color:#fff; background:rgba(255,255,255,0.07); }
.btn-hero-dark {
    background:var(--color-exam); color:#fff; padding:13px 30px; border-radius:4px;
    font-weight:700; font-size:14px; text-decoration:none; display:inline-block; transition:all 0.25s;
}
.btn-hero-dark:hover { background:#253347; color:#fff; }
.btn-hero-warm {
    background:var(--color-exam); color:#fff; padding:13px 30px; border-radius:4px;
    font-weight:700; font-size:14px; text-decoration:none; display:inline-block; transition:all 0.25s;
}
.btn-hero-warm:hover { background:#253347; color:#fff; }
.program-hero-image { height:100%; min-height:360px; border-radius:8px; overflow:hidden; }
.program-hero-image img { width:100%; height:100%; object-fit:cover; }

/* Stats band (dark strip with animated counters) */
.stats-band { background:var(--color-exam); padding:55px 0; }
.stats-band-item { text-align:center; padding:8px 0; }
.stats-band-number { display:block; font-family:'Marcellus',serif; font-size:44px; color:#fff; line-height:1; }
.stats-band-label { font-size:11px; color:rgba(255,255,255,0.5); margin-top:8px; text-transform:uppercase; letter-spacing:1px; }
.stats-band-divider { width:1px; background:rgba(255,255,255,0.13); }

/* Program snapshot — refined metrics band (Exam Mastery & program pages) */
.program-snapshot {
    background: var(--color-exam);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.program-snapshot::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 80% at 0% 50%, rgba(155,154,132,0.14), transparent 60%),
        radial-gradient(ellipse 45% 70% at 100% 30%, rgba(255,255,255,0.04), transparent 55%);
    pointer-events: none;
}
.program-snapshot .container { position: relative; z-index: 1; }
.program-snapshot-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 36px;
}
.program-snapshot-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
}
.program-snapshot-title {
    font-family: 'Marcellus', serif;
    font-size: clamp(22px, 3vw, 32px);
    color: #fff;
    margin: 0;
    line-height: 1.25;
}
.program-snapshot-card {
    height: 100%;
    padding: 28px 22px 26px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: left;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.program-snapshot-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.18);
}
.program-snapshot-card--accent {
    background: rgba(155,154,132,0.16);
    border-color: rgba(155,154,132,0.35);
}
.program-snapshot-card--accent:hover {
    background: rgba(155,154,132,0.22);
    border-color: rgba(155,154,132,0.5);
}
.program-snapshot-kicker {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 14px;
}
.program-snapshot-value {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 400;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.program-snapshot-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}
.program-snapshot-note {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,0.58);
}
@media (max-width: 767px) {
    .program-snapshot { padding: 56px 0; }
    .program-snapshot-head { margin-bottom: 28px; }
    .program-snapshot-card { padding: 22px 16px 20px; }
    .program-snapshot-value { font-size: 32px; }
    .program-snapshot-label { font-size: 13px; }
    .program-snapshot-note { font-size: 12px; }
}

/* Outcome cards — What students will gain */
.outcome-section {
    padding: 90px 0;
    background: #fff;
}
.outcome-card {
    height: 100%;
    padding: 28px 24px 26px;
    border-radius: 14px;
    border: 1px solid #e4e4dc;
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}
.outcome-card:hover {
    transform: translateY(-4px);
    border-color: rgba(26,35,50,0.22);
    box-shadow: 0 14px 32px rgba(26,35,50,0.08);
}
.outcome-card--featured {
    background: linear-gradient(180deg, #fff 0%, #f7f7f4 100%);
    border-color: rgba(26,35,50,0.16);
}
.outcome-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.outcome-card-num {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    line-height: 1;
    color: var(--color-exam);
    opacity: 0.22;
    letter-spacing: 0.5px;
}
.outcome-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-exam);
    border: 1px solid rgba(26,35,50,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.outcome-card-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    /* Template SVGs use white strokes — keep them visible on dark tile */
    filter: none;
}
.outcome-card h3 {
    font-size: 18px;
    margin: 0 0 10px;
    color: var(--primary-color);
    line-height: 1.3;
}
.outcome-card > p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0 0 18px;
    flex: 1;
}
.outcome-card-list {
    list-style: none;
    margin: 0;
    padding: 16px 0 0;
    border-top: 1px solid #ecece6;
}
.outcome-card-list li {
    position: relative;
    padding: 5px 0 5px 18px;
    font-size: 13px;
    color: #555;
    line-height: 1.45;
}
.outcome-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-color);
}
.outcome-card--featured .outcome-card-num {
    opacity: 0.35;
}
.outcome-card--featured .outcome-card-icon {
    background: var(--accent-color);
    border-color: transparent;
}
@media (max-width: 767px) {
    .outcome-section { padding: 64px 0; }
    .outcome-card { padding: 24px 20px; }
}

/* Gap cards â€” problem/solution 3-col row */
.gap-cards { padding:70px 0; background:#fff; }
.gap-card {
    border:1px solid #e4e4dc; border-radius:10px; padding:30px 26px; height:100%;
    transition:transform 0.25s, box-shadow 0.25s;
}
.gap-card:hover { transform:translateY(-4px); box-shadow:0 8px 26px rgba(0,0,0,0.08); }
.gap-card--solution { background:var(--color-exam); border-color:var(--color-exam); }
.gap-card--solution h3, .gap-card--solution p { color:#fff; }
.gap-card-icon { font-size:26px; margin-bottom:12px; display:block; }
.gap-card h3 { font-size:16px; margin-bottom:8px; }
.gap-card p { font-size:14px; line-height:1.7; margin:0; }

/* Curriculum timeline */
.curriculum-section { padding:80px 0; background:#f7f7f4; }
.curriculum-step { display:flex; gap:28px; padding:26px 0; border-bottom:1px solid #e4e4dc; }
.curriculum-step:last-child { border-bottom:none; }
.curriculum-week { flex-shrink:0; width:72px; text-align:right; }
.curriculum-week-label { font-size:9px; text-transform:uppercase; letter-spacing:2px; color:#aaa; display:block; margin-bottom:2px; }
.curriculum-week-num { font-family:'Marcellus',serif; font-size:32px; color:#ddd; line-height:1; display:block; }
.curriculum-connector { flex-shrink:0; display:flex; flex-direction:column; align-items:center; padding-top:4px; }
.curriculum-dot { width:11px; height:11px; border-radius:50%; background:var(--color-exam); flex-shrink:0; }
.curriculum-line { width:2px; flex:1; background:#ddd; margin-top:4px; }
.curriculum-step:last-child .curriculum-line { display:none; }
.curriculum-content h3 { font-size:17px; margin-bottom:7px; }
.curriculum-content p { font-size:14px; line-height:1.75; color:#666; margin:0; }

/* Persona cards â€” who is this for */
.persona-section { padding:70px 0; }
.persona-card {
    border:1px solid #e4e4dc; border-radius:10px; padding:22px 20px; height:100%; transition:all 0.25s;
    display:block; background:#fff;
}
.persona-card:hover { box-shadow:0 6px 22px rgba(0,0,0,0.09); border-color:#1a2332; transform:translateY(-3px); }
.persona-card-tag {
    display:inline-block; background:#f0f0ec; border-radius:20px; padding:3px 12px;
    font-size:11px; margin-bottom:10px; text-transform:uppercase; letter-spacing:1px; color:#666;
}
.persona-card h4 { font-size:15px; margin-bottom:7px; color:var(--primary-color); }
.persona-card p { font-size:13px; color:#666; line-height:1.65; margin:0; }
a.persona-card--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a.persona-card--link:hover h4 { color: var(--color-exam); }
.persona-card-cta {
    display: inline-block;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--color-exam);
}
.gap-card-num {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 22px;
    color: var(--color-exam);
    opacity: 0.28;
    margin-bottom: 10px;
    line-height: 1;
}
.gap-card--solution .gap-card-num { color: #fff; opacity: 0.45; }
.audience-switcher ul { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.audience-panel {
    height: 100%;
    border: 1px solid #e4e4dc;
    border-radius: 14px;
    padding: 32px 28px;
    background: #fff;
}
.audience-panel--dark {
    background: var(--color-exam);
    border-color: var(--color-exam);
    color: #fff;
}
.audience-panel-kicker {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 12px;
}
.audience-panel--dark .audience-panel-kicker { color: rgba(255,255,255,0.5); }
.audience-panel h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(22px, 2.6vw, 28px);
    margin: 0 0 20px;
    line-height: 1.25;
    color: var(--primary-color);
}
.audience-panel--dark h2 { color: #fff; }
.audience-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.audience-check-list li {
    position: relative;
    padding: 10px 0 10px 26px;
    font-size: 14px;
    line-height: 1.55;
    color: #555;
    border-bottom: 1px solid #ecece6;
}
.audience-check-list li:last-child { border-bottom: none; }
.audience-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}
.audience-panel--dark .audience-check-list li {
    color: rgba(255,255,255,0.78);
    border-bottom-color: rgba(255,255,255,0.1);
}
.audience-panel--dark .audience-check-list li::before {
    background: var(--accent-color);
}

/* â”€â”€ Manifesto hero (Leader Lab) â”€â”€ */
.manifesto-hero { background:var(--color-exec); padding:120px 0 100px; text-align:center; }
.manifesto-hero h1 { font-size:clamp(30px,5vw,55px); line-height:1.25; color:#fff; max-width:740px; margin:0 auto 20px; }
.manifesto-hero-rule { font-size:11px; letter-spacing:4px; text-transform:uppercase; color:rgba(255,255,255,0.3); margin:18px 0 32px; }
.manifesto-hero p { color:rgba(255,255,255,0.62); max-width:500px; margin:0 auto 38px; font-size:16px; line-height:1.8; }
.executive-challenge-section { padding:80px 0; background:#fff; }
.exec-statement-card {
    border-left:3px solid #e4e4dc; padding:22px 26px; margin-bottom:18px; transition:border-color 0.25s;
}
.exec-statement-card:hover { border-left-color:var(--color-exec); }
.exec-statement-card p { font-family:'Marcellus',serif; font-size:clamp(15px,1.8vw,19px); color:#262626; line-height:1.65; margin:0; }
.coaching-philosophy-section { padding:80px 0; background:#f7f7f4; }
.philosophy-heading { font-size:clamp(20px,3vw,34px); line-height:1.35; }
.leader-phase-card { background:var(--color-exec); border-radius:8px; padding:34px 26px; height:100%; }
.leader-phase-number { font-size:11px; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,0.3); margin-bottom:10px; }
.leader-phase-card h3 { color:#fff; font-size:19px; margin-bottom:12px; }
.leader-phase-card p { color:rgba(255,255,255,0.62); font-size:14px; line-height:1.75; margin:0; }
.criteria-section { padding:70px 0; background:#fff; }
.criteria-item { display:flex; gap:12px; align-items:flex-start; padding:13px 0; border-bottom:1px solid #f0f0ec; }
.criteria-check {
    width:22px; height:22px; background:var(--color-exec); color:#fff; border-radius:50%;
    display:flex; align-items:center; justify-content:center; font-size:11px; flex-shrink:0; margin-top:1px;
}
.criteria-item p { margin:0; font-size:15px; line-height:1.6; }
.confidentiality-band { background:#f0f0ec; padding:50px 0; text-align:center; }
.confidentiality-band p { font-family:'Marcellus',serif; font-size:clamp(15px,2vw,21px); color:#444; max-width:680px; margin:0 auto 14px; line-height:1.7; }
.investment-section { padding:70px 0; background:#fff; }
.investment-card { border:1px solid #e4e4dc; border-radius:10px; padding:30px; text-align:center; height:100%; }
.investment-price { font-family:'Marcellus',serif; font-size:30px; color:var(--color-exec); display:block; margin-bottom:7px; }
.leader-cta-section { background:var(--color-exec); padding:80px 0; text-align:center; }
.leader-cta-section h2 { color:#fff; margin-bottom:12px; }
.leader-cta-section p { color:rgba(255,255,255,0.58); margin-bottom:30px; }

/* â”€â”€ ReMind Kids â€” Parent-Focused â”€â”€ */
.parent-recognition-section { padding:80px 0; background:#fff; }
.speech-bubble-card {
    background:var(--color-youth); border:1px solid #f0e8de; border-radius:10px;
    padding:16px 18px; margin-bottom:12px; font-size:14px; color:#555; line-height:1.6;
}
.kids-skills-section { padding:80px 0; background:#f9f9f6; }
.skill-card {
    text-align:center; padding:28px 18px; border-radius:10px; border:1px solid #eee;
    height:100%; transition:all 0.25s; margin-bottom:22px;
}
.skill-card:hover { transform:translateY(-4px); box-shadow:0 8px 26px rgba(0,0,0,0.08); }
.skill-icon-circle {
    width:56px; height:56px; border-radius:14px; display:flex; align-items:center;
    justify-content:center; margin:0 auto 18px;
    font-family:'Marcellus', serif; font-size:18px; color:#fff;
    background:var(--color-exam); border:1px solid rgba(26,35,50,0.12);
}
.skill-icon-circle--blue,
.skill-icon-circle--orange,
.skill-icon-circle--green,
.skill-icon-circle--pink,
.skill-icon-circle--purple,
.skill-icon-circle--teal { background:var(--color-exam); color:#fff; }
.skill-card h3 { font-size:17px; margin-bottom:8px; color:var(--primary-color); }
.skill-card h4 { font-size:15px; margin-bottom:7px; }
.skill-card p { font-size:13px; color:#777; line-height:1.65; margin:0; }
.age-tabs-section { padding:80px 0; background:var(--color-youth); }
.age-tab-btns { display:flex; gap:8px; margin-bottom:28px; flex-wrap:wrap; justify-content:center; }
.age-tab-btn {
    padding:10px 22px; border-radius:25px; border:1px solid #e4ddd5; background:#fff;
    font-size:13px; cursor:pointer; transition:all 0.2s; color:#666; font-family:inherit;
}
.age-tab-btn.active, .age-tab-btn:hover { background:var(--color-exam); border-color:var(--color-exam); color:#fff; }
.age-tab-content { display:none; }
.age-tab-content.active { display:block; }
.age-content-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
@media (max-width:767px) { .age-content-row { grid-template-columns:1fr; } }
.age-panel {
    background:#fff; border:1px solid #e8dfd6; border-radius:14px; padding:26px 24px; height:100%;
}
.age-panel h4 {
    font-size:15px; margin:0 0 16px; color:var(--primary-color); padding-bottom:12px;
    border-bottom:1px solid #f0ece8;
}
.age-challenge-list, .age-outcome-list { list-style:none; padding:0; margin:0; }
.age-challenge-list li,
.age-outcome-list li {
    position:relative; padding:10px 0 10px 22px; border-bottom:1px solid #f0ece8;
    font-size:14px; color:#555; line-height:1.55;
}
.age-challenge-list li:last-child,
.age-outcome-list li:last-child { border-bottom:none; }
.age-challenge-list li::before {
    content:""; position:absolute; left:0; top:16px; width:8px; height:8px;
    border-radius:50%; background:var(--accent-color);
}
.age-outcome-list li::before {
    content:""; position:absolute; left:0; top:16px; width:8px; height:8px;
    border-radius:50%; background:var(--color-exam);
}
.age-panel--outcome h4 { color:var(--color-exam); }
.parent-quote-card { background:var(--color-youth); border-radius:10px; padding:28px 24px; height:100%; border-left:4px solid #d4c4b0; }
.parent-quote-text { font-family:'Marcellus',serif; font-size:15px; line-height:1.75; color:#444; margin-bottom:16px; }
.parent-quote-author { font-size:13px; color:#888; }
.parent-quote-author strong { color:#555; display:block; }
.kids-options-section { padding:70px 0; background:#f7f7f4; }
.kids-option-card {
    background:#fff; border:1px solid #e4e4dc; border-radius:10px; padding:30px 22px;
    height:100%; text-align:center; transition:all 0.25s;
}
.kids-option-card:hover { box-shadow:0 8px 26px rgba(0,0,0,0.09); transform:translateY(-3px); }
.kids-option-card h4 { font-size:17px; margin-bottom:7px; }
.kids-option-badge { display:inline-block; background:var(--color-exam); color:#fff; font-size:11px; border-radius:3px; padding:3px 10px; margin-bottom:12px; }
.kids-option-price { font-size:20px; font-family:'Marcellus',serif; color:var(--color-exam); display:block; margin:10px 0 4px; }
.kids-option-card ul { list-style:none; padding:0; margin:12px 0 18px; text-align:left; }
.kids-option-card ul li {
    position:relative; font-size:13px; padding:6px 0 6px 18px; color:#666; line-height:1.5;
}
.kids-option-card ul li::before {
    content:""; position:absolute; left:0; top:11px; width:7px; height:7px;
    border-radius:50%; background:var(--accent-color);
}
.kids-cta-section { background:var(--color-youth); padding:80px 0; }

/* â”€â”€ 4R Framework â”€â”€ */
.framework-overview { padding:60px 0 40px; background:#fff; }
.framework-steps-visual { display:flex; border:1px solid #e4e4dc; border-radius:10px; overflow:hidden; margin:38px 0; }
.framework-step-block { flex:1; padding:34px 20px; text-align:center; position:relative; transition:opacity 0.25s, transform 0.25s; text-decoration:none; display:flex; flex-direction:column; align-items:center; justify-content:center; color:inherit; }
.framework-steps-visual--tall .framework-step-block { padding:48px 22px; min-height:180px; }
.framework-step-block:hover { opacity:.92; transform: translateY(-2px); }
.framework-step-block::after {
    content: '\2192';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.55);
    z-index: 2;
}
.framework-step-block:last-child::after { display:none; }
.framework-step-block--r1 { background:#1a2332; }
.framework-step-block--r2 { background:#2d3f55; }
.framework-step-block--r3 { background:#3d5270; }
.framework-step-block--r4 { background:#9b9a84; }
.framework-step-num { font-size:10px; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-bottom:8px; }
.framework-step-title { font-family:'Marcellus',serif; font-size:19px; color:#fff; margin-bottom:7px; }
.framework-step-sub { font-size:12px; color:rgba(255,255,255,0.58); line-height:1.5; }
.framework-r-section { padding:80px 0; scroll-margin-top: 100px; }
.framework-r-section--alt { background:#f7f7f4; }
.framework-r-section--final { background:var(--color-exam); }
.framework-overview { scroll-margin-top: 90px; }
.framework-r-section--final h2, .framework-r-section--final h3, .framework-r-section--final p { color:#fff; }
.framework-r-section--final .framework-r-number { color:rgba(255,255,255,0.06); }
.framework-r-number { font-family:'Marcellus',serif; font-size:110px; line-height:1; color:rgba(0,0,0,0.04); position:absolute; right:16px; top:16px; pointer-events:none; user-select:none; }
.framework-r-wrapper { position:relative; overflow:hidden; }
.framework-r-label { font-size:10px; letter-spacing:3px; text-transform:uppercase; color:#9b9a84; margin-bottom:10px; display:block; }
.framework-r-section--final .framework-r-label { color:rgba(255,255,255,0.45); }
.framework-application { padding:70px 0; background:#fff; }
.application-card { border:1px solid #e4e4dc; border-radius:10px; padding:30px 26px; height:100%; }
.application-card h4 { font-size:15px; margin-bottom:14px; }
.application-card ul { list-style:none; padding:0; margin:0; }
.application-card ul li { padding:7px 0; border-bottom:1px solid #f0f0ec; font-size:14px; color:#555; display:flex; gap:9px; }
.application-card ul li:last-child { border-bottom:none; }
.application-r-badge { background:var(--color-exam); color:#fff; border-radius:3px; font-size:10px; padding:2px 7px; flex-shrink:0; align-self:flex-start; margin-top:2px; }
.science-section { padding:70px 0; background:#f7f7f4; }
.science-citation { background:#fff; border-left:4px solid var(--color-exam); padding:20px 22px; border-radius:0 8px 8px 0; margin-bottom:14px; }
.science-citation p { margin:0; font-size:14px; line-height:1.75; color:#555; }
.science-citation strong { color:#262626; }

/* â”€â”€ Story / Timeline â”€â”€ */
.story-editorial-hero { position:relative; min-height:400px; overflow:hidden; display:flex; align-items:flex-end; }
.story-editorial-hero img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.story-editorial-hero-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(26,35,50,0.88) 30%, rgba(26,35,50,0.18) 100%); }
.story-editorial-hero-text { position:relative; z-index:2; padding:56px 60px; color:#fff; max-width:760px; }
.story-editorial-hero-text h2 { color:#fff; font-size:clamp(20px,3.5vw,38px); line-height:1.3; }
.founding-quote-section { padding:80px 0; background:var(--color-exam); text-align:center; }
.founding-quote-mark { font-size:110px; line-height:0.55; color:rgba(255,255,255,0.07); font-family:Georgia,serif; display:block; margin-bottom:18px; }
.founding-quote-text { font-family:'Marcellus',serif; font-size:clamp(17px,2.5vw,28px); color:#fff; max-width:780px; margin:0 auto 22px; line-height:1.65; }
.founding-quote-attr { font-size:12px; color:rgba(255,255,255,0.4); letter-spacing:1px; }
.story-gap-section { padding:80px 0; background:#fff; }
.story-timeline { padding:80px 0; background:#f7f7f4; }
.story-timeline-inner { position:relative; }
.story-timeline-inner::before { content:''; position:absolute; left:50%; top:0; bottom:0; width:2px; background:#e0e0d8; transform:translateX(-50%); }
.story-timeline-item { display:flex; gap:0; margin-bottom:56px; position:relative; }
.story-timeline-item:nth-child(odd)  { flex-direction:row; }
.story-timeline-item:nth-child(even) { flex-direction:row-reverse; }
.story-timeline-content {
    width:calc(50% - 44px); background:#fff; border:1px solid #e4e4dc;
    border-radius:10px; padding:26px 22px;
}
.story-timeline-item:nth-child(odd)  .story-timeline-content { margin-right:auto; }
.story-timeline-item:nth-child(even) .story-timeline-content { margin-left:auto; }
.story-timeline-center { position:absolute; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; top:18px; }
.story-timeline-year-badge {
    background:var(--color-exam); color:#fff; font-family:'Marcellus',serif;
    font-size:14px; padding:5px 15px; border-radius:20px; white-space:nowrap; z-index:2;
}
.story-timeline-content h3 { font-size:16px; margin-bottom:7px; }
.story-timeline-content p { font-size:14px; color:#666; line-height:1.7; margin:0; }
.story-why-name { padding:70px 0; background:var(--color-youth); text-align:center; }
.story-why-name p { font-family:'Marcellus',serif; font-size:clamp(15px,2.5vw,24px); max-width:700px; margin:0 auto; color:#444; line-height:1.75; }
.story-growth-band { background:var(--color-exam); padding:55px 0; }
.story-vision-section { padding:70px 0; background:#fff; }

/* Responsive overrides */
@media (max-width:991px) {
    .program-hero { padding:60px 0 48px; }
    .framework-steps-visual { flex-direction:column; }
    .framework-step-block::after { display:none; }
    .story-timeline-inner::before { left:20px; }
    .story-timeline-item,
    .story-timeline-item:nth-child(even) { flex-direction:column; padding-left:52px; }
    .story-timeline-content { width:100% !important; margin:0 !important; }
    .story-timeline-center { left:20px; top:22px; }
    .story-editorial-hero-text { padding:30px 24px; }
    .program-switcher ul { overflow-x:auto; flex-wrap:nowrap; }
}
@media (max-width:767px) {
    .program-hero h1 { font-size:28px; }
    .program-hero-stats { gap:14px; }
    .program-hero-stat-divider { display:none; }
    .stats-band-number { font-size:32px; }
    .manifesto-hero { padding:80px 0 60px; }
    .manifesto-hero h1 { font-size:26px; }
    .framework-r-number { font-size:60px; }
    .founding-quote-text { font-size:16px; }
}

/* ==========================================================
   SOLUTION PAGES — FULL-WIDTH SINGLE-PAGE LAYOUT
   DNA borrowed from Program pages, distinct forest-green identity
   ========================================================== */

/* ============================================================
   SOLUTION THEMES — distinct light identities per solution
   Student=Green | Parent=Warm Clay | Educator=Academic Blue
   Professional=Slate Teal | Organisational=Plum Wine
   ============================================================ */

body.solution-neo {
    --sol-ink: #0f2d1a;
    --sol-mid: #3f4535;
    --sol-accent: #5e664c;
    --sol-soft: #5a7a6a;
    --sol-text: #4a6a5a;
    --sol-light: #f2f9f5;
    --sol-warm: #fdf8f3;
    --sol-line: #c8e6d4;
    --sol-softline: #d4ead0;
    --sol-mist: #e8f2ec;
    --sol-glow: #7fd9a5;
    --sol-shadow: rgba(15, 45, 26, 0.1);
}

/* Student Development — Growth Green */
body.sol-theme-student {
    --sol-ink: #0f2d1a;
    --sol-mid: #3f4535;
    --sol-accent: #5e664c;
    --sol-soft: #5a7a6a;
    --sol-text: #4a6a5a;
    --sol-light: #f2f9f5;
    --sol-warm: #fdf8f3;
    --sol-line: #c8e6d4;
    --sol-softline: #d4ead0;
    --sol-mist: #e8f2ec;
    --sol-glow: #7fd9a5;
    --sol-shadow: rgba(15, 45, 26, 0.1);
}

/* Parent Development — Warm Clay */
body.sol-theme-parent {
    --sol-ink: #3d2a1c;
    --sol-mid: #6b4a32;
    --sol-accent: #b07d4b;
    --sol-soft: #7a6554;
    --sol-text: #6a5648;
    --sol-light: #faf6f1;
    --sol-warm: #fdf8f3;
    --sol-line: #ead9c8;
    --sol-softline: #e8dccf;
    --sol-mist: #f5ebe0;
    --sol-glow: #e0b989;
    --sol-shadow: rgba(61, 42, 28, 0.1);
}

/* Educator Development — Academic Blue */
body.sol-theme-educator {
    --sol-ink: #152238;
    --sol-mid: #243a5e;
    --sol-accent: #3a6ea5;
    --sol-soft: #5a6f8a;
    --sol-text: #4a5f78;
    --sol-light: #f2f6fb;
    --sol-warm: #f7f9fc;
    --sol-line: #c9d7ea;
    --sol-softline: #d5e0ef;
    --sol-mist: #e8eef7;
    --sol-glow: #8eb4d9;
    --sol-shadow: rgba(21, 34, 56, 0.1);
}

/* Professional Development — Slate Teal */
body.sol-theme-professional {
    --sol-ink: #1a2b32;
    --sol-mid: #243d47;
    --sol-accent: #2f6f7e;
    --sol-soft: #5a727a;
    --sol-text: #4a646c;
    --sol-light: #f3f8f9;
    --sol-warm: #f6fafb;
    --sol-line: #c5dde2;
    --sol-softline: #d2e4e8;
    --sol-mist: #e4f0f3;
    --sol-glow: #7eb8c4;
    --sol-shadow: rgba(26, 43, 50, 0.1);
}

/* Organisational Development — Plum Wine */
body.sol-theme-organisational {
    --sol-ink: #2a1a24;
    --sol-mid: #4a2d3c;
    --sol-accent: #8a4a62;
    --sol-soft: #7a5a68;
    --sol-text: #6a5460;
    --sol-light: #faf4f7;
    --sol-warm: #fdf8fa;
    --sol-line: #e5cfd8;
    --sol-softline: #ecd9e1;
    --sol-mist: #f3e6ec;
    --sol-glow: #c48aa0;
    --sol-shadow: rgba(42, 26, 36, 0.1);
}

/* Page header fallback (when no banner image contrast needed) */
body.solution-neo .page-header.parallaxie {
    background: linear-gradient(135deg, var(--sol-ink) 0%, var(--sol-mid) 60%, var(--sol-ink) 100%);
    position: relative;
    overflow: hidden;
}
body.solution-neo .page-header.parallaxie::before {
    content: "";
    position: absolute;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--sol-accent) 18%, transparent);
    top: -200px; right: -100px;
    pointer-events: none;
}
body.solution-neo .page-header-box,
body.solution-neo .page-header-box h1,
body.solution-neo .breadcrumb-item,
body.solution-neo .breadcrumb-item a { color: #f2f9f5; position: relative; z-index: 2; }
body.solution-neo .breadcrumb-item.active { color: rgba(242,249,245,.7); }

/* Light banner headers — theme ink for contrast */
body.solution-header-darktext .page-header-box,
body.solution-header-darktext .page-header-box h1 {
    color: var(--sol-ink);
}
body.solution-header-darktext .breadcrumb-item,
body.solution-header-darktext .breadcrumb-item a {
    color: var(--sol-mid);
}
body.solution-header-darktext .breadcrumb-item.active {
    color: var(--sol-accent);
}
body.solution-header-darktext .page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
    color: var(--sol-accent);
}

/* ── Solution Navigator ── */
.sol-navigator {
    background: #fff;
    border-bottom: 2px solid var(--sol-line);
    position: sticky; top: 0; z-index: 89;
    box-shadow: 0 3px 16px var(--sol-shadow);
}
.sol-navigator ul {
    display: flex; flex-wrap: nowrap; overflow-x: auto;
    list-style: none; margin: 0; padding: 0;
    scrollbar-width: none;
}
.sol-navigator ul::-webkit-scrollbar { display: none; }
.sol-nav-label {
    font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--sol-accent); padding: 14px 20px;
    display: flex; align-items: center;
    border-right: 1px solid var(--sol-mist);
    font-family: 'Marcellus', serif; white-space: nowrap; flex-shrink: 0;
}
.sol-navigator ul li a {
    display: block; padding: 14px 18px; font-size: 12px; color: var(--sol-soft);
    text-decoration: none; border-bottom: 3px solid transparent;
    transition: all .22s ease; white-space: nowrap; flex-shrink: 0;
}
.sol-navigator ul li a:hover {
    color: var(--sol-ink);
    border-bottom-color: color-mix(in srgb, var(--sol-accent) 45%, transparent);
    background: color-mix(in srgb, var(--sol-accent) 6%, transparent);
}
.sol-navigator ul li a.active {
    color: var(--sol-ink);
    border-bottom-color: var(--sol-accent);
    font-weight: 600;
    background: color-mix(in srgb, var(--sol-accent) 8%, transparent);
}

/* ── Solution Hero ── */
.sol-hero {
    padding: 90px 0 80px;
    background: var(--sol-warm);
    position: relative; overflow: hidden;
}
.sol-hero::before {
    content: ""; position: absolute;
    left: 0; top: 0; bottom: 0; width: 6px;
    background: linear-gradient(to bottom, var(--sol-accent), var(--sol-ink));
}
.sol-hero-badge {
    display: inline-block;
    background: color-mix(in srgb, var(--sol-accent) 14%, transparent);
    color: var(--sol-mid); font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase; padding: 5px 14px;
    border-radius: 20px; margin-bottom: 22px;
}
.sol-hero h1 { font-size: clamp(26px, 4.5vw, 50px); line-height: 1.18; color: var(--sol-ink); margin-bottom: 18px; }
.sol-hero-sub { font-size: 16px; line-height: 1.75; color: var(--sol-text); max-width: 540px; margin-bottom: 32px; }
.sol-hero-outcomes {
    display: flex; flex-wrap: wrap; margin-bottom: 34px;
    border: 1px solid var(--sol-line); border-radius: 10px;
    overflow: hidden; background: #fff; max-width: 480px;
}
.sol-hero-outcome-item {
    flex: 1; min-width: 130px; padding: 14px 16px;
    border-right: 1px solid var(--sol-line);
}
.sol-hero-outcome-item:last-child { border-right: none; }
.sol-hero-outcome-item::before { content: "\2713"; font-size: 11px; color: var(--sol-accent); font-weight: 700; display: block; margin-bottom: 3px; }
.sol-hero-outcome-item span { font-size: 13px; color: var(--sol-mid); line-height: 1.4; display: block; }
.sol-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-sol-primary {
    background: var(--sol-ink); color: #fff; padding: 13px 28px;
    border-radius: 4px; font-weight: 700; font-size: 14px;
    text-decoration: none; display: inline-block; transition: all .25s;
}
.btn-sol-primary:hover { background: var(--sol-mid); color: #fff; }
.btn-sol-primary--invert {
    background: #fff !important;
    color: var(--sol-ink) !important;
}
.btn-sol-primary--invert:hover {
    background: var(--sol-light) !important;
    color: var(--sol-ink) !important;
}
.btn-sol-ghost {
    border: 2px solid var(--sol-ink); color: var(--sol-ink); padding: 11px 28px;
    border-radius: 4px; font-size: 14px; text-decoration: none;
    display: inline-block; transition: all .25s;
}
.btn-sol-ghost:hover { background: var(--sol-ink); color: #fff; }
.sol-hero-image { border-radius: 14px; overflow: hidden; height: 100%; min-height: 400px; }
.sol-hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Challenge Section ── */
.sol-challenge-section { padding: 80px 0; background: #fff; }
.sol-challenge-section .section-title h3 { color: var(--sol-accent); }
.sol-challenge-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 20px; margin-top: 40px;
}
.sol-challenge-card {
    background: var(--sol-warm); border: 1px solid var(--sol-line);
    border-top: 4px solid var(--sol-accent); border-radius: 12px;
    padding: 28px 22px; transition: transform .25s, box-shadow .25s;
}
.sol-challenge-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px var(--sol-shadow); }
.sol-challenge-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.sol-challenge-card h4 { font-size: 16px; color: var(--sol-ink); margin-bottom: 8px; }
.sol-challenge-card p { font-size: 14px; color: var(--sol-soft); line-height: 1.65; margin: 0; }

/* ── Promise Band ── */
.sol-promise-band {
    background: linear-gradient(135deg, var(--sol-ink) 0%, var(--sol-mid) 100%);
    padding: 70px 0; position: relative; overflow: hidden;
}
.sol-promise-band::after {
    content: "4R"; position: absolute; right: -10px; top: -30px;
    font-size: 200px; font-family: 'Marcellus',serif;
    color: rgba(255,255,255,.03); pointer-events: none; line-height: 1;
}
.sol-promise-band .section-title h3 { color: color-mix(in srgb, var(--sol-glow) 70%, transparent); }
.sol-promise-band .section-title h2 { color: #fff; }
.sol-promise-band .section-title p { color: rgba(255,255,255,.65); }
.sol-promise-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.sol-promise-item:last-child { border-bottom: none; }
.sol-promise-check {
    width: 28px; height: 28px; border-radius: 50%;
    background: color-mix(in srgb, var(--sol-accent) 40%, transparent); display: flex;
    align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
}
.sol-promise-check i { font-size: 11px; color: var(--sol-glow); }
.sol-promise-item h4 { font-size: 16px; color: #fff; margin-bottom: 4px; }
.sol-promise-item p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.65; margin: 0; }
.sol-promise-stat-col { display: flex; flex-direction: column; gap: 20px; }
.sol-stat-block {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px; padding: 22px 20px; text-align: center;
}
.sol-stat-block strong {
    display: block; font-family: 'Marcellus',serif;
    font-size: 38px; color: var(--sol-glow); line-height: 1; margin-bottom: 6px;
}
.sol-stat-block span { font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; line-height: 1.4; }

/* ── Programs Section ── */
.sol-programs-section { padding: 80px 0; background: var(--sol-light); }
.sol-programs-section .section-title h3 { color: var(--sol-accent); }
.sol-programs-section .section-title h2 { color: var(--sol-ink); }
.sol-program-card {
    background: #fff; border: 1px solid var(--sol-softline);
    border-radius: 14px; overflow: hidden; height: 100%;
    transition: transform .25s, box-shadow .25s;
    display: flex; flex-direction: column;
}
.sol-program-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px var(--sol-shadow); }
.sol-program-card figure { margin: 0; height: 200px; overflow: hidden; }
.sol-program-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.sol-program-card:hover figure img { transform: scale(1.04); }
.sol-program-card-body { padding: 24px 22px; flex: 1; display: flex; flex-direction: column; }
.sol-program-tag {
    display: inline-block;
    background: color-mix(in srgb, var(--sol-accent) 14%, transparent);
    color: var(--sol-mid); font-size: 11px; text-transform: uppercase;
    letter-spacing: 1px; padding: 3px 10px; border-radius: 4px; margin-bottom: 10px;
}
.sol-program-card-body h3 { font-size: 18px; color: var(--sol-ink); margin-bottom: 8px; }
.sol-program-card-body p { font-size: 14px; color: var(--sol-soft); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.sol-program-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.sol-program-meta span { font-size: 12px; color: var(--sol-accent); }
.sol-program-card-footer { padding: 0 22px 22px; }

/* ── Quote Strip ── */
.sol-quote-strip {
    background: var(--sol-warm); padding: 60px 0; text-align: center;
    border-top: 1px solid var(--sol-line); border-bottom: 1px solid var(--sol-line);
}
.sol-quote-mark { font-size: 80px; line-height: .6; color: color-mix(in srgb, var(--sol-accent) 22%, transparent); font-family: Georgia,serif; display: block; margin-bottom: 16px; }
.sol-quote-text { font-family: 'Marcellus',serif; font-size: clamp(16px,2.2vw,22px); color: var(--sol-ink); max-width: 740px; margin: 0 auto 16px; line-height: 1.7; }
.sol-quote-attr { font-size: 13px; color: var(--sol-soft); letter-spacing: 1px; }

/* ── Solution CTA — light bridge into site Discovery band ── */
.sol-cta-section {
    background:
        radial-gradient(ellipse 55% 70% at 92% 20%, rgba(45,122,79,.10), transparent 55%),
        radial-gradient(ellipse 45% 55% at 8% 85%, rgba(232,245,238,.85), transparent 50%),
        linear-gradient(180deg, #f7f5f0 0%, #eef7f2 48%, #e8f5ee 100%);
    padding: 72px 0 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(45,122,79,.10);
}
.sol-cta-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,122,79,.09) 0%, transparent 68%);
    bottom: -220px;
    right: -120px;
    pointer-events: none;
}
.sol-cta-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(220px, 40%);
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(45,122,79,.35), transparent);
}
.sol-cta-section h3 {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--res-green, #2d7a4f);
    margin-bottom: 14px;
    font-weight: 700;
}
.sol-cta-section h2 {
    font-size: clamp(22px, 3.5vw, 38px);
    color: var(--res-ink, #1a2332);
    margin: 0 auto 14px;
    max-width: 18ch;
    line-height: 1.2;
}
.sol-cta-section p {
    color: var(--res-text, #4a5568);
    max-width: 540px;
    margin: 0 auto 32px;
    font-size: 16px;
    line-height: 1.75;
}
.sol-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.sol-cta-section .btn-sol-primary {
    background: var(--res-green, #2d7a4f);
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(45,122,79,.18);
}
.sol-cta-section .btn-sol-primary:hover {
    background: var(--res-green-deep, #1a5c37);
    color: #fff;
}
.sol-cta-section .btn-sol-ghost {
    border: 1.5px solid rgba(45,122,79,.35);
    color: var(--res-green-deep, #1a5c37);
    background: rgba(255,255,255,.72);
    border-radius: 10px;
}
.sol-cta-section .btn-sol-ghost:hover {
    background: var(--res-green, #2d7a4f);
    border-color: var(--res-green, #2d7a4f);
    color: #fff;
}
/* Neutralise old dark-CTA inline overrides on solution pages */
.sol-cta-section .btn-sol-ghost[style],
.sol-cta-section a.btn-sol-ghost[style] {
    border-color: rgba(45,122,79,.35) !important;
    color: var(--res-green-deep, #1a5c37) !important;
}
.sol-cta-section .btn-sol-primary--invert {
    background: var(--res-green, #2d7a4f) !important;
    color: #fff !important;
}
.sol-cta-section .btn-sol-primary--invert:hover {
    background: var(--res-green-deep, #1a5c37) !important;
    color: #fff !important;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .sol-navigator ul { flex-wrap: nowrap; overflow-x: auto; }
    .sol-hero { padding: 60px 0 50px; }
    .sol-hero-image { min-height: 280px; margin-top: 28px; }
    .sol-challenge-grid { grid-template-columns: 1fr 1fr; }
    .sol-promise-stat-col { flex-direction: row; flex-wrap: wrap; gap: 12px; }
    .sol-stat-block { flex: 1; min-width: 120px; }
}
@media (max-width: 767px) {
    .sol-challenge-grid { grid-template-columns: 1fr; }
    .sol-hero h1 { font-size: 26px; }
    .sol-hero-outcomes { flex-direction: column; }
    .sol-hero-outcome-item { border-right: none; border-bottom: 1px solid var(--sol-line); }
    .sol-hero-outcome-item:last-child { border-bottom: none; }
}

/* ── Enriched solution sections ── */
.sol-philosophy-section { padding: 70px 0; background: #fff; }
.sol-philosophy-panel {
    background: var(--sol-light);
    border: 1px solid var(--sol-softline);
    border-radius: 18px;
    padding: 40px 36px;
}
.sol-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}
.sol-philosophy-item {
    background: #fff;
    border: 1px solid var(--sol-mist);
    border-radius: 12px;
    padding: 18px 16px;
    text-align: center;
}
.sol-philosophy-item strong {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 18px;
    color: var(--sol-ink);
    margin-bottom: 6px;
}
.sol-philosophy-item span {
    display: block;
    font-size: 13px;
    line-height: 1.55;
    color: var(--sol-soft);
}
.sol-philosophy-note {
    margin: 0 auto;
    text-align: center;
    font-size: 15px;
    line-height: 1.8;
    color: var(--sol-text);
    max-width: 720px;
}

.sol-build-section { padding: 80px 0; background: var(--sol-warm); }
.sol-build-section .section-title h3 { color: var(--sol-accent); }
.sol-build-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--sol-line);
    border-radius: 14px;
    padding: 22px 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.sol-build-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px var(--sol-shadow);
    border-color: color-mix(in srgb, var(--sol-accent) 35%, transparent);
}
.sol-build-card--accent {
    background: linear-gradient(180deg, #fff 0%, var(--sol-light) 100%);
    border-color: var(--sol-line);
}
.sol-build-num {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 20px;
    color: var(--sol-accent);
    opacity: 0.4;
    margin-bottom: 10px;
    line-height: 1;
}
.sol-build-card h4 { font-size: 16px; color: var(--sol-ink); margin: 0 0 8px; }
.sol-build-card p { margin: 0; font-size: 13px; line-height: 1.6; color: var(--sol-soft); }

.sol-program-focus {
    list-style: none;
    margin: 0 0 14px;
    padding: 12px 0 0;
    border-top: 1px solid var(--sol-mist);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
}
.sol-program-focus li {
    position: relative;
    padding: 2px 0 2px 14px;
    font-size: 12px;
    color: var(--sol-text);
}
.sol-program-focus li::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--sol-accent);
}
.sol-program-ideal { margin: 0; font-size: 13px; line-height: 1.55; color: var(--sol-soft); }
.sol-program-ideal strong { color: var(--sol-ink); }

.sol-coming-soon-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--sol-ink) 0%, var(--sol-mid) 100%);
    border-radius: 16px;
    padding: 28px 32px;
}
.sol-coming-soon-banner h3 { color: #fff; font-size: 22px; margin: 10px 0 6px; }
.sol-coming-soon-banner p { margin: 0; color: rgba(255, 255, 255, 0.65); font-size: 14px; line-height: 1.6; }
.sol-coming-soon-tag {
    display: inline-block;
    background: rgba(255,255,255,.12);
    color: var(--sol-glow);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 4px;
}

.sol-journey-section { padding: 80px 0; background: #fff; }
.sol-journey-section .section-title h3 { color: var(--sol-accent); }
.sol-journey-track {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}
.sol-journey-step {
    background: var(--sol-light);
    border: 1px solid var(--sol-softline);
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
}
.sol-journey-step span {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 18px;
    color: var(--sol-accent);
    opacity: 0.45;
    margin-bottom: 8px;
}
.sol-journey-step strong { display: block; font-size: 14px; color: var(--sol-ink); margin-bottom: 4px; }
.sol-journey-step p { margin: 0; font-size: 12px; line-height: 1.45; color: var(--sol-soft); }
.sol-journey-step--final {
    background: var(--sol-ink);
    border-color: var(--sol-ink);
}
.sol-journey-step--final span { color: var(--sol-glow); opacity: 0.8; }
.sol-journey-step--final strong { color: #fff; }
.sol-journey-step--final p { color: rgba(255, 255, 255, 0.65); }

.sol-beyond-section { padding: 80px 0; background: var(--sol-light); }
.sol-beyond-section .section-title h3 { color: var(--sol-accent); }
.sol-check-list { list-style: none; margin: 0; padding: 0; }
.sol-check-list li {
    position: relative;
    padding: 11px 0 11px 28px;
    border-bottom: 1px solid var(--sol-mist);
    font-size: 14px;
    color: var(--sol-mid);
    line-height: 1.5;
}
.sol-check-list li:last-child { border-bottom: none; }
.sol-check-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 16px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--sol-accent);
}
.sol-why-panel {
    background: linear-gradient(145deg, var(--sol-ink) 0%, var(--sol-mid) 100%);
    border-radius: 18px;
    padding: 36px 30px;
    height: 100%;
}
.sol-panel-kicker { color: var(--sol-glow) !important; }
.sol-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.sol-why-grid span {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.sol-parent-questions { padding: 80px 0; background: #fff; }
.sol-parent-questions .section-title h3 { color: var(--sol-accent); }
.sol-question-card {
    height: 100%;
    background: var(--sol-light);
    border: 1px solid var(--sol-softline);
    border-left: 4px solid var(--sol-accent);
    border-radius: 12px;
    padding: 20px 18px;
    font-family: 'Marcellus', serif;
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--sol-ink);
    line-height: 1.55;
}
.sol-question-card--wide { text-align: center; }

.sol-why-list { display: flex; flex-direction: column; gap: 10px; }
.sol-why-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.sol-why-line strong { color: var(--sol-glow); font-size: 14px; }
.sol-why-line span { color: rgba(255, 255, 255, 0.65); font-size: 13px; }

.sol-topics-section { padding: 70px 0; background: #fff; }
.sol-topics-section .section-title h3 { color: var(--sol-accent); }
.sol-topics-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 920px;
    margin: 0 auto;
}
.sol-topics-grid span {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--sol-softline);
    background: var(--sol-light);
    font-size: 13px;
    color: var(--sol-mid);
    line-height: 1.4;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.sol-topics-grid span:hover {
    background: #fff;
    border-color: var(--sol-accent);
}

.sol-audience-formats { padding: 80px 0; background: var(--sol-warm); }
.sol-audience-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--sol-line);
    border-radius: 16px;
    padding: 32px 28px;
}
.sol-audience-card--alt {
    background: var(--sol-light);
    border-color: var(--sol-softline);
}
.sol-audience-card h3 {
    font-family: 'Marcellus', serif;
    font-size: 24px;
    color: var(--sol-ink);
    margin: 0 0 20px;
}

@media (max-width: 991px) {
    .sol-philosophy-grid { grid-template-columns: 1fr 1fr; }
    .sol-journey-track { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 767px) {
    .sol-philosophy-panel { padding: 28px 20px; }
    .sol-philosophy-grid { grid-template-columns: 1fr; }
    .sol-journey-track { grid-template-columns: 1fr 1fr; }
    .sol-coming-soon-banner { padding: 24px 20px; }
    .sol-why-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   RESOURCES SECTION -- Light Color Design System
   ============================================================ */
:root {
    /* Base: charcoal + warm stone. Green used intentionally for booking / success. */
    --res-bg:           #f7f5f0;
    --res-card:         #ffffff;
    --res-ink:          #1a2332;
    --res-text:         #4a5568;
    --res-muted:        #718096;
    --res-accent:       #5e664c;       /* quiet olive for general accents */
    --res-accent-deep:  #3f4535;
    --res-accent-light: #f0eee6;       /* warm stone */
    --res-warm:         #fdf9f3;
    --res-line:         #e4e0d8;
    --res-tag-bg:       #f1efe8;
    --res-tag-text:     #3f4535;
    /* Intentional green — Discovery scheduling, CTAs, success */
    --res-green:        #2d7a4f;
    --res-green-deep:   #1a5c37;
    --res-green-light:  #e8f5ee;
    --res-green-soft:   #eef7f2;
    --res-success:      #2d7a4f;
}
.res-navigator {
    background: #ffffff;
    border-bottom: 2px solid var(--res-line);
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 12px rgba(26,35,50,.06);
}
.res-navigator .container-fluid { padding: 0 32px; }
.res-navigator ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; gap: 0;
    overflow-x: auto; scrollbar-width: none;
}
.res-navigator ul::-webkit-scrollbar { display: none; }
.res-nav-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--res-muted);
    padding: 0 20px 0 4px; white-space: nowrap;
    border-right: 1px solid var(--res-line); margin-right: 8px;
}
.res-navigator ul li a {
    display: block; padding: 16px 20px; font-size: 14px; font-weight: 500;
    color: var(--res-text); text-decoration: none; white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: color .2s, border-color .2s, background .2s;
}
.res-navigator ul li a:hover { color: var(--res-accent); background: var(--res-accent-light); border-bottom-color: var(--res-accent); }
.res-navigator ul li.active a, .res-navigator ul li a.active { color: var(--res-accent); border-bottom-color: var(--res-accent); font-weight: 600; }
.res-hero { background: var(--res-warm); padding: 72px 0 56px; border-bottom: 1px solid var(--res-line); }
.res-hero-badge {
    display: inline-block; background: var(--res-accent-light); color: var(--res-accent);
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 100px; margin-bottom: 20px;
}
.res-hero h1 { font-size: 46px; line-height: 1.15; color: var(--res-ink); font-family: 'Marcellus', serif; margin-bottom: 16px; }
.res-hero-sub { font-size: 17px; color: var(--res-text); max-width: 600px; line-height: 1.7; margin-bottom: 32px; }
.res-tab-nav {
    display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
    background: #ffffff; padding: 8px; border-radius: 12px; border: 1px solid var(--res-line);
}
.res-tab-nav .res-tab-btn {
    background: transparent; border: none; padding: 10px 22px; font-size: 14px;
    font-weight: 500; color: var(--res-text); border-radius: 8px; cursor: pointer;
    transition: background .2s, color .2s; white-space: nowrap;
}
.res-tab-nav .res-tab-btn:hover { background: var(--res-accent-light); color: var(--res-accent); }
.res-tab-nav .res-tab-btn.active { background: var(--res-ink); color: #ffffff; font-weight: 600; }
.res-section { padding: 72px 0; background: var(--res-bg); }
.res-section-white { padding: 72px 0; background: #ffffff; }
.res-blog-card {
    background: #ffffff; border-radius: 16px; overflow: hidden;
    border: 1px solid var(--res-line); transition: box-shadow .25s, transform .25s;
    height: 100%; display: flex; flex-direction: column;
}
.res-blog-card:hover { box-shadow: 0 12px 32px rgba(26,35,50,.1); transform: translateY(-4px); }
.res-blog-card figure { margin: 0; overflow: hidden; height: 200px; }
.res-blog-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.res-blog-card:hover figure img { transform: scale(1.05); }
.res-blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.res-blog-tag {
    display: inline-block; background: var(--res-tag-bg); color: var(--res-tag-text);
    font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 4px 12px; border-radius: 100px; margin-bottom: 12px;
}
.res-blog-card-body h3 { font-size: 18px; font-family: 'Marcellus', serif; color: var(--res-ink); line-height: 1.4; margin-bottom: 10px; }
.res-blog-card-body p { font-size: 14px; color: var(--res-text); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.res-blog-meta { font-size: 12px; color: var(--res-muted); margin-bottom: 16px; }
.res-read-link { font-size: 13px; font-weight: 600; color: var(--res-accent); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.res-read-link:hover { gap: 10px; color: var(--res-accent); }
.res-case-card {
    background: #ffffff; border-radius: 16px; border: 1px solid var(--res-line);
    overflow: hidden; transition: box-shadow .25s, transform .25s;
    height: 100%; display: flex; flex-direction: column;
}
.res-case-card:hover { box-shadow: 0 12px 32px rgba(26,35,50,.1); transform: translateY(-4px); }
.res-case-card-header { background: var(--res-warm); padding: 24px; display: flex; align-items: center; gap: 16px; }
.res-case-icon {
    width: 48px; height: 48px; background: var(--res-ink); color: #fff;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.res-case-card-header h4 { font-size: 15px; font-family: 'Marcellus', serif; color: var(--res-ink); margin: 0 0 4px; }
.res-case-card-header span { font-size: 12px; color: var(--res-accent); font-weight: 600; }
.res-case-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.res-case-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--res-muted); margin-bottom: 6px; }
.res-case-card-body h3 { font-size: 20px; font-family: 'Marcellus', serif; color: var(--res-ink); margin-bottom: 12px; }
.res-case-card-body p { font-size: 14px; color: var(--res-text); line-height: 1.65; flex: 1; }
.res-case-stats { display: flex; gap: 24px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--res-line); }
.res-case-stat strong { display: block; font-size: 22px; font-weight: 700; color: var(--res-accent); }
.res-case-stat span { font-size: 12px; color: var(--res-muted); }
.res-testi-card {
    background: #ffffff; border-radius: 16px; border: 1px solid var(--res-line);
    padding: 28px; transition: box-shadow .25s, transform .25s;
    height: 100%; display: flex; flex-direction: column; position: relative;
}
.res-testi-card:hover { box-shadow: 0 12px 32px rgba(26,35,50,.1); transform: translateY(-4px); }
.res-testi-quote { font-size: 40px; line-height: 1; color: var(--res-accent-light); font-family: 'Marcellus', serif; margin-bottom: 12px; }
.res-testi-stars { color: #f6c90e; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.res-testi-card p { font-size: 15px; color: var(--res-text); line-height: 1.7; flex: 1; font-style: italic; margin-bottom: 20px; }
.res-testi-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--res-line); }
.res-testi-avatar {
    width: 44px; height: 44px; border-radius: 50%; background: var(--res-accent-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--res-accent); font-weight: 700; flex-shrink: 0;
}
.res-testi-author h5 { font-size: 14px; font-weight: 700; color: var(--res-ink); margin: 0 0 2px; }
.res-testi-author span { font-size: 12px; color: var(--res-muted); }
.res-testi-tag {
    position: absolute; top: 20px; right: 20px;
    background: var(--res-tag-bg); color: var(--res-tag-text);
    font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
    padding: 3px 10px; border-radius: 100px;
}
.res-faq-section { padding: 72px 0; background: var(--res-bg); }
.res-accordion .accordion-item {
    background: #ffffff; border: 1px solid var(--res-line) !important;
    border-radius: 12px !important; margin-bottom: 12px; overflow: hidden;
}
.res-accordion .accordion-button {
    background: #ffffff; color: var(--res-ink);
    font-size: 15px; font-weight: 600; padding: 20px 24px; box-shadow: none;
}
.res-accordion .accordion-button:not(.collapsed) { background: var(--res-accent-light); color: var(--res-accent); box-shadow: none; }
.res-accordion .accordion-button:not(.collapsed)::after { filter: invert(35%) sepia(80%) saturate(400%) hue-rotate(110deg); }
.res-accordion .accordion-body { padding: 4px 24px 24px; font-size: 15px; color: var(--res-text); line-height: 1.75; }
.res-pricing-section { padding: 72px 0; background: var(--res-warm); }
.res-price-card {
    background: #ffffff; border-radius: 20px; border: 2px solid var(--res-line);
    padding: 36px 28px; text-align: center;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    height: 100%; display: flex; flex-direction: column;
}
.res-price-card:hover { box-shadow: 0 16px 40px rgba(26,35,50,.1); transform: translateY(-6px); border-color: var(--res-accent); }
.res-price-card.featured { border-color: var(--res-accent); background: linear-gradient(160deg, #f3f1ea 0%, #ffffff 60%); box-shadow: 0 8px 32px rgba(94,102,76,.15); }
.res-price-badge { display: inline-block; background: var(--res-accent); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 14px; border-radius: 100px; margin-bottom: 20px; }
.res-price-name { font-size: 22px; font-family: 'Marcellus', serif; color: var(--res-ink); margin-bottom: 8px; }
.res-price-subtitle { font-size: 13px; color: var(--res-muted); margin-bottom: 24px; }
.res-price-amount { font-size: 42px; font-weight: 800; color: var(--res-ink); line-height: 1; margin-bottom: 4px; }
.res-price-amount sup { font-size: 22px; font-weight: 600; vertical-align: top; margin-top: 8px; }
.res-price-period { font-size: 13px; color: var(--res-muted); margin-bottom: 28px; }
.res-price-features { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; }
.res-price-features li { padding: 8px 0; font-size: 14px; color: var(--res-text); border-bottom: 1px solid #f0ece4; display: flex; align-items: center; gap: 10px; }
.res-price-features li:last-child { border-bottom: none; }
.res-price-features li i { color: var(--res-accent); font-size: 13px; flex-shrink: 0; }
.res-price-cta { margin-top: auto; }
.btn-res-primary { display: inline-block; padding: 13px 32px; background: var(--res-ink); color: #ffffff !important; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; transition: background .2s, transform .2s; width: 100%; text-align: center; }
.btn-res-primary:hover { background: var(--res-accent-deep); transform: translateY(-2px); }
.btn-res-ghost { display: inline-block; padding: 13px 32px; background: transparent; color: var(--res-accent) !important; border: 2px solid var(--res-accent); border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; transition: background .2s, color .2s, transform .2s; width: 100%; text-align: center; }
.btn-res-ghost:hover { background: var(--res-accent); color: #fff !important; transform: translateY(-2px); }
.res-contact-section { padding: 72px 0; background: var(--res-bg); }
.res-contact-card { background: #ffffff; border-radius: 16px; border: 1px solid var(--res-line); padding: 32px; text-align: center; margin-bottom: 24px; transition: box-shadow .2s; }
.res-contact-card:hover { box-shadow: 0 8px 24px rgba(26,35,50,.08); }
.res-contact-icon { width: 56px; height: 56px; background: var(--res-green-light, #e8f5ee); color: var(--res-green, #2d7a4f); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 16px; }
.res-contact-card h4 { font-size: 16px; font-family: 'Marcellus', serif; color: var(--res-ink); margin-bottom: 8px; }
.res-contact-card p, .res-contact-card a { font-size: 14px; color: var(--res-text); text-decoration: none; line-height: 1.6; }
.res-form-section { background: #ffffff; border-radius: 20px; border: 1px solid var(--res-line); padding: 48px; }
.res-form-group { margin-bottom: 20px; }
.res-form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--res-ink); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }
.res-form-group input, .res-form-group textarea, .res-form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--res-line); border-radius: 8px; font-size: 14px; color: var(--res-ink); background: var(--res-bg); transition: border-color .2s, background .2s; outline: none; font-family: inherit; }
.res-form-group input:focus, .res-form-group textarea:focus, .res-form-group select:focus { border-color: var(--res-accent); background: #ffffff; }
.res-form-group textarea { resize: vertical; min-height: 120px; }
.res-cta-strip { background: var(--res-ink); padding: 64px 0; text-align: center; }
.res-cta-strip h2 { font-size: 36px; font-family: 'Marcellus', serif; color: #ffffff; margin-bottom: 14px; }
.res-cta-strip p { font-size: 16px; color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.res-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.res-stats-bar { background: var(--res-accent); padding: 40px 0; }
.res-stat-item { text-align: center; }
.res-stat-item strong { display: block; font-size: 36px; font-weight: 800; color: #ffffff; }
.res-stat-item span { font-size: 14px; color: rgba(255,255,255,.8); }
@media (max-width: 991px) { .res-hero h1 { font-size: 34px; } .res-form-section { padding: 32px 24px; } }
@media (max-width: 767px) { .res-hero h1 { font-size: 26px; } .res-hero { padding: 48px 0 36px; } .res-tab-nav { gap: 4px; } .res-tab-nav .res-tab-btn { padding: 8px 14px; font-size: 13px; } .res-navigator ul li a { padding: 12px 14px; font-size: 13px; } }
/* ======================================================
   FORM FEEDBACK — inline success / error banners
   Used on contact.php and book-appointment.php
   ====================================================== */
.form-feedback {
    display: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Sora', sans-serif;
    line-height: 1.5;
    margin-bottom: 24px;
    border-left: 4px solid transparent;
}
.form-feedback--success {
    background: var(--res-green-light, #e8f5ee);
    color: var(--res-green-deep, #1a5c37);
    border-color: var(--res-green, #2d7a4f);
}
.form-feedback--error {
    background: #fff0f0;
    color: #9b2424;
    border-color: #e05252;
}
.form-feedback i { margin-right: 6px; }

/* ======================================================
   PHASE C: GLASSMORPHISM & MOBILE TOUCH POLISH
   ====================================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.7);
}

.glass-card-dark {
    background: rgba(18, 48, 38, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    color: #ffffff;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card-dark:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Mobile Smooth Horizontal Touch Scroll */
.program-switcher ul,
.sol-navigator ul,
.res-navigator ul,
.res-tab-nav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding-bottom: 4px;
}

.program-switcher ul::-webkit-scrollbar,
.sol-navigator ul::-webkit-scrollbar,
.res-navigator ul::-webkit-scrollbar,
.res-tab-nav::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Smooth Program Card Lift */
.sol-program-card, .res-blog-card, .res-case-card, .service-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.sol-program-card:hover, .res-blog-card:hover, .res-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(27, 67, 50, 0.12) !important;
}

/* ======================================================
   PHASE D: WHATSAPP FLOATING WIDGET
   ====================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #1b4332;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ── Leadership / rich program page sections ── */
.challenge-strip-section {
    padding: 70px 0;
    background: #fff;
}
.challenge-chip-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 920px;
    margin: 0 auto;
}
.challenge-chip {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #e4e4dc;
    background: #f7f7f4;
    font-size: 13px;
    color: #444;
    line-height: 1.4;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.challenge-chip:hover {
    border-color: rgba(13, 17, 23, 0.35);
    background: #fff;
    transform: translateY(-1px);
}

.module-rich-card {
    height: 100%;
    padding: 28px 24px 24px;
    border-radius: 14px;
    border: 1px solid #e4e4dc;
    background: #f9f9f6;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.module-rich-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(13, 17, 23, 0.08);
    border-color: rgba(13, 17, 23, 0.18);
}
.module-rich-card--accent {
    background: linear-gradient(180deg, #fff 0%, #f0f0ec 100%);
    border-color: rgba(13, 17, 23, 0.2);
}
.module-rich-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}
.module-rich-num {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #0d1117;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Marcellus', serif;
    font-size: 15px;
}
.module-rich-card h3 {
    font-size: 18px;
    margin: 6px 0 0;
    color: var(--primary-color);
    line-height: 1.3;
}
.module-rich-card > p {
    font-size: 13px;
    line-height: 1.65;
    color: #666;
    margin: 0 0 16px;
}
.module-topic-list {
    list-style: none;
    margin: 0;
    padding: 14px 0 0;
    border-top: 1px solid #ecece6;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
}
.module-topic-list li {
    position: relative;
    padding: 2px 0 2px 14px;
    font-size: 12px;
    color: #555;
    line-height: 1.45;
}
.module-topic-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
}

.deliverables-band {
    padding: 64px 0;
    background: #0d1117;
    position: relative;
    overflow: hidden;
}
.deliverables-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(155, 154, 132, 0.14), transparent 60%);
    pointer-events: none;
}
.deliverables-band .container { position: relative; z-index: 1; }
.deliverable-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.deliverable-item {
    padding: 16px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.45;
}
.deliverable-item span {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

/* Leadership — Why Choose (unique class names; avoid theme .why-choose-item clash) */
.leader-why-section {
    padding: 90px 0;
    background: #fff;
}
.leader-why-visual {
    height: 100%;
    min-height: 420px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: #0d1117;
}
.leader-why-visual figure {
    margin: 0;
    height: 100%;
}
.leader-why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 420px;
}
.leader-why-visual-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 17, 23, 0.92) 55%);
}
.leader-why-visual-caption strong {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 4px;
}
.leader-why-visual-caption span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}
.leader-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    height: 100%;
}
.leader-why-card {
    margin: 0;
    padding: 22px 20px;
    border-radius: 14px;
    border: 1px solid #e4e4dc;
    background: #f9f9f6;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.leader-why-card:hover {
    transform: translateY(-3px);
    border-color: rgba(13, 17, 23, 0.2);
    box-shadow: 0 10px 24px rgba(13, 17, 23, 0.07);
    background: #fff;
}
.leader-why-num {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 18px;
    color: #0d1117;
    opacity: 0.28;
    margin-bottom: 10px;
    line-height: 1;
}
.leader-why-card h4 {
    font-size: 16px;
    margin: 0 0 8px;
    color: #0d1117;
    line-height: 1.35;
}
.leader-why-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: #666;
}
@media (max-width: 991px) {
    .leader-why-visual,
    .leader-why-visual img { min-height: 300px; }
}
@media (max-width: 575px) {
    .leader-why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
    .deliverable-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .deliverable-grid { grid-template-columns: 1fr; }
    .module-topic-list { grid-template-columns: 1fr; }
}

/* Format options — visible CTAs on light cards */
.format-options-section {
    padding: 80px 0;
    background: #f3f6fa;
}
.format-options-section--teacher {
    background: linear-gradient(180deg, #f3f6fa 0%, #eef2f7 100%);
}
.format-option-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #dce3ec;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.format-option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(23, 36, 54, 0.1);
    border-color: rgba(23, 36, 54, 0.22);
}
.format-option-card--featured {
    border-color: #172436;
    box-shadow: 0 10px 28px rgba(23, 36, 54, 0.08);
}
.format-option-body {
    flex: 1;
    padding: 28px 26px 18px;
    text-align: left;
}
.format-option-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 5px 12px;
    border-radius: 999px;
    background: #e8eef5;
    color: #172436;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.format-option-badge--featured {
    background: #172436;
    color: #fff;
}
.format-option-card h4 {
    font-size: 20px;
    margin: 0 0 10px;
    color: #172436;
    line-height: 1.3;
}
.format-option-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #5a6570;
    margin: 0 0 16px;
}
.format-option-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.format-option-card ul li {
    position: relative;
    padding: 7px 0 7px 18px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    border-bottom: 1px solid #f0f2f5;
}
.format-option-card ul li:last-child { border-bottom: none; }
.format-option-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9bb0c9;
}
.format-option-card--featured ul li::before {
    background: #172436;
}
.format-option-cta {
    padding: 18px 26px 26px;
    border-top: 1px solid #eef1f5;
    background: #fafbfc;
}
.format-option-card--featured .format-option-cta {
    background: #f4f6f9;
}
.btn-format,
a.btn-format,
.format-option-cta .btn-format {
    display: block !important;
    width: 100%;
    text-align: center;
    padding: 13px 18px;
    border-radius: 8px;
    border: 1.5px solid #172436 !important;
    background: #172436 !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-format:hover,
a.btn-format:hover,
.format-option-cta .btn-format:hover {
    background: #24364d !important;
    border-color: #24364d !important;
    color: #fff !important;
}
.btn-format--solid {
    background: #172436 !important;
    color: #fff !important;
}

/* Leadership page — format cards + extra sections */
.format-options-section--leader {
    background: linear-gradient(180deg, #f7f7f4 0%, #efefea 100%);
}
.format-options-section--leader .format-option-badge {
    background: #ecece8;
    color: #0d1117;
}
.format-options-section--leader .format-option-badge--featured,
.format-options-section--leader .format-option-card--featured {
    border-color: #0d1117;
}
.format-options-section--leader .format-option-badge--featured {
    background: #0d1117;
    color: #fff;
}
.format-options-section--leader .format-option-card h4 {
    color: #0d1117;
}
.format-options-section--leader .format-option-card ul li::before,
.format-options-section--leader .format-option-card--featured ul li::before {
    background: #9b9a84;
}
.format-options-section--leader .btn-format,
.format-options-section--leader a.btn-format,
.format-options-section--leader .format-option-cta .btn-format {
    border-color: #0d1117 !important;
    background: #0d1117 !important;
    color: #fff !important;
}
.format-options-section--leader .btn-format:hover,
.format-options-section--leader a.btn-format:hover {
    background: #1c2330 !important;
    border-color: #1c2330 !important;
    color: #fff !important;
}

.leader-gains-panel {
    padding: 28px 30px;
    border-radius: 16px;
    border: 1px solid #e4e4dc;
    background: #f9f9f6;
}
.leader-gains-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 16px;
}
.leader-gains-grid span {
    position: relative;
    padding: 8px 0 8px 18px;
    font-size: 13px;
    color: #444;
    line-height: 1.45;
    border-bottom: 1px solid #ecece6;
}
.leader-gains-grid span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9b9a84;
}

.duration-band {
    padding: 70px 0;
    background: #0d1117;
}
.duration-card {
    height: 100%;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
}
.duration-card strong {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: clamp(26px, 3vw, 34px);
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.15;
}
.duration-card span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.duration-card--accent {
    background: rgba(155, 154, 132, 0.16);
    border-color: rgba(155, 154, 132, 0.35);
}

@media (max-width: 767px) {
    .leader-gains-grid { grid-template-columns: 1fr; }
    .framework-steps-visual { flex-direction: column; }
    .framework-step-block::after { display: none; }
}

/* ============================================================
   ABOUT — OUR STORY (doc-aligned rebuild)
   ============================================================ */
.about-story-page .story-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
}
.about-story-page .story-kicker--light { color: rgba(255,255,255,.55); }
.about-story-page .story-lead {
    font-size: 17px;
    line-height: 1.75;
    color: #555;
    max-width: 640px;
    margin: 0 auto;
}
.about-story-page .story-body {
    font-size: 15px;
    line-height: 1.85;
    color: #555;
    margin: 0;
}
.about-story-page .story-media {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
}
.about-story-page .story-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.story-open {
    padding: 80px 0 40px;
    background: #fff;
}
.story-open h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.35;
    color: var(--primary-color);
}

.story-audiences {
    padding: 80px 0;
    background: #f7f7f4;
}
.story-audience-card {
    background: #fff;
    border: 1px solid #e8e8e0;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.story-audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(38, 38, 38, 0.08);
}
.story-audience-card figure {
    margin: 0;
    height: 180px;
    overflow: hidden;
}
.story-audience-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.story-audience-card:hover figure img { transform: scale(1.04); }
.story-audience-body { padding: 22px 20px 24px; }
.story-audience-body h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.story-audience-body p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}
.story-audience-card--wide figure { height: 200px; }

.story-question-band .story-question-label {
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 10px;
}

.story-built {
    padding: 80px 0;
    background: #fff;
}
.story-built-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.story-built-item {
    background: #f7f7f4;
    border: 1px solid #e8e8e0;
    border-radius: 12px;
    padding: 22px 18px;
}
.story-built-item span {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 8px;
}
.story-built-item h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 6px;
}
.story-built-item p {
    font-size: 13px;
    line-height: 1.65;
    color: #666;
    margin: 0;
}

.story-belief {
    padding: 80px 0;
    background: linear-gradient(135deg, #2a2a24 0%, #3d3c32 100%);
    text-align: center;
}
.story-belief .story-kicker { color: rgba(155,154,132,.9); }
.story-belief h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(22px, 3.5vw, 34px);
    line-height: 1.45;
    color: #fff;
    margin: 0;
}
.story-belief .story-lead { color: rgba(255,255,255,.65); }

.story-journey-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.story-journey-step {
    background: #fff;
    border: 1px solid #e4e4dc;
    border-radius: 12px;
    padding: 28px 22px;
    height: 100%;
}
.story-journey-num {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    color: var(--accent-color);
    margin-bottom: 12px;
}
.story-journey-step h4 {
    font-size: 17px;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.story-journey-step p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.story-serve {
    padding: 80px 0;
    background: #fff;
}
.story-serve-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.story-serve-link {
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid #dddcd3;
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
    background: #fafaf7;
}
.story-serve-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.story-purpose {
    padding: 80px 0;
    background: #f7f7f4;
}
.story-purpose-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.story-purpose-point {
    background: #fff;
    border: 1px solid #e4e4dc;
    border-radius: 8px;
    padding: 14px 18px;
    min-width: 140px;
}
.story-purpose-point strong {
    display: block;
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 2px;
}
.story-purpose-point span {
    font-size: 12px;
    color: #888;
}

.story-welcome-cta {
    padding: 90px 0;
    background: var(--color-exam, #1b4332);
}
.story-welcome-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.story-welcome-inner h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(24px, 3.5vw, 36px);
    color: #fff;
    line-height: 1.35;
    margin-bottom: 16px;
}
.story-welcome-inner p {
    color: rgba(255,255,255,.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}
.story-welcome-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.story-welcome-cta .btn-default {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}
.story-welcome-cta .btn-default.btn-highlighted {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.45);
}

@media (max-width: 991px) {
    .story-journey-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
    .story-open { padding: 56px 0 24px; }
    .story-audiences,
    .story-built,
    .story-belief,
    .story-serve,
    .story-purpose { padding: 56px 0; }
    .story-built-grid { grid-template-columns: 1fr; }
    .story-journey-steps { grid-template-columns: 1fr; }
    .about-story-page .story-media img { min-height: 240px; }
}
/* ============================================================
   ABOUT — WHY REMIND
   ============================================================ */
.why-remind-page .why-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
}
.why-remind-page .why-kicker--light { color: rgba(255,255,255,.55); }
.why-remind-page .why-lead,
.why-remind-page .why-body {
    font-size: 15px;
    line-height: 1.85;
    color: #555;
    margin: 0;
}
.why-remind-page .why-question {
    font-family: 'Marcellus', serif;
    font-size: clamp(20px, 2.8vw, 26px);
    color: var(--primary-color);
    line-height: 1.45;
    margin: 22px 0 16px;
}
.why-remind-page .why-media {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
}
.why-remind-page .why-media img {
    width: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
}

.why-open {
    padding: 80px 0;
    background: #fff;
}
.why-open h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.35;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.why-pillars {
    padding: 80px 0;
    background: #f7f7f4;
}
.why-pillar-card {
    background: #fff;
    border: 1px solid #e8e8e0;
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.why-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(38, 38, 38, 0.08);
}
.why-pillar-num {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 12px;
}
.why-pillar-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.why-pillar-card p {
    font-size: 14px;
    line-height: 1.75;
    color: #666;
    margin: 0;
}

.why-philosophy {
    padding: 80px 0;
    background: linear-gradient(135deg, #2a2a24 0%, #3d3c32 100%);
    text-align: center;
}
.why-philosophy h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(24px, 3.5vw, 34px);
    color: #fff;
    line-height: 1.4;
    margin-bottom: 16px;
}
.why-philosophy-lead {
    color: rgba(255,255,255,.65);
    font-size: 15px;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto 32px;
}
.why-philosophy-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.why-philosophy-step {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    padding: 18px 22px;
    min-width: 180px;
    text-align: left;
}
.why-philosophy-step strong {
    display: block;
    color: #fff;
    font-size: 16px;
    margin-bottom: 4px;
}
.why-philosophy-step span {
    color: rgba(255,255,255,.55);
    font-size: 13px;
}

.why-growth {
    padding: 80px 0;
    background: #fff;
}
.why-growth-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.why-growth-grid span {
    display: inline-block;
    padding: 10px 16px;
    background: #f7f7f4;
    border: 1px solid #e4e4dc;
    border-radius: 8px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

.why-trust {
    padding: 80px 0;
    background: #f7f7f4;
}
.why-trust-card {
    background: #fff;
    border: 1px solid #e8e8e0;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
}
.why-trust-card figure {
    margin: 0;
    height: 220px;
    overflow: hidden;
}
.why-trust-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.why-trust-body { padding: 26px 24px 28px; }
.why-trust-body h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.why-trust-body p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.why-human {
    padding: 70px 0;
    background: #fff;
}

.why-expect {
    padding: 80px 0;
    background: #f7f7f4;
}
.why-expect-item {
    background: #fff;
    border: 1px solid #e4e4dc;
    border-radius: 10px;
    padding: 20px 18px;
    font-size: 14px;
    line-height: 1.65;
    color: #444;
    height: 100%;
}
.why-expect-item--accent {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}

.why-commitment {
    padding: 80px 0;
    background: #fff;
}
.why-commitment-panel {
    background: #f7f7f4;
    border: 1px solid #e8e8e0;
    border-radius: 16px;
    padding: 48px 40px;
}
.why-commitment-panel h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(22px, 3vw, 32px);
    color: var(--primary-color);
    line-height: 1.35;
    margin-bottom: 16px;
}
.why-commitment-panel > p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}
.why-commitment-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}
.why-commitment-list li {
    position: relative;
    padding: 10px 0 10px 22px;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #e8e8e0;
}
.why-commitment-list li:last-child { border-bottom: none; }
.why-commitment-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}
.why-commitment-close {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    color: var(--primary-color);
    margin: 0 !important;
}

.why-close {
    padding: 90px 0;
    background: var(--color-exam, #1a2332);
}
.why-close-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.why-close-inner h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(24px, 3.5vw, 34px);
    color: #fff;
    line-height: 1.4;
    margin-bottom: 16px;
}
.why-close-inner > p {
    color: rgba(255,255,255,.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 14px;
}
.why-close-tag {
    font-family: 'Marcellus', serif;
    color: rgba(255,255,255,.9) !important;
    font-size: 18px !important;
    margin-bottom: 32px !important;
}
.why-close-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.why-close .btn-default {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}
.why-close .btn-default.btn-highlighted {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.45);
}

@media (max-width: 767px) {
    .why-open,
    .why-pillars,
    .why-philosophy,
    .why-growth,
    .why-trust,
    .why-expect,
    .why-commitment { padding: 56px 0; }
    .why-commitment-panel { padding: 32px 22px; }
    .why-remind-page .why-media img { min-height: 260px; }
}

/* ============================================================
   ABOUT — MISSION & VISION
   ============================================================ */
.about-mission-page .mission-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
}
.about-mission-page .mission-kicker--light { color: rgba(255,255,255,.55); }
.about-mission-page .mission-lead,
.about-mission-page .mission-body {
    font-size: 15px;
    line-height: 1.85;
    color: #555;
    margin: 0;
}
.about-mission-page .mission-media {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
}
.about-mission-page .mission-media img {
    width: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

.mission-open {
    padding: 80px 0 40px;
    background: #fff;
}
.mission-open h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.35;
    color: var(--primary-color);
    margin-bottom: 18px;
}
.mission-open .mission-lead {
    max-width: 680px;
    margin: 0 auto;
    font-size: 17px;
}

.mission-vision {
    padding: 60px 0 80px;
    background: #fff;
}

.mission-statement-band {
    padding: 80px 0;
    background: linear-gradient(135deg, #2a2a24 0%, #3d3c32 100%);
    text-align: center;
}
.mission-statement-band h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(20px, 3.2vw, 30px);
    line-height: 1.5;
    color: #fff;
    margin: 0;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.mission-commit {
    padding: 80px 0;
    background: #f7f7f4;
}
.mission-commit-card {
    background: #fff;
    border: 1px solid #e8e8e0;
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.mission-commit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(38, 38, 38, 0.08);
}
.mission-commit-num {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 10px;
}
.mission-commit-card h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.mission-commit-card p {
    font-size: 14px;
    line-height: 1.75;
    color: #666;
    margin: 0;
}
.mission-commit-card--wide {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    text-align: left;
}
.mission-commit-card--wide .mission-commit-num { margin-bottom: 0; }

.mission-purpose {
    padding: 80px 0;
    background: #fff;
}

.mission-believe {
    padding: 90px 0;
    background:
        radial-gradient(ellipse 70% 50% at 10% 20%, rgba(155,154,132,0.12), transparent 55%),
        radial-gradient(ellipse 60% 45% at 90% 80%, rgba(38,38,38,0.04), transparent 50%),
        #f7f7f4;
}
.mission-believe-intro {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 44px;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}
.mission-believe-path {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
}
.mission-believe-card {
    position: relative;
    background: #fff;
    border: 1px solid #e6e5dc;
    border-radius: 16px;
    padding: 28px 22px 26px;
    height: 100%;
    box-shadow: 0 4px 18px rgba(38, 38, 38, 0.03);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    overflow: hidden;
}
.mission-believe-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-color);
    opacity: 0.55;
    transition: opacity .28s ease, width .28s ease;
}
.mission-believe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(38, 38, 38, 0.09);
    border-color: #d8d7cc;
}
.mission-believe-card:hover::before {
    opacity: 1;
    width: 4px;
}
.mission-believe-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}
.mission-believe-num {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    line-height: 1;
    color: var(--accent-color);
}
.mission-believe-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #7a7968;
    background: rgba(155,154,132,0.14);
    padding: 5px 10px;
    border-radius: 999px;
}
.mission-believe-card h4 {
    font-family: 'Marcellus', serif;
    font-size: 19px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.35;
    margin-bottom: 10px;
}
.mission-believe-card p {
    font-size: 14px;
    line-height: 1.75;
    color: #666;
    margin: 0;
}
.mission-believe-card--finale {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 28px;
    align-items: start;
    padding: 32px 34px;
    background:
        linear-gradient(135deg, #2f2e28 0%, #3f3e34 100%);
    border-color: transparent;
    color: #fff;
}
.mission-believe-card--finale::before {
    background: rgba(155,154,132,0.85);
}
.mission-believe-card--finale .mission-believe-top {
    grid-column: 1;
    grid-row: 1 / span 2;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 0;
    gap: 12px;
    min-width: 90px;
}
.mission-believe-card--finale .mission-believe-num {
    font-size: 42px;
    color: rgba(155,154,132,0.95);
}
.mission-believe-card--finale .mission-believe-tag {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}
.mission-believe-card--finale h4 {
    grid-column: 2;
    color: #fff;
    font-size: clamp(20px, 2.4vw, 26px);
    margin-bottom: 8px;
}
.mission-believe-card--finale p {
    grid-column: 2;
    color: rgba(255,255,255,0.68);
    font-size: 15px;
    max-width: 640px;
}
.mission-believe-card--finale:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(38, 38, 38, 0.18);
}

.mission-promise {
    padding: 80px 0;
    background: #fff;
}
.mission-promise-panel {
    background: #f7f7f4;
    border: 1px solid #e8e8e0;
    border-radius: 16px;
    padding: 48px 40px;
}
.mission-promise-panel h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(22px, 3vw, 32px);
    color: var(--primary-color);
    line-height: 1.35;
    margin-bottom: 14px;
}
.mission-promise-panel > p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 28px;
}
.mission-promise-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.mission-promise-point {
    background: #fff;
    border: 1px solid #e4e4dc;
    border-radius: 10px;
    padding: 18px 16px;
}
.mission-promise-point strong {
    display: block;
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 4px;
}
.mission-promise-point span {
    font-size: 13px;
    color: #777;
    line-height: 1.55;
}

.mission-bridge {
    padding: 70px 0;
    background: #f7f7f4;
}
.mission-bridge-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.mission-cta {
    padding: 90px 0;
    background: var(--color-exam, #1a2332);
}
.mission-cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.mission-cta-inner h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(24px, 3.5vw, 36px);
    color: #fff;
    line-height: 1.35;
    margin-bottom: 16px;
}
.mission-cta-inner p {
    color: rgba(255,255,255,.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}
.mission-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.mission-cta .btn-default {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}
.mission-cta .btn-default.btn-highlighted {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.45);
}

@media (max-width: 991px) {
    .mission-believe-path { grid-template-columns: 1fr 1fr; }
    .mission-promise-points { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .mission-open { padding: 56px 0 24px; }
    .mission-vision,
    .mission-commit,
    .mission-purpose,
    .mission-believe,
    .mission-promise { padding: 56px 0; }
    .mission-believe-path { grid-template-columns: 1fr; }
    .mission-believe-card--finale {
        grid-template-columns: 1fr;
        padding: 28px 22px;
    }
    .mission-believe-card--finale .mission-believe-top {
        grid-row: auto;
        flex-direction: row;
        align-items: center;
        margin-bottom: 14px;
        min-width: 0;
    }
    .mission-believe-card--finale .mission-believe-num { font-size: 32px; }
    .mission-believe-card--finale h4,
    .mission-believe-card--finale p { grid-column: 1; }
    .mission-promise-panel { padding: 32px 22px; }
    .mission-commit-card--wide { flex-direction: column; gap: 8px; }
    .about-mission-page .mission-media img { min-height: 240px; }
}

/* ============================================================
   CORE PAGE — THE REMIND METHOD / THE REMIND WAY
   ============================================================ */
.method-page {
    --method-ink: #262626;
    --method-soft: #555;
    --method-muted: #777;
    --method-line: #e6e5dc;
    --method-wash: #f7f7f4;
    --method-accent: #9b9a84;
    --method-deep: #1a2332;
    --method-r1: #2a2a24;
    --method-r2: #3d4a3f;
    --method-r3: #5a5748;
    --method-r4: #1a2332;
}
.method-page .method-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--method-accent);
    margin-bottom: 16px;
}
.method-page .method-kicker--light { color: rgba(255,255,255,.55); }
.method-page .method-lead,
.method-page .method-body {
    font-size: 15px;
    line-height: 1.85;
    color: var(--method-soft);
    margin: 0;
}

/* Hero — The ReMind Way (light editorial) */
.method-hero--editorial {
    position: relative;
    padding: 90px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 60% at 100% 20%, rgba(155,154,132,0.12), transparent 55%),
        #fff;
}
.method-hero--editorial h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(32px, 4.8vw, 50px);
    line-height: 1.2;
    color: var(--method-ink);
    margin-bottom: 20px;
}
.method-hero--editorial .method-lead {
    font-size: 16px;
    color: #555;
    max-width: 520px;
    margin-bottom: 0;
}
.method-hero-quote {
    margin: 24px 0 20px;
    padding: 22px 24px;
    border-left: 3px solid var(--method-accent);
    background: #f7f7f4;
    border-radius: 0 12px 12px 0;
}
.method-hero-quote p {
    margin: 0;
    font-family: 'Marcellus', serif;
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.45;
    color: var(--method-ink);
}
.method-hero--editorial .method-body {
    max-width: 520px;
}
.method-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.method-hero-visual {
    position: relative;
}
.method-hero-visual figure {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(38,38,38,0.1);
}
.method-hero-visual img {
    width: 100%;
    height: clamp(320px, 42vw, 480px);
    object-fit: cover;
    display: block;
}
.method-hero-chiprail {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.method-hero-chiprail span {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f7f7f4;
    border: 1px solid #e4e3d8;
    font-family: 'Marcellus', serif;
    font-size: 14px;
    color: var(--method-ink);
}

/* Why chain */
.method-why {
    padding: 80px 0;
    background: var(--method-wash);
}
.method-why-chain {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 8px;
    align-items: stretch;
}
.method-why-step {
    background: #fff;
    border: 1px solid var(--method-line);
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
}
.method-why-step span {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 20px;
    color: var(--method-accent);
    margin-bottom: 8px;
}
.method-why-step h4 {
    font-size: 15px;
    color: var(--method-ink);
    margin-bottom: 6px;
}
.method-why-step p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--method-muted);
    margin: 0;
}
.method-why-arrow {
    width: 18px;
    align-self: center;
    height: 2px;
    background: var(--method-accent);
    position: relative;
    opacity: .55;
}
.method-why-arrow::after {
    content: '';
    position: absolute;
    right: -1px;
    top: -3px;
    border: 4px solid transparent;
    border-left-color: var(--method-accent);
}

/* Beliefs */
.method-beliefs {
    padding: 90px 0;
    background: #fff;
}
.method-beliefs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.method-belief-card {
    background: var(--method-wash);
    border: 1px solid var(--method-line);
    border-radius: 14px;
    padding: 26px 20px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.method-belief-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(38,38,38,.07);
    background: #fff;
}
.method-belief-card h4 {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--method-ink);
    line-height: 1.35;
    margin-bottom: 10px;
}
.method-belief-card p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--method-muted);
    margin: 0;
}

/* How we work */
.method-how {
    padding: 80px 0;
    background: var(--method-wash);
}
.method-how-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.method-how-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--method-line);
    border-radius: 12px;
    padding: 22px 18px;
}
.method-how-item span {
    font-family: 'Marcellus', serif;
    font-size: 22px;
    color: var(--method-accent);
    line-height: 1;
}
.method-how-item p {
    font-size: 15px;
    color: var(--method-ink);
    margin: 0;
    line-height: 1.5;
    font-weight: 600;
}

/* Method core + track */
.method-core {
    padding: 80px 0 0;
    background: #fff;
}
.method-track-wrap {
    position: sticky;
    top: 72px;
    z-index: 40;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--method-line);
    border-bottom: 1px solid var(--method-line);
    margin-top: 36px;
}
.method-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.method-track-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 16px 10px;
    text-decoration: none;
    color: var(--method-muted);
    border-right: 1px solid var(--method-line);
    transition: background .2s ease, color .2s ease;
    position: relative;
}
.method-track-item:last-child { border-right: none; }
.method-track-item em {
    font-style: normal;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 700;
}
.method-track-item strong {
    font-family: 'Marcellus', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--method-ink);
}
.method-track-item::after {
    content: '';
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 0;
    height: 3px;
    background: transparent;
    border-radius: 3px 3px 0 0;
    transition: background .2s ease;
}
.method-track-item:hover,
.method-track-item.is-active {
    background: rgba(155,154,132,.08);
    color: var(--method-ink);
}
.method-track-item.is-active::after { background: var(--method-accent); }
.method-track-item--1.is-active::after { background: #2a2a24; }
.method-track-item--2.is-active::after { background: #4a5c4e; }
.method-track-item--3.is-active::after { background: #7a7660; }
.method-track-item--4.is-active::after { background: #1a2332; }

/* R stages */
.method-r {
    padding: 100px 0;
    scroll-margin-top: 140px;
}
.method-r--alt { background: var(--method-wash); }
.method-r--dark {
    background: linear-gradient(145deg, #1a2332 0%, #2a3342 100%);
}
.method-r--dark .method-body,
.method-r--dark .method-r-points li { color: rgba(255,255,255,.68); }
.method-r--dark h2 { color: #fff; }
.method-r--dark .method-r-tagline { color: rgba(155,154,132,.95); }
.method-r--dark .method-r-badge {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.7);
}
.method-r--dark .method-r-giant { color: rgba(255,255,255,.06); }
.method-r--dark .method-r-points li::before { background: var(--method-accent); }

.method-r-media {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(38,38,38,.1);
}
.method-r-media img {
    width: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
}
.method-r-content { position: relative; }
.method-r-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.method-r-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #6e6d5c;
    background: rgba(155,154,132,.16);
    padding: 6px 12px;
    border-radius: 999px;
}
.method-r-giant {
    font-family: 'Marcellus', serif;
    font-size: clamp(64px, 10vw, 110px);
    line-height: .85;
    color: rgba(38,38,38,.05);
    pointer-events: none;
    user-select: none;
}
.method-r-content h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(36px, 5vw, 52px);
    color: var(--method-ink);
    margin-bottom: 10px;
}
.method-r-tagline {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    color: var(--method-accent);
    margin-bottom: 16px;
    line-height: 1.45;
}
.method-r-points {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}
.method-r-points li {
    position: relative;
    padding: 10px 0 10px 22px;
    font-size: 14px;
    color: var(--method-soft);
    border-bottom: 1px solid var(--method-line);
}
.method-r--dark .method-r-points li { border-bottom-color: rgba(255,255,255,.1); }
.method-r-points li:last-child { border-bottom: none; }
.method-r-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 17px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--method-accent);
}

/* Qualities */
.method-qualities {
    padding: 80px 0;
    background: var(--method-wash);
}
.method-quality {
    background: #fff;
    border: 1px solid var(--method-line);
    border-radius: 14px;
    padding: 26px 20px;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.method-quality:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(38,38,38,.07);
}
.method-quality strong {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--method-ink);
    margin-bottom: 6px;
}
.method-quality span {
    font-size: 13px;
    color: var(--method-muted);
    line-height: 1.55;
}

/* Experience — full-bleed cover */
.method-experience--cover {
    position: relative;
    padding: 110px 0 90px;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
}
.method-experience-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(14,18,26,0.88) 0%, rgba(26,35,50,0.78) 45%, rgba(26,35,50,0.55) 100%);
}
.method-experience--cover .container { position: relative; z-index: 2; }
.method-experience-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 16px;
}
.method-experience--cover h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(30px, 4.5vw, 48px);
    color: #fff;
    line-height: 1.25;
    margin-bottom: 16px;
}
.method-experience-lead {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
    max-width: 620px;
    margin: 0 auto 40px;
}
.method-experience-chips {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.method-experience-chips li {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 14px;
    padding: 20px 16px;
    backdrop-filter: blur(8px);
    transition: background .25s ease, transform .25s ease;
}
.method-experience-chips li:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-3px);
}
.method-experience-chips em {
    font-style: normal;
    font-family: 'Marcellus', serif;
    font-size: 20px;
    color: rgba(155,154,132,0.95);
    line-height: 1;
}
.method-experience-chips span {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,0.88);
    font-weight: 500;
}

/* Walk with */
.method-walk {
    padding: 90px 0;
    background: #fff;
}
.method-walk-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
    padding-bottom: 6px;
}
.method-walk-rail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.method-walk-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #f7f7f4;
    border: 1px solid #e6e5dc;
    border-radius: 16px;
    padding: 24px 22px;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
    min-height: 110px;
}
.method-walk-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(38,38,38,.08);
    border-color: #d4d3c8;
    background: #fff;
}
.method-walk-num {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    color: var(--method-accent);
    line-height: 1;
    flex-shrink: 0;
}
.method-walk-body { flex: 1; min-width: 0; }
.method-walk-body strong {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--method-ink);
    margin-bottom: 6px;
}
.method-walk-body span {
    display: block;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}
.method-walk-go {
    font-size: 20px;
    color: #aaa;
    transition: color .2s ease, transform .2s ease;
    flex-shrink: 0;
}
.method-walk-card:hover .method-walk-go {
    color: var(--method-ink);
    transform: translateX(3px);
}
.method-walk-card--featured {
    grid-column: 1 / -1;
    background: linear-gradient(120deg, #2a2a24 0%, #3d3c32 100%);
    border-color: transparent;
}
.method-walk-card--featured .method-walk-num { color: rgba(155,154,132,.95); }
.method-walk-card--featured .method-walk-body strong { color: #fff; }
.method-walk-card--featured .method-walk-body span { color: rgba(255,255,255,.68); }
.method-walk-card--featured .method-walk-go { color: rgba(255,255,255,.5); }
.method-walk-card--featured:hover {
    background: linear-gradient(120deg, #32322b 0%, #454438 100%);
    box-shadow: 0 18px 36px rgba(38,38,38,.18);
}

/* Beyond */
.method-beyond {
    padding: 90px 0;
    background: linear-gradient(145deg, #2a2a24 0%, #3d3c32 100%);
    text-align: center;
}
.method-beyond h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(24px, 3.5vw, 36px);
    color: #fff;
    line-height: 1.35;
    margin-bottom: 14px;
}
.method-beyond > .container > .row p {
    color: rgba(255,255,255,.65);
    font-size: 16px;
    margin-bottom: 36px;
}
.method-beyond-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}
.method-beyond-item {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 22px 14px;
}
.method-beyond-item p {
    margin: 0;
    color: rgba(255,255,255,.85);
    font-size: 14px;
    line-height: 1.55;
}

/* Ahead — full-width philosophy band (light) */
.method-ahead--full {
    width: 100%;
    background: #f7f7f4;
    color: var(--method-ink);
    overflow: hidden;
}
.method-ahead-full-top {
    padding: 100px 0 56px;
    background:
        radial-gradient(ellipse 80% 70% at 50% -10%, rgba(155,154,132,0.16), transparent 55%),
        #fff;
    text-align: center;
}
.method-ahead-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--method-accent);
    margin-bottom: 22px;
}
.method-ahead--full h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.15;
    color: var(--method-ink);
    margin-bottom: 24px;
}
.method-ahead-line {
    display: block;
}
.method-ahead-line--accent {
    color: #6e6d5a;
}
.method-ahead-lead {
    font-size: 17px;
    line-height: 1.85;
    color: #666;
    max-width: 720px;
    margin: 0 auto;
}
.method-ahead-pillars-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    border-top: 1px solid #e4e3d8;
    border-bottom: 1px solid #e4e3d8;
    background: #fff;
}
.method-ahead-pillars-band .method-ahead-pillar {
    padding: 48px clamp(24px, 4vw, 56px);
    text-align: left;
    border-right: 1px solid #e4e3d8;
    background: #fff;
    transition: background .25s ease;
}
.method-ahead-pillars-band .method-ahead-pillar:last-child {
    border-right: none;
}
.method-ahead-pillars-band .method-ahead-pillar:hover {
    background: #fafaf7;
}
.method-ahead-pillar-num {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 28px;
    color: var(--method-accent);
    margin-bottom: 14px;
    line-height: 1;
}
.method-ahead-pillars-band h3 {
    font-family: 'Marcellus', serif;
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 400;
    color: var(--method-ink);
    margin-bottom: 12px;
    line-height: 1.3;
}
.method-ahead-pillars-band p {
    font-size: 15px;
    line-height: 1.75;
    color: #666;
    margin: 0;
    max-width: 360px;
}
.method-ahead-full-foot {
    padding: 48px 0 80px;
    text-align: center;
    background: #f7f7f4;
}
.method-ahead-methodline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin: 0 auto 28px;
}
.method-ahead-methodline span {
    font-family: 'Marcellus', serif;
    font-size: clamp(18px, 2.4vw, 24px);
    color: var(--method-ink);
}
.method-ahead-methodline i {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: rgba(155,154,132,.85);
    position: relative;
}
.method-ahead-methodline i::after {
    content: '';
    position: absolute;
    right: -1px;
    top: -3px;
    border: 4px solid transparent;
    border-left-color: rgba(155,154,132,.85);
}
.method-ahead-close {
    font-family: 'Marcellus', serif;
    font-size: clamp(22px, 2.8vw, 30px);
    color: #6e6d5a;
    margin: 0;
}

/* Invite */
.method-invite {
    padding: 90px 0;
    background: var(--method-deep);
}
.method-invite-inner {
    text-align: center;
    max-width: 740px;
    margin: 0 auto;
}
.method-invite-inner h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(24px, 3.5vw, 36px);
    color: #fff;
    line-height: 1.35;
    margin-bottom: 16px;
}
.method-invite-inner > p {
    color: rgba(255,255,255,.68);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}
.method-invite-tag {
    font-family: 'Marcellus', serif;
    color: rgba(255,255,255,.9) !important;
    font-size: 18px !important;
    margin-bottom: 32px !important;
}
.method-invite-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.method-invite .btn-default {
    background: #fff;
    color: var(--method-ink);
    border-color: #fff;
}
.method-invite .btn-default.btn-highlighted {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.45);
}

@media (max-width: 1199px) {
    .method-beliefs-grid { grid-template-columns: repeat(2, 1fr); }
    .method-beyond-grid { grid-template-columns: 1fr 1fr; }
    .method-why-chain {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .method-why-arrow { display: none; }
    .method-experience-chips { grid-template-columns: 1fr 1fr; }
}
/* Mild solution-palette washes behind Method page sections
   Student green | Parent clay | Educator blue | Professional teal | Organisational plum */
.method-page {
    --wash-student: #f2f9f5;
    --wash-student-mist: #e8f2ec;
    --wash-parent: #faf6f1;
    --wash-parent-mist: #f5ebe0;
    --wash-educator: #f2f6fb;
    --wash-educator-mist: #e8eef7;
    --wash-professional: #f3f8f9;
    --wash-professional-mist: #e4f0f3;
    --wash-org: #faf4f7;
    --wash-org-mist: #f3e6ec;
}

.method-page .method-hero--editorial {
    background:
        radial-gradient(ellipse 55% 60% at 100% 20%, rgba(94,102,76,0.08), transparent 55%),
        var(--wash-student);
}
.method-page .method-why {
    background: var(--wash-parent);
}
.method-page .method-beliefs {
    background: var(--wash-educator);
}
.method-page .method-how {
    background: var(--wash-professional);
}
.method-page .framework-overview {
    background: var(--wash-org);
}
.method-page .framework-r-section:not(.framework-r-section--alt):not(.framework-r-section--final) {
    background: var(--wash-student-mist);
}
.method-page .framework-r-section--alt {
    background: var(--wash-parent-mist);
}
.method-page #r-reframe.framework-r-section {
    background: var(--wash-educator-mist);
}
.method-page .method-qualities {
    background: var(--wash-professional-mist);
}
.method-page .method-walk {
    background: var(--wash-org);
}
.method-page .method-beyond {
    background: var(--wash-student);
    color: inherit;
}
.method-page .method-beyond .method-kicker--light {
    color: #5e664c;
}
.method-page .method-beyond h2 {
    color: #0f2d1a;
}
.method-page .method-beyond > .container > .row p {
    color: #4a6a5a;
}
.method-page .method-beyond-item {
    background: #fff;
    border: 1px solid #c8e6d4;
}
.method-page .method-beyond-item p {
    color: #3f4535;
}
.method-page .method-ahead--full {
    background: var(--wash-parent);
}
.method-page .method-ahead-full-top {
    background:
        radial-gradient(ellipse 80% 70% at 50% -10%, rgba(176,125,75,0.12), transparent 55%),
        var(--wash-parent);
}
.method-page .method-ahead-pillars-band {
    background: #fff;
    border-top-color: #ead9c8;
    border-bottom-color: #ead9c8;
}
.method-page .method-ahead-pillars-band .method-ahead-pillar {
    border-right-color: #ead9c8;
    background: rgba(255,255,255,0.72);
}
.method-page .method-ahead-full-foot {
    background: var(--wash-parent-mist);
}
.method-page .method-invite {
    background: var(--wash-professional);
}
.method-page .method-invite-inner h2 {
    color: #1a2b32;
}
.method-page .method-invite-inner > p {
    color: #4a646c;
}
.method-page .method-invite-tag {
    color: #2f6f7e !important;
}
.method-page .method-kicker--light {
    color: #2f6f7e;
}
.method-page .method-invite .btn-default {
    background: #2f6f7e;
    color: #fff;
    border-color: #2f6f7e;
}
.method-page .method-invite .btn-default.btn-highlighted {
    background: transparent;
    color: #1a2b32;
    border: 2px solid #c5dde2;
}
.method-page .method-why-step,
.method-page .method-belief-card,
.method-page .method-how-item,
.method-page .method-quality,
.method-page .method-walk-card:not(.method-walk-card--featured) {
    background: rgba(255,255,255,0.78);
}

@media (max-width: 991px) {
    .method-ahead-pillars-band { grid-template-columns: 1fr; }
    .method-ahead-pillars-band .method-ahead-pillar {
        border-right: none;
        border-bottom: 1px solid #e4e3d8;
    }
    .method-ahead-pillars-band .method-ahead-pillar:last-child { border-bottom: none; }
    .method-page .method-ahead-pillars-band .method-ahead-pillar {
        border-bottom-color: #ead9c8;
    }
}
@media (max-width: 767px) {
    .method-hero--editorial {
        padding: 56px 0;
    }
    .method-hero-visual img { height: 280px; }
    .method-why,
    .method-beliefs,
    .method-how,
    .method-qualities,
    .method-walk { padding: 56px 0; }
    .method-experience--cover { padding: 72px 0 60px; }
    .method-ahead-full-top { padding: 72px 0 40px; }
    .method-ahead-full-foot { padding: 36px 0 56px; }
    .method-ahead-pillars-band .method-ahead-pillar { padding: 28px 22px; }
    .method-beliefs-grid,
    .method-how-list,
    .method-walk-rail,
    .method-beyond-grid,
    .method-why-chain,
    .method-experience-chips { grid-template-columns: 1fr; }
    .method-walk-card--featured { grid-column: auto; }
}

/* ============================================================
   ABOUT — OUR FOUNDERS (compact dual profile UI)
   ============================================================ */
.founders-page {
    --wash-student: #f2f9f5;
    --wash-student-mist: #e8f2ec;
    --wash-parent: #faf6f1;
    --wash-parent-mist: #f5ebe0;
    --wash-educator: #f2f6fb;
    --wash-educator-mist: #e8eef7;
    --wash-professional: #f3f8f9;
    --wash-professional-mist: #e4f0f3;
    --wash-org: #faf4f7;
    --wash-org-mist: #f3e6ec;
}
.founders-page .fd-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #5e664c;
    margin-bottom: 14px;
    font-family: 'Sora', sans-serif;
}
.founders-page .fd-lead {
    font-size: 17px;
    line-height: 1.85;
    color: #4a534c;
    margin: 18px auto 0;
    max-width: 640px;
}

/* Intro */
.fd-intro {
    padding: 72px 0 40px;
    background: var(--wash-student);
}
.fd-intro h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(28px, 4vw, 44px);
    color: #0f2d1a;
    margin: 0;
    line-height: 1.25;
}

/* Equal profiles with small photos */
.fd-profiles {
    padding: 20px 0 90px;
    background: var(--wash-student);
}
.fd-profiles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}
.fd-person {
    background: rgba(255,255,255,0.72);
    border: 1px solid #d5e8dc;
    padding: 36px 32px 40px;
    height: 100%;
}
.fd-person:nth-child(2) {
    border-color: #d0dde8;
    background: rgba(255,255,255,0.78);
}
.fd-person-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 26px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e4ebe6;
}
.fd-person:nth-child(2) .fd-person-top {
    border-bottom-color: #e0e7ee;
}
.fd-avatar {
    margin: 0;
    width: 112px;
    height: 112px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background: #eef2f0;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #d5e8dc;
}
.fd-person:nth-child(2) .fd-avatar {
    box-shadow: 0 0 0 1px #d0dde8;
    background: #f2f5f8;
}
.fd-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
}
.fd-person-id .fd-role {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5e664c;
    margin-bottom: 6px;
    font-family: 'Sora', sans-serif;
}
.fd-person:nth-child(2) .fd-role {
    color: #3d5f8a;
}
.fd-person-id h3 {
    font-family: 'Marcellus', serif;
    font-size: clamp(24px, 3vw, 32px);
    color: #142018;
    margin: 0 0 4px;
    font-weight: 400;
    line-height: 1.15;
}
.fd-focus {
    margin: 0;
    font-size: 13px;
    color: #6a756c;
    line-height: 1.45;
}
.fd-person-body p {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.85;
    color: #4a534c;
}
.fd-person-body p:last-child { margin-bottom: 0; }
.fd-quote {
    margin-top: 20px !important;
    padding-top: 18px;
    border-top: 1px solid #e4ebe6;
    font-family: 'Marcellus', serif;
    font-size: 18px !important;
    line-height: 1.5 !important;
    font-style: italic;
    color: #1a2a20 !important;
}
.fd-person:nth-child(2) .fd-quote {
    border-top-color: #e0e7ee;
    color: #1a2a3a !important;
}

/* Guiding question */
.fd-question {
    padding: 80px 0;
    background: var(--wash-educator);
}
.fd-question-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.fd-question-inner .fd-kicker { color: #3d5f8a; }
.fd-question-inner h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(26px, 3.6vw, 40px);
    color: #1a2a3a;
    margin: 0 0 16px;
    line-height: 1.3;
}
.fd-question-inner p {
    margin: 0;
    font-size: 16px;
    line-height: 1.85;
    color: #5a6a7a;
}

/* Complementary strengths */
.fd-strengths {
    padding: 90px 0;
    background: var(--wash-parent);
}
.fd-strengths-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0 36px;
    align-items: start;
    max-width: 920px;
    margin: 0 auto;
}
.fd-strength-divider {
    width: 1px;
    align-self: stretch;
    background: #ead9c8;
    min-height: 160px;
}
.fd-strength-who {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 22px;
    color: #2a1a10;
    margin-bottom: 18px;
}
.fd-strength ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.fd-strength li {
    position: relative;
    padding: 0 0 14px 18px;
    font-size: 15px;
    line-height: 1.65;
    color: #5a4e44;
}
.fd-strength li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c4a07a;
}
.fd-strength:last-child .fd-strength-who { color: #1a2a3a; }
.fd-strength:last-child li { color: #4a5a68; }
.fd-strength:last-child li::before { background: #7a9ab8; }

/* Serve chips */
.fd-serve {
    padding: 90px 0;
    background: var(--wash-professional);
}
.fd-serve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.fd-serve-item {
    background: rgba(255,255,255,0.78);
    border: 1px solid #c5dde2;
    padding: 26px 22px;
    text-align: center;
}
.fd-serve-item strong {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 20px;
    color: #1a2b32;
    font-weight: 400;
    margin-bottom: 8px;
}
.fd-serve-item span {
    display: block;
    font-size: 14px;
    line-height: 1.65;
    color: #5a6e74;
}

/* Commitment */
.fd-commit {
    padding: 90px 0;
    background: var(--wash-org);
}
.fd-commit h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(26px, 3.5vw, 40px);
    color: #2a1a24;
    margin: 0;
}
.fd-commit .fd-kicker { color: #8a4a66; }
.fd-commit .fd-lead { color: #5a4a52; }
.fd-words {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}
.fd-words span {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    color: #2a1a24;
    background: rgba(255,255,255,0.72);
    border: 1px solid #e5cdd8;
    padding: 12px 22px;
}

/* Invite */
.fd-invite {
    padding: 90px 0;
    background: var(--wash-professional-mist);
}
.fd-invite-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.fd-invite-inner .fd-kicker { color: #2f6f7e; }
.fd-invite-inner h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(26px, 3.5vw, 38px);
    color: #1a2b32;
    line-height: 1.3;
    margin: 0 0 16px;
}
.fd-invite-inner > p {
    color: #4a646c;
    font-size: 16px;
    line-height: 1.85;
    margin: 0 0 32px;
}
.fd-invite-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.fd-invite .btn-default {
    background: #2f6f7e;
    color: #fff;
    border-color: #2f6f7e;
}
.fd-invite .btn-default.btn-highlighted {
    background: transparent;
    color: #1a2b32;
    border: 2px solid #c5dde2;
}
.fd-invite .btn-default.btn-highlighted:hover {
    color: #fff;
}

/* Jump links */
.fd-jump {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}
.fd-jump a {
    font-size: 13px;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #3f4535;
    border: 1px solid #c8e6d4;
    background: rgba(255,255,255,0.7);
    padding: 10px 18px;
    transition: all 0.2s ease;
}
.fd-jump a:hover {
    background: #fff;
    border-color: #5e664c;
    color: #0f2d1a;
}
.fd-person-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #5e664c;
    text-decoration: none;
    border-bottom: 1px solid rgba(94,102,76,0.35);
}
.fd-person:nth-child(2) .fd-person-link {
    color: #3d5f8a;
    border-bottom-color: rgba(61,95,138,0.35);
}
.fd-person-link:hover { opacity: 0.8; }
.fd-profiles { padding-bottom: 70px; }

/* Founder message letters */
.fd-message {
    padding: 90px 0;
}
.fd-message--aditi { background: var(--wash-parent); }
.fd-message--gaurav { background: var(--wash-educator); }
.fd-message--aditi .fd-kicker,
.fd-message--aditi .fd-role { color: #9a6b3f; }
.fd-message--gaurav .fd-kicker,
.fd-message--gaurav .fd-role { color: #3d5f8a; }
.fd-message-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: start;
}
.fd-message-layout--mirror {
    grid-template-columns: 1fr 240px;
}
.fd-message-layout--mirror .fd-message-aside { order: 2; }
.fd-message-layout--mirror .fd-message-letter { order: 1; }
.fd-message-aside {
    position: sticky;
    top: 110px;
    text-align: center;
    padding: 28px 20px;
    background: rgba(255,255,255,0.72);
    border: 1px solid #ead9c8;
}
.fd-message--gaurav .fd-message-aside {
    border-color: #d0dde8;
}
.fd-avatar--lg {
    width: 128px;
    height: 128px;
    margin: 0 auto 18px;
}
.fd-message-aside h3 {
    font-family: 'Marcellus', serif;
    font-size: 26px;
    color: #142018;
    margin: 6px 0 4px;
    font-weight: 400;
}
.fd-message-aside > p {
    margin: 0;
    font-size: 13px;
    color: #6a756c;
    line-height: 1.5;
}
.fd-quote-aside {
    margin-top: 18px !important;
    padding-top: 16px;
    border-top: 1px solid #ead9c8;
    font-family: 'Marcellus', serif;
    font-size: 15px !important;
    font-style: italic;
    line-height: 1.55 !important;
    color: #2a1a10 !important;
}
.fd-message--gaurav .fd-quote-aside {
    border-top-color: #d0dde8;
    color: #1a2a3a !important;
}
.fd-message-letter h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(26px, 3.4vw, 38px);
    color: #142018;
    line-height: 1.25;
    margin: 0 0 22px;
}
.fd-message--gaurav .fd-message-letter h2 { color: #1a2a3a; }
.fd-message-letter p {
    margin: 0 0 14px;
    font-size: 15.5px;
    line-height: 1.9;
    color: #4a534c;
}
.fd-message--gaurav .fd-message-letter p { color: #4a5a68; }
.fd-message-pull {
    font-family: 'Marcellus', serif !important;
    font-size: 22px !important;
    line-height: 1.45 !important;
    color: #1a2a20 !important;
    margin: 22px 0 !important;
    padding-left: 16px;
    border-left: 3px solid rgba(154,107,63,0.45);
}
.fd-message--gaurav .fd-message-pull {
    color: #1a2a3a !important;
    border-left-color: rgba(61,95,138,0.45);
}
.fd-sign {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #ead9c8;
}
.fd-message--gaurav .fd-sign { border-top-color: #d0dde8; }
.fd-sign strong {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 24px;
    color: #142018;
    font-weight: 400;
    margin-bottom: 4px;
}
.fd-sign span {
    display: block;
    font-size: 13px;
    color: #7a6555;
    line-height: 1.55;
}

/* Foundation */
.fd-foundation {
    padding: 90px 0;
    background: var(--wash-student-mist);
}
.fd-foundation h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(26px, 3.5vw, 40px);
    color: #0f2d1a;
    margin: 0;
}
.fd-foundation-box {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.78);
    border: 1px solid #c8e6d4;
    padding: 40px 36px;
}
.fd-foundation-box h3 {
    font-family: 'Marcellus', serif;
    font-size: clamp(22px, 3vw, 30px);
    color: #3f4535;
    margin: 0 0 22px;
    font-weight: 400;
}
.fd-foundation-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.fd-foundation-split p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #4a534c;
    padding: 14px 16px;
    background: var(--wash-student);
}

/* Observe */
.fd-observe {
    padding: 90px 0;
    background: var(--wash-professional);
}
.fd-observe-card {
    background: rgba(255,255,255,0.78);
    border: 1px solid #c5dde2;
    padding: 28px 24px;
    height: 100%;
}
.fd-observe-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: var(--wash-professional-mist);
    border: 1px solid #c5dde2;
    color: #2f6f7e;
    font-size: 18px;
}
.fd-observe-label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2f6f7e;
    margin-bottom: 12px;
    font-family: 'Sora', sans-serif;
}
.fd-observe-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #3a4a50;
}

/* Together */
.fd-together {
    padding: 90px 0;
    background: var(--wash-org);
}
.fd-together-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.fd-together-item {
    background: rgba(255,255,255,0.78);
    border: 1px solid #e5cdd8;
    padding: 28px 22px;
    height: 100%;
}
.fd-together-item span {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 22px;
    color: #8a4a66;
    margin-bottom: 12px;
}
.fd-together-item h4 {
    font-family: 'Marcellus', serif;
    font-size: 22px;
    color: #2a1a24;
    margin: 0 0 10px;
    font-weight: 400;
}
.fd-together-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #5a4a52;
}

/* Serve 5 items */
.fd-serve-grid {
    grid-template-columns: repeat(5, 1fr);
}

/* Twin closes */
.fd-closes {
    padding: 70px 0 20px;
    background: var(--wash-parent-mist);
}
.fd-close-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: rgba(255,255,255,0.78);
    border: 1px solid #ead9c8;
    padding: 24px;
    height: 100%;
}
.fd-close-card .fd-avatar {
    width: 72px;
    height: 72px;
}
.fd-close-card .fd-role {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9a6b3f;
    margin-bottom: 8px;
    font-family: 'Sora', sans-serif;
}
.fd-close-card:nth-child(2) .fd-role,
.col-lg-6:nth-child(2) .fd-close-card .fd-role {
    color: #3d5f8a;
}
.fd-close-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #4a534c;
}

@media (max-width: 991px) {
    .fd-profiles-grid { grid-template-columns: 1fr; gap: 20px; }
    .fd-strengths-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 480px;
    }
    .fd-strength-divider {
        width: 100%;
        height: 1px;
        min-height: 0;
    }
    .fd-serve-grid { grid-template-columns: 1fr 1fr; }
    .fd-message-layout,
    .fd-message-layout--mirror {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .fd-message-layout--mirror .fd-message-aside,
    .fd-message-layout--mirror .fd-message-letter { order: 0; }
    .fd-message-aside {
        position: static;
        max-width: 320px;
        margin: 0 auto;
    }
    .fd-together-grid { grid-template-columns: 1fr 1fr; }
    .fd-foundation-split { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .fd-intro { padding: 56px 0 28px; }
    .fd-profiles,
    .fd-message,
    .fd-foundation,
    .fd-observe,
    .fd-strengths,
    .fd-together,
    .fd-serve,
    .fd-commit,
    .fd-closes,
    .fd-invite { padding: 56px 0; }
    .fd-person { padding: 28px 22px 32px; }
    .fd-person-top {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
    .fd-avatar {
        width: 96px;
        height: 96px;
    }
    .fd-avatar--lg {
        width: 112px;
        height: 112px;
    }
    .fd-serve-grid,
    .fd-together-grid { grid-template-columns: 1fr; }
    .fd-words span { width: calc(50% - 6px); text-align: center; }
    .fd-close-card { flex-direction: column; align-items: center; text-align: center; }
}

/* ============================================================
   ABOUT — OUR TEAM
   ============================================================ */
.team-page {
    --wash-student: #f2f9f5;
    --wash-student-mist: #e8f2ec;
    --wash-parent: #faf6f1;
    --wash-educator: #f2f6fb;
    --wash-professional: #f3f8f9;
    --wash-professional-mist: #e4f0f3;
    --wash-org: #faf4f7;
}
.team-page .tm-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #5e664c;
    margin-bottom: 14px;
    font-family: 'Sora', sans-serif;
}
.team-page .tm-lead,
.team-page .tm-body {
    font-size: 16px;
    line-height: 1.9;
    color: #4a534c;
    margin: 0;
}
.team-page .tm-lead {
    font-size: 17px;
    max-width: 680px;
    margin: 18px auto 0;
}

.tm-intro {
    padding: 72px 0 40px;
    background: var(--wash-student);
}
.tm-intro h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(28px, 4vw, 44px);
    color: #0f2d1a;
    margin: 0;
    line-height: 1.25;
}
.tm-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 860px;
    margin: 40px auto 0;
}
.tm-stat {
    background: rgba(255,255,255,0.72);
    border: 1px solid #c8e6d4;
    padding: 22px 16px;
    text-align: center;
}
.tm-stat strong {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 28px;
    color: #0f2d1a;
    font-weight: 400;
    margin-bottom: 4px;
}
.tm-stat span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #5a7a66;
}

.tm-grid-section {
    padding: 30px 0 90px;
    background: var(--wash-parent);
}
.tm-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
    justify-content: center;
}
.tm-filter {
    border: 1px solid #ead9c8;
    background: rgba(255,255,255,0.75);
    color: #6a5648;
    padding: 10px 18px;
    font-size: 13px;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Sora', sans-serif;
}
.tm-filter:hover,
.tm-filter.active {
    background: #2f6f7e;
    border-color: #2f6f7e;
    color: #fff;
}

.tm-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid #ead9c8;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.tm-card-photo {
    margin: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #eef2f0;
}
.tm-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    transition: transform 0.35s ease;
}
.tm-card:hover .tm-card-photo img {
    transform: scale(1.04);
}
.tm-card-body {
    padding: 24px 22px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.tm-card-role {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2f6f7e;
    margin-bottom: 8px;
    font-family: 'Sora', sans-serif;
}
.tm-card-body h3 {
    font-family: 'Marcellus', serif;
    font-size: clamp(22px, 2.5vw, 28px);
    color: #142018;
    margin: 0 0 6px;
    font-weight: 400;
}
.tm-card-focus {
    margin: 0 0 12px;
    font-size: 13px;
    color: #7a6555;
}
.tm-card-bio {
    margin: 0 0 18px;
    font-size: 14.5px;
    line-height: 1.75;
    color: #4a534c;
    flex: 1;
}
.tm-card-link {
    font-size: 13px;
    letter-spacing: 0.3px;
    color: #2f6f7e;
    text-decoration: none;
    border-bottom: 1px solid rgba(47,111,126,0.35);
    align-self: flex-start;
}
.tm-card-link:hover { opacity: 0.8; color: #1a2b32; }

.tm-culture {
    padding: 90px 0;
    background: var(--wash-educator);
}
.tm-culture h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(26px, 3.5vw, 40px);
    color: #1a2a3a;
    margin: 0 0 16px;
}
.tm-culture .tm-kicker { color: #3d5f8a; }
.tm-culture .tm-body { color: #4a5a68; margin-bottom: 24px; }
.tm-culture-media {
    margin: 0;
    overflow: hidden;
    border: 1px solid #d0dde8;
}
.tm-culture-media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.tm-culture-list { display: grid; gap: 14px; }
.tm-culture-item {
    background: rgba(255,255,255,0.78);
    border: 1px solid #d0dde8;
    padding: 20px 22px;
}
.tm-culture-item strong {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 20px;
    color: #1a2a3a;
    font-weight: 400;
    margin-bottom: 6px;
}
.tm-culture-item p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.7;
    color: #4a5a68;
}

.tm-values {
    padding: 90px 0;
    background: var(--wash-professional);
}
.tm-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.tm-value {
    background: rgba(255,255,255,0.78);
    border: 1px solid #c5dde2;
    padding: 28px 20px;
    text-align: center;
}
.tm-value i {
    display: block;
    font-size: 22px;
    color: #2f6f7e;
    margin-bottom: 14px;
}
.tm-value strong {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 20px;
    color: #1a2b32;
    font-weight: 400;
    margin-bottom: 6px;
}
.tm-value span {
    display: block;
    font-size: 13px;
    line-height: 1.6;
    color: #5a6e74;
}

.tm-join {
    padding: 80px 0;
    background: var(--wash-org);
}
.tm-join-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.tm-join-inner .tm-kicker { color: #8a4a66; }
.tm-join-inner h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(26px, 3.4vw, 38px);
    color: #2a1a24;
    margin: 0 0 14px;
}
.tm-join-inner p {
    color: #5a4a52;
    font-size: 16px;
    line-height: 1.85;
    margin: 0 0 28px;
}
.tm-join .btn-default {
    background: #8a4a66;
    border-color: #8a4a66;
    color: #fff;
}

.tm-invite {
    padding: 90px 0;
    background: var(--wash-professional-mist);
}
.tm-invite-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.tm-invite-inner .tm-kicker { color: #2f6f7e; }
.tm-invite-inner h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(26px, 3.5vw, 38px);
    color: #1a2b32;
    line-height: 1.3;
    margin: 0 0 16px;
}
.tm-invite-inner > p {
    color: #4a646c;
    font-size: 16px;
    line-height: 1.85;
    margin: 0 0 32px;
}
.tm-invite-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.tm-invite .btn-default {
    background: #2f6f7e;
    color: #fff;
    border-color: #2f6f7e;
}
.tm-invite .btn-default.btn-highlighted {
    background: transparent;
    color: #1a2b32;
    border: 2px solid #c5dde2;
}
.tm-invite .btn-default.btn-highlighted:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .tm-stats { grid-template-columns: 1fr 1fr; }
    .tm-values-grid { grid-template-columns: 1fr 1fr; }
    .tm-culture-media img { height: 300px; }
}
@media (max-width: 767px) {
    .tm-intro,
    .tm-grid-section,
    .tm-culture,
    .tm-values,
    .tm-join,
    .tm-invite { padding: 56px 0; }
    .tm-stats,
    .tm-values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG ARTICLE PAGES
   ============================================================ */
.blog-article-page {
    --wash-student: #f2f9f5;
    --wash-parent: #faf6f1;
    --wash-educator: #f2f6fb;
    --wash-professional: #f3f8f9;
    --wash-professional-mist: #e4f0f3;
    --wash-org: #faf4f7;
}
.blog-article-page .ba-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #2f6f7e;
    margin-bottom: 12px;
    font-family: 'Sora', sans-serif;
}
.ba-article {
    padding: 72px 0 40px;
    background: var(--wash-student);
}
.ba-hero h1 {
    font-family: 'Marcellus', serif;
    font-size: clamp(28px, 4vw, 46px);
    color: #0f2d1a;
    line-height: 1.25;
    margin: 0 0 18px;
}
.ba-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5e664c;
    margin-bottom: 14px;
    font-family: 'Sora', sans-serif;
}
.ba-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #5a7a66;
    margin-bottom: 28px;
}
.ba-meta i { margin-right: 6px; }
.ba-feature {
    margin: 0 0 28px;
    overflow: hidden;
    border: 1px solid #c8e6d4;
}
.ba-feature img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}
.ba-intro {
    font-size: 18px;
    line-height: 1.9;
    color: #3a443d;
    margin: 0;
}
.ba-body {
    margin-top: 40px;
    padding: 40px 0 10px;
}
.ba-section {
    margin-bottom: 32px;
    padding: 28px 30px;
    background: rgba(255,255,255,0.72);
    border: 1px solid #d5e8dc;
}
.ba-section h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(22px, 2.8vw, 28px);
    color: #142018;
    margin: 0 0 12px;
    font-weight: 400;
}
.ba-section p {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #4a534c;
}
.ba-method {
    margin: 36px 0;
    padding: 32px 30px;
    background: var(--wash-educator);
    border: 1px solid #d0dde8;
}
.ba-method h3 {
    font-family: 'Marcellus', serif;
    font-size: 24px;
    color: #1a2a3a;
    margin: 0 0 10px;
    font-weight: 400;
}
.ba-method p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #4a5a68;
}
.ba-takeaways {
    margin: 36px 0;
    padding: 32px 30px;
    background: var(--wash-parent);
    border: 1px solid #ead9c8;
}
.ba-takeaways h3 {
    font-family: 'Marcellus', serif;
    font-size: 24px;
    color: #2a1a10;
    margin: 0 0 16px;
    font-weight: 400;
}
.ba-takeaways ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.ba-takeaways li {
    position: relative;
    padding: 0 0 12px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #5a4e44;
}
.ba-takeaways li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c4a07a;
}
.ba-quote {
    margin: 36px 0 0;
    padding: 0;
    border: none;
    font-family: 'Marcellus', serif;
    font-size: clamp(20px, 2.8vw, 28px);
    line-height: 1.45;
    color: #1a2a20;
    font-style: italic;
}
.ba-related {
    padding: 80px 0;
    background: var(--wash-professional);
}
.ba-related-card {
    display: block;
    height: 100%;
    background: rgba(255,255,255,0.78);
    border: 1px solid #c5dde2;
    text-decoration: none;
    overflow: hidden;
    color: inherit;
    transition: transform 0.25s ease;
}
.ba-related-card:hover {
    transform: translateY(-3px);
    color: inherit;
}
.ba-related-card figure {
    margin: 0;
    height: 180px;
    overflow: hidden;
}
.ba-related-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ba-related-body { padding: 20px; }
.ba-related-body span {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2f6f7e;
    margin-bottom: 8px;
}
.ba-related-body h4 {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    line-height: 1.4;
    color: #1a2b32;
    margin: 0;
    font-weight: 400;
}
.ba-invite {
    padding: 90px 0;
    background: var(--wash-professional-mist);
}
.ba-invite-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.ba-invite-inner h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(26px, 3.5vw, 38px);
    color: #1a2b32;
    margin: 0 0 16px;
}
.ba-invite-inner > p {
    color: #4a646c;
    font-size: 16px;
    line-height: 1.85;
    margin: 0 0 32px;
}
.ba-invite-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.ba-invite .btn-default {
    background: #2f6f7e;
    color: #fff;
    border-color: #2f6f7e;
}
.ba-invite .btn-default.btn-highlighted {
    background: transparent;
    color: #1a2b32;
    border: 2px solid #c5dde2;
}
.ba-invite .btn-default.btn-highlighted:hover { color: #fff; }

@media (max-width: 767px) {
    .ba-article { padding: 48px 0 24px; }
    .ba-feature img { height: 220px; }
    .ba-section,
    .ba-method,
    .ba-takeaways { padding: 22px; }
    .ba-related,
    .ba-invite { padding: 56px 0; }
}

/* ============================================================
   CASE STUDY ARTICLE PAGES
   ============================================================ */
.case-article-page {
    --wash-student: #f2f9f5;
    --wash-parent: #faf6f1;
    --wash-educator: #f2f6fb;
    --wash-professional: #f3f8f9;
    --wash-professional-mist: #e4f0f3;
    --wash-org: #faf4f7;
}
.case-article-page .ca-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #2f6f7e;
    margin-bottom: 12px;
    font-family: 'Sora', sans-serif;
}
.ca-article { padding: 72px 0 40px; background: var(--wash-student); }
.ca-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5e664c;
    margin-bottom: 18px;
    font-family: 'Sora', sans-serif;
}
.ca-identity {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 18px;
}
.ca-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--wash-professional-mist);
    border: 1px solid #c5dde2;
    color: #2f6f7e;
    font-size: 20px;
}
.ca-hero h1 {
    font-family: 'Marcellus', serif;
    font-size: clamp(28px, 4vw, 44px);
    color: #0f2d1a;
    margin: 0 0 6px;
    line-height: 1.2;
}
.ca-subtitle { margin: 0; font-size: 15px; color: #5a7a66; }
.ca-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #5a7a66;
    margin-bottom: 28px;
}
.ca-meta i { margin-right: 6px; }
.ca-feature {
    margin: 0 0 36px;
    overflow: hidden;
    border: 1px solid #c8e6d4;
}
.ca-feature img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}
.ca-challenge {
    padding: 32px 30px;
    background: var(--wash-parent);
    border: 1px solid #ead9c8;
    margin-bottom: 48px;
}
.ca-challenge .ca-kicker { color: #9a6b3f; }
.ca-challenge h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(24px, 3vw, 34px);
    color: #2a1a10;
    margin: 0 0 14px;
    line-height: 1.3;
}
.ca-challenge p {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #5a4e44;
}
.ca-approach { margin-bottom: 48px; }
.ca-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding: 26px 28px;
    background: rgba(255,255,255,0.72);
    border: 1px solid #d5e8dc;
    margin-bottom: 14px;
}
.ca-step-num {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    color: #5e664c;
    line-height: 1;
}
.ca-step h3 {
    font-family: 'Marcellus', serif;
    font-size: 22px;
    color: #142018;
    margin: 0 0 8px;
    font-weight: 400;
}
.ca-step p {
    margin: 0;
    font-size: 15px;
    line-height: 1.85;
    color: #4a534c;
}
.ca-results {
    padding: 36px 32px;
    background: var(--wash-educator);
    border: 1px solid #d0dde8;
}
.ca-results h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(24px, 3vw, 34px);
    color: #1a2a3a;
    margin: 0 0 14px;
}
.ca-results > p {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.9;
    color: #4a5a68;
}
.ca-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}
.ca-stat {
    background: rgba(255,255,255,0.78);
    border: 1px solid #c5dde2;
    padding: 20px 16px;
    text-align: center;
}
.ca-stat strong {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 26px;
    color: #1a2b32;
    font-weight: 400;
    margin-bottom: 4px;
}
.ca-stat span {
    display: block;
    font-size: 12px;
    color: #5a6e74;
}
.ca-quote {
    margin: 0;
    padding: 0;
    border: none;
    font-family: 'Marcellus', serif;
    font-size: clamp(20px, 2.6vw, 26px);
    line-height: 1.45;
    color: #1a2a3a;
    font-style: italic;
}
.ca-related {
    padding: 80px 0;
    background: var(--wash-professional);
}
.ca-related-card {
    display: block;
    height: 100%;
    background: rgba(255,255,255,0.78);
    border: 1px solid #c5dde2;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
}
.ca-related-card:hover { transform: translateY(-3px); color: inherit; }
.ca-related-top {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
}
.ca-related-top h4 {
    font-family: 'Marcellus', serif;
    font-size: 20px;
    margin: 0 0 4px;
    color: #1a2b32;
    font-weight: 400;
}
.ca-related-top span {
    display: block;
    font-size: 12px;
    color: #5a6e74;
}
.ca-related-card > p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #4a534c;
}
.ca-invite {
    padding: 90px 0;
    background: var(--wash-professional-mist);
}
.ca-invite-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.ca-invite-inner h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(26px, 3.5vw, 38px);
    color: #1a2b32;
    margin: 0 0 16px;
}
.ca-invite-inner > p {
    color: #4a646c;
    font-size: 16px;
    line-height: 1.85;
    margin: 0 0 32px;
}
.ca-invite-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.ca-invite .btn-default {
    background: #2f6f7e;
    color: #fff;
    border-color: #2f6f7e;
}
.ca-invite .btn-default.btn-highlighted {
    background: transparent;
    color: #1a2b32;
    border: 2px solid #c5dde2;
}
.ca-invite .btn-default.btn-highlighted:hover { color: #fff; }

/* Listing cards: make whole card clickable feel */
.res-case-card { position: relative; }
.res-case-card .res-case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    color: #2f6f7e;
    text-decoration: none;
    border-bottom: 1px solid rgba(47,111,126,0.35);
}
.res-case-card .res-case-link:hover { opacity: 0.85; }

@media (max-width: 767px) {
    .ca-article { padding: 48px 0 24px; }
    .ca-feature img { height: 220px; }
    .ca-challenge, .ca-results { padding: 22px; }
    .ca-step { grid-template-columns: 1fr; gap: 8px; padding: 22px; }
    .ca-stats { grid-template-columns: 1fr; }
    .ca-related, .ca-invite { padding: 56px 0; }
}

/* =========================================================
   Testimonial Page — enriched layout
   ========================================================= */
.testimonial-page .testi-hero { position: relative; overflow: hidden; }
.testimonial-page .testi-hero::before {
    content: "";
    position: absolute;
    inset: auto -10% -40% auto;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(94,102,76,.12) 0%, transparent 70%);
    pointer-events: none;
}
.testi-kicker {
    display: inline-block;
    font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
    color: var(--res-accent); margin-bottom: 12px;
}
.testi-featured {
    padding: 72px 0 24px;
    background:
        linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
    border-bottom: 1px solid var(--res-line);
}
.testi-featured-head { max-width: 640px; margin-bottom: 36px; }
.testi-featured-head h2 {
    font-family: 'Marcellus', serif; font-size: 36px; color: var(--res-ink);
    margin: 0 0 12px; line-height: 1.2;
}
.testi-featured-head p { font-size: 16px; color: var(--res-text); line-height: 1.7; margin: 0; }
.testi-featured-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--res-line);
    border-radius: 20px;
    padding: 32px 28px 28px;
    position: relative;
    box-shadow: 0 10px 30px rgba(26,35,50,.04);
    transition: transform .25s, box-shadow .25s;
}
.testi-featured-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,35,50,.1); }
.testi-featured-quote {
    font-family: 'Marcellus', serif;
    font-size: 72px; line-height: .7; color: rgba(94,102,76,.18);
    margin-bottom: 8px;
}
.testi-featured-card > p {
    font-size: 16px; line-height: 1.75; color: var(--res-ink);
    font-style: italic; margin-bottom: 28px; min-height: 140px;
}
.testi-featured-meta { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
    border: 2px solid rgba(94,102,76,.2);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.testi-featured-meta h3 {
    font-size: 16px; font-weight: 700; color: var(--res-ink); margin: 0 0 2px;
}
.testi-featured-meta span { display: block; font-size: 12px; color: var(--res-muted); margin-bottom: 4px; }
.testi-featured-meta em {
    display: inline-block; font-style: normal; font-size: 12px; font-weight: 600;
    color: var(--res-accent); background: var(--res-accent-light);
    padding: 3px 10px; border-radius: 100px;
}
.testi-grid-section { padding-top: 56px; }
.testi-grid-head { margin-bottom: 28px; }
.testi-grid-head h2 {
    font-family: 'Marcellus', serif; font-size: 32px; color: var(--res-ink);
    margin: 0; line-height: 1.25;
}
.testi-card-rich { padding-top: 24px; }
.testi-card-top {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    margin-bottom: 14px; padding-right: 0;
}
.testi-card-rich .res-testi-tag {
    position: static; top: auto; right: auto;
}
.testi-program {
    font-size: 11px; font-weight: 600; color: var(--res-accent);
    background: transparent; border: 1px solid rgba(94,102,76,.25);
    padding: 3px 10px; border-radius: 100px; white-space: nowrap;
}
.testi-card-rich > p {
    font-style: normal;
    color: var(--res-ink);
}
.testi-outcome {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--res-accent);
    background: var(--res-accent-light);
    padding: 8px 12px; border-radius: 10px;
    margin-bottom: 18px;
}
.testi-outcome i { font-size: 11px; }
.testi-avatar-img {
    overflow: hidden; padding: 0; background: var(--res-accent-light);
}
.testi-avatar-img img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.testi-case-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 6px; font-size: 12px; font-weight: 600;
    color: var(--res-accent); text-decoration: none; transition: gap .2s;
}
.testi-case-link:hover { gap: 10px; color: var(--res-accent); }
.testi-empty {
    text-align: center; color: var(--res-muted); padding: 40px 0 8px; margin: 0;
}
.testi-trust {
    padding: 72px 0;
    background:
        linear-gradient(135deg, rgba(94,102,76,.06) 0%, rgba(247,240,230,.55) 45%, #fff 100%);
    border-top: 1px solid var(--res-line);
}
.testi-trust h2 {
    font-family: 'Marcellus', serif; font-size: 34px; color: var(--res-ink);
    margin: 0 0 14px; line-height: 1.2;
}
.testi-trust > .container > .row > .col-lg-5 > p {
    font-size: 15px; color: var(--res-text); line-height: 1.75; margin: 0;
}
.testi-trust-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.testi-trust-item {
    background: rgba(255,255,255,.85);
    border: 1px solid var(--res-line);
    border-radius: 16px;
    padding: 22px 20px;
}
.testi-trust-item strong {
    display: block; font-family: 'Marcellus', serif; font-size: 20px;
    color: var(--res-accent); margin-bottom: 8px;
}
.testi-trust-item span { font-size: 14px; color: var(--res-text); line-height: 1.6; }

@media (max-width: 991px) {
    .testi-featured-head h2, .testi-grid-head h2, .testi-trust h2 { font-size: 28px; }
    .testi-featured-card > p { min-height: 0; }
}
@media (max-width: 575px) {
    .testi-trust-grid { grid-template-columns: 1fr; }
    .testi-card-top { flex-wrap: wrap; }
    .testi-featured { padding: 56px 0 8px; }
}

/* =========================================================
   Testimonial page — Discovery invite CTA
   ========================================================= */
.testi-invite {
    padding: 72px 0 88px;
    background:
        radial-gradient(ellipse at 12% 20%, rgba(155,154,132,.12) 0%, transparent 45%),
        radial-gradient(ellipse at 90% 80%, rgba(247,240,230,.95) 0%, transparent 50%),
        linear-gradient(180deg, #f7f5f0 0%, #f3f1eb 100%);
}
.testi-invite-panel {
    background: #fff;
    border: 1px solid var(--res-line);
    border-radius: 28px;
    padding: 48px 44px;
    box-shadow: 0 18px 50px rgba(26,35,50,.08);
    position: relative;
    overflow: hidden;
}
.testi-invite-panel::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--res-ink) 0%, var(--res-accent) 100%);
}
.testi-invite-kicker {
    display: inline-block;
    font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
    color: var(--res-accent); margin-bottom: 14px;
}
.testi-invite-panel h2 {
    font-family: 'Marcellus', serif;
    font-size: 36px; line-height: 1.2; color: var(--res-ink);
    margin: 0 0 16px; max-width: 18ch;
}
.testi-invite-panel > .row > .col-lg-6 > p {
    font-size: 16px; color: var(--res-text); line-height: 1.75;
    margin: 0 0 22px; max-width: 48ch;
}
.testi-invite-points {
    list-style: none; margin: 0 0 28px; padding: 0;
    display: grid; gap: 12px;
}
.testi-invite-points li {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; color: var(--res-ink); font-weight: 500;
}
.testi-invite-points i {
    width: 34px; height: 34px; border-radius: 10px;
    background: var(--res-accent-light); color: var(--res-accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}
.testi-invite-actions {
    display: flex; flex-wrap: wrap; gap: 12px;
}
.testi-invite-actions .btn-res-primary,
.testi-invite-actions .btn-res-ghost {
    width: auto; min-width: 240px;
}
.testi-invite-steps {
    list-style: none; margin: 0; padding: 8px 0 0;
    display: grid; gap: 14px;
}
.testi-invite-steps li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
    background: linear-gradient(135deg, #f7faf8 0%, #fff 70%);
    border: 1px solid var(--res-line);
    border-radius: 18px;
    padding: 20px 18px;
}
.testi-invite-steps strong {
    width: 56px; height: 56px; border-radius: 16px;
    background: var(--res-accent); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 700; letter-spacing: .5px;
}
.testi-invite-steps h3 {
    font-size: 17px; font-family: 'Marcellus', serif;
    color: var(--res-ink); margin: 2px 0 6px;
}
.testi-invite-steps p {
    font-size: 14px; color: var(--res-text); line-height: 1.6; margin: 0;
}

@media (max-width: 991px) {
    .testi-invite { padding: 56px 0 72px; }
    .testi-invite-panel { padding: 36px 28px; }
    .testi-invite-panel h2 { font-size: 30px; max-width: none; }
}
@media (max-width: 575px) {
    .testi-invite-panel { padding: 28px 20px; border-radius: 22px; }
    .testi-invite-panel h2 { font-size: 26px; }
    .testi-invite-actions .btn-res-primary,
    .testi-invite-actions .btn-res-ghost { width: 100%; min-width: 0; }
    .testi-invite-steps li { grid-template-columns: 48px 1fr; gap: 12px; }
    .testi-invite-steps strong { width: 48px; height: 48px; border-radius: 14px; font-size: 13px; }
}

/* =========================================================
   FAQ Page — doc-aligned layout
   ========================================================= */
.faq-page .faq-hero { position: relative; overflow: hidden; }
.faq-page .faq-hero::after {
    content: "";
    position: absolute;
    right: -8%; bottom: -45%;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(94,102,76,.12) 0%, transparent 70%);
    pointer-events: none;
}
.faq-main { padding-top: 56px; }
.faq-intro {
    max-width: 720px;
    margin: 0 0 28px;
}
.faq-intro p {
    font-size: 16px; color: var(--res-text); line-height: 1.75; margin: 0;
}
#faqTabs .res-tab-btn {
    display: inline-flex; align-items: center; gap: 8px;
}
#faqTabs .res-tab-btn i { font-size: 12px; opacity: .85; }
.faq-panel-head {
    display: flex; align-items: center; gap: 14px;
    margin: 8px 0 22px;
}
.faq-panel-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--res-accent-light); color: var(--res-accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.faq-panel-head h2 {
    font-family: 'Marcellus', serif; font-size: 28px; color: var(--res-ink);
    margin: 0 0 2px; line-height: 1.2;
}
.faq-panel-head span {
    font-size: 13px; color: var(--res-muted); font-weight: 500;
}
.faq-page .res-accordion .accordion-button {
    font-family: 'Sora', sans-serif;
    text-align: left;
}
.faq-page .res-accordion .accordion-body {
    line-height: 1.8;
}
.faq-invite {
    padding: 72px 0 88px;
    background:
        radial-gradient(ellipse at 85% 15%, rgba(94,102,76,.12) 0%, transparent 45%),
        linear-gradient(180deg, #f4f7f5 0%, #eef4f0 100%);
}
.faq-invite-panel {
    background: #fff;
    border: 1px solid var(--res-line);
    border-radius: 28px;
    padding: 48px 44px;
    box-shadow: 0 18px 50px rgba(26,35,50,.08);
    position: relative;
    overflow: hidden;
}
.faq-invite-panel::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--res-accent) 0%, #9B9A84 100%);
}
.faq-invite-panel h2 {
    font-family: 'Marcellus', serif;
    font-size: 34px; line-height: 1.2; color: var(--res-ink);
    margin: 0 0 14px; max-width: 18ch;
}
.faq-invite-panel > .row > .col-lg-7 > p {
    font-size: 16px; color: var(--res-text); line-height: 1.75;
    margin: 0 0 24px; max-width: 48ch;
}
.faq-invite-links {
    list-style: none; margin: 0; padding: 0;
    display: grid; gap: 12px;
}
.faq-invite-links a {
    display: flex; align-items: flex-start; gap: 14px;
    text-decoration: none;
    background: linear-gradient(135deg, #f7faf8 0%, #fff 70%);
    border: 1px solid var(--res-line);
    border-radius: 16px;
    padding: 18px 16px;
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
.faq-invite-links a:hover {
    border-color: rgba(94,102,76,.35);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(26,35,50,.06);
}
.faq-invite-links i {
    width: 40px; height: 40px; border-radius: 12px;
    background: var(--res-accent); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 15px; flex-shrink: 0;
}
.faq-invite-links strong {
    display: block; font-size: 15px; color: var(--res-ink); margin-bottom: 4px;
}
.faq-invite-links em {
    display: block; font-style: normal; font-size: 13px; color: var(--res-muted); line-height: 1.5;
}

@media (max-width: 991px) {
    .faq-invite { padding: 56px 0 72px; }
    .faq-invite-panel { padding: 36px 28px; }
    .faq-invite-panel h2 { font-size: 28px; max-width: none; }
    .faq-panel-head h2 { font-size: 24px; }
}
@media (max-width: 575px) {
    .faq-invite-panel { padding: 28px 20px; border-radius: 22px; }
    .faq-invite-panel h2 { font-size: 24px; }
    #faqTabs .res-tab-btn i { display: none; }
}

/* =========================================================
   Discovery Conversation scheduler (book-appointment.php)
   ========================================================= */
.discovery-page .btn-res-primary,
.discovery-page .btn-res-ghost { width: auto; min-width: 0; }
.discovery-page .btn-res-primary {
    background: var(--res-green, #2d7a4f);
}
.discovery-page .btn-res-primary:hover {
    background: var(--res-green-deep, #1a5c37);
}
.discovery-page .btn-res-ghost {
    color: var(--res-green, #2d7a4f) !important;
    border-color: var(--res-green, #2d7a4f);
}
.discovery-page .btn-res-ghost:hover {
    background: var(--res-green, #2d7a4f);
    color: #fff !important;
}
.discovery-page .disc-trust-row i,
.discovery-page .res-hero-badge {
    color: var(--res-green, #2d7a4f);
}
.discovery-page .res-hero-badge {
    background: var(--res-green-light, #e8f5ee);
}
.discovery-page .disc-path-card.is-active {
    background: var(--res-green-light, #e8f5ee);
    border-color: var(--res-green, #2d7a4f);
    box-shadow: 0 0 0 1px var(--res-green, #2d7a4f);
}
.discovery-page .disc-path-card:hover {
    border-color: var(--res-green, #2d7a4f);
    box-shadow: 0 10px 24px rgba(45,122,79,.10);
}
.discovery-page .disc-submit {
    background: var(--res-green, #2d7a4f) !important;
}
.discovery-page .disc-submit:hover {
    background: var(--res-green-deep, #1a5c37) !important;
}
.discovery-page .disc-success i {
    color: var(--res-green, #2d7a4f);
}
.discovery-page .rm-captcha__badge {
    color: var(--res-green, #2d7a4f);
}
.discovery-page .rm-captcha:focus-within {
    border-color: var(--res-green, #2d7a4f);
    box-shadow: 0 0 0 3px rgba(45,122,79,.14);
}
.discovery-page .rm-captcha__refresh:hover,
.discovery-page .rm-captcha__input:focus {
    border-color: var(--res-green, #2d7a4f);
    color: var(--res-green, #2d7a4f);
}
.discovery-page .rm-selection-summary i {
    color: var(--res-green, #2d7a4f);
}

.disc-hero {
    padding: 72px 0 48px;
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(45,122,79,.10), transparent 55%),
        linear-gradient(180deg, #eef7f2 0%, #ffffff 70%);
    border-bottom: 1px solid var(--res-line);
}
.disc-hero h1 {
    font-family: 'Marcellus', serif;
    font-size: clamp(34px, 4vw, 48px);
    color: var(--res-ink);
    margin: 16px 0 18px;
    line-height: 1.15;
}
.disc-hero .res-hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--res-text, #4a5568);
    max-width: 560px;
    margin-bottom: 28px;
}
.disc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.disc-trust-row {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
}
.disc-trust-row li {
    font-size: 13px;
    font-weight: 600;
    color: var(--res-ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.disc-trust-row i { color: var(--res-accent); }
.disc-hero-card {
    background: #fff;
    border: 1px solid var(--res-line);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 18px 40px rgba(26,35,50,.06);
}
.disc-hero-card h3 {
    font-family: 'Marcellus', serif;
    font-size: 22px;
    color: var(--res-ink);
    margin-bottom: 16px;
}
.disc-hero-card ol {
    margin: 0 0 18px;
    padding-left: 20px;
}
.disc-hero-card li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--res-text, #4a5568);
}
.disc-hero-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--res-muted, #6b7280);
    padding-top: 14px;
    border-top: 1px solid var(--res-line);
}

.disc-paths { padding: 64px 0; background: #fff; }
.disc-section-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.disc-section-head h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(28px, 3vw, 36px);
    color: var(--res-ink);
    margin: 10px 0 12px;
}
.disc-section-head p { color: var(--res-text, #4a5568); margin: 0; line-height: 1.65; }
.disc-path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.disc-path-card {
    text-align: left;
    background: var(--res-bg);
    border: 1.5px solid var(--res-line);
    border-radius: 16px;
    padding: 20px 18px;
    cursor: pointer;
    transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
}
.disc-path-card:hover {
    border-color: var(--res-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(26,35,50,.07);
}
.disc-path-card.is-active {
    background: var(--res-accent-light);
    border-color: var(--res-accent);
    box-shadow: 0 0 0 1px var(--res-accent);
}
.disc-path-card strong {
    display: block;
    font-size: 15px;
    color: var(--res-ink);
    margin-bottom: 6px;
}
.disc-path-card span {
    display: block;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--res-muted, #6b7280);
}

.disc-schedule {
    padding: 72px 0;
    background:
        radial-gradient(ellipse 70% 55% at 88% 8%, rgba(45,122,79,.14), transparent 52%),
        radial-gradient(ellipse 50% 45% at 8% 90%, rgba(232,245,238,.9), transparent 55%),
        linear-gradient(180deg, #eef7f2 0%, #f7f5f0 55%, #f7f5f0 100%);
}
.disc-schedule-layout {
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 28px;
    align-items: start;
}
.disc-schedule-intro .badge-soft {
    display: inline-block;
    background: var(--res-green-light, #e8f5ee);
    color: var(--res-green, #2d7a4f);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    border: 1px solid rgba(45,122,79,.18);
}
.disc-schedule-intro h2 {
    font-family: 'Marcellus', serif;
    font-size: 30px;
    color: var(--res-green-deep, #1a5c37);
    margin-bottom: 12px;
}
.disc-schedule-intro > p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--res-text, #4a5568);
    margin-bottom: 22px;
}
.disc-schedule-notes {
    list-style: none;
    padding: 0;
    margin: 0;
}
.disc-schedule-notes li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--res-ink);
    margin-bottom: 12px;
}
.disc-schedule-notes i {
    color: var(--res-green, #2d7a4f);
    margin-top: 3px;
}

.disc-console {
    background: #fff;
    border: 1px solid rgba(45,122,79,.16);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 22px 48px rgba(45,122,79,.08);
}
.disc-console-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    margin-bottom: 20px;
}
.rm-cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}
.rm-cal-title { text-align: center; flex: 1; }
.rm-cal-title strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--res-ink);
}
.rm-cal-title span {
    display: block;
    font-size: 11px;
    color: var(--res-muted, #6b7280);
    margin-top: 2px;
    font-weight: 600;
}
.rm-cal-nav {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--res-line);
    background: var(--res-bg);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: var(--res-ink);
}
.rm-cal-nav:hover {
    border-color: var(--res-green, #2d7a4f);
    color: var(--res-green, #2d7a4f);
    background: var(--res-green-light, #e8f5ee);
}
.rm-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--res-muted, #6b7280);
    text-align: center;
}
.rm-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}
.rm-day {
    aspect-ratio: 1;
    border-radius: 10px;
    border: 1px solid var(--res-line);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: var(--res-ink);
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
}
.rm-day.is-empty {
    border: none;
    background: transparent;
    cursor: default;
}
.rm-day.is-disabled {
    opacity: .35;
    cursor: not-allowed;
    background: #f3f1ec;
}
.rm-day.is-today:not(.is-active) {
    border-color: var(--res-green, #2d7a4f);
    box-shadow: inset 0 0 0 1px rgba(45,122,79,.28);
    background: var(--res-green-light, #e8f5ee);
}
.rm-day.is-active,
.rm-day:not([disabled]):hover {
    background: var(--res-green, #2d7a4f);
    border-color: var(--res-green, #2d7a4f);
    color: #fff;
}

.rm-slots-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--res-green, #2d7a4f);
    margin-bottom: 10px;
}
.rm-slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 4px;
}
.rm-slot {
    border: 1px solid rgba(45,122,79,.16);
    background: var(--res-green-soft, #eef7f2);
    border-radius: 12px;
    padding: 10px 12px;
    text-align: left;
    cursor: pointer;
    transition: border-color .15s, background .15s, transform .15s, box-shadow .15s;
}
.rm-slot strong {
    display: block;
    font-size: 13px;
    color: var(--res-green-deep, #1a5c37);
    margin-bottom: 2px;
}
.rm-slot span {
    font-size: 11px;
    color: var(--res-green, #2d7a4f);
    font-weight: 600;
}
.rm-slot:not([disabled]):hover {
    border-color: var(--res-green, #2d7a4f);
    background: var(--res-green-light, #e8f5ee);
    transform: translateY(-1px);
}
.rm-slot.is-active {
    background: var(--res-green, #2d7a4f);
    border-color: var(--res-green, #2d7a4f);
    box-shadow: 0 8px 18px rgba(45,122,79,.22);
}
.rm-slot.is-active strong,
.rm-slot.is-active span {
    color: #fff;
}
.rm-slot.is-booked {
    opacity: .55;
    cursor: not-allowed;
    background: #f1f5f9;
}
.rm-slots-empty,
.rm-slots-loading {
    grid-column: 1 / -1;
    font-size: 13px;
    color: var(--res-muted, #6b7280);
    padding: 18px 8px;
}

.rm-selection-summary {
    background: var(--res-green-light, #e8f5ee);
    border: 1px solid rgba(45,122,79,.28);
    color: var(--res-green-deep, #1a5c37);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    margin-bottom: 18px;
}
.rm-selection-summary i { color: var(--res-accent); margin-right: 6px; }

.disc-fields {
    border-top: 1px solid var(--res-line);
    padding-top: 22px;
    margin-top: 8px;
}
.disc-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.55;
    color: var(--res-text, #4a5568);
    cursor: pointer;
}
.disc-consent input { margin-top: 3px; flex-shrink: 0; }
.disc-submit { width: 100% !important; margin-top: 8px; }
.disc-fineprint {
    font-size: 12px;
    color: var(--res-muted, #6b7280);
    margin: 12px 0 0;
    line-height: 1.5;
}
.disc-success {
    text-align: center;
    padding: 48px 24px;
}
.disc-success i {
    font-size: 48px;
    color: var(--res-accent);
    margin-bottom: 16px;
}
.disc-success h3 {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    color: var(--res-ink);
    margin-bottom: 12px;
}
.disc-success p {
    color: var(--res-text, #4a5568);
    max-width: 420px;
    margin: 0 auto 24px;
    line-height: 1.65;
}

.disc-experience { padding: 72px 0; background: #fff; }
.disc-step {
    background: var(--res-bg);
    border: 1px solid var(--res-line);
    border-radius: 16px;
    padding: 24px 20px;
    height: 100%;
}
.disc-step strong {
    display: block;
    font-size: 12px;
    letter-spacing: .08em;
    color: var(--res-accent);
    margin-bottom: 10px;
}
.disc-step h3 {
    font-family: 'Marcellus', serif;
    font-size: 20px;
    color: var(--res-ink);
    margin-bottom: 8px;
}
.disc-step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--res-text, #4a5568);
}
.disc-faq { background: var(--res-bg); }

@media (max-width: 991px) {
    .disc-schedule-layout { grid-template-columns: 1fr; }
    .disc-path-grid { grid-template-columns: repeat(2, 1fr); }
    .disc-console-grid { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
    .disc-hero { padding: 48px 0 36px; }
    .disc-path-grid { grid-template-columns: 1fr; }
    .disc-console { padding: 20px 16px; border-radius: 18px; }
    .rm-slots-grid { grid-template-columns: 1fr; max-height: none; }
    .disc-hero-actions .btn-res-primary,
    .disc-hero-actions .btn-res-ghost { width: 100%; }
}

/* =========================================================
   ReMind branded CAPTCHA
   ========================================================= */
.rm-captcha {
    background: linear-gradient(135deg, #ffffff 0%, #f7f5f0 100%);
    border: 1.5px solid var(--res-line, #e4e0d8);
    border-radius: 14px;
    padding: 14px 16px;
    margin: 4px 0 8px;
    transition: border-color .2s, box-shadow .2s;
}
.rm-captcha:focus-within {
    border-color: var(--res-accent);
    box-shadow: 0 0 0 3px rgba(45, 122, 79, .12);
}
.rm-captcha__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 14px;
    margin-bottom: 10px;
}
.rm-captcha__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--res-accent);
}
.rm-captcha__badge i { font-size: 13px; }
.rm-captcha__hint {
    font-size: 12.5px;
    color: var(--res-muted, #6b7280);
    line-height: 1.4;
}
.rm-captcha__row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.rm-captcha__puzzle {
    flex: 0 0 auto;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(45, 122, 79, .15);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
    line-height: 0;
    min-width: 168px;
    min-height: 52px;
    background: #f7f5f0;
}
.rm-captcha__refresh {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    border: 1.5px solid var(--res-line, #e4e0d8);
    background: #fff;
    color: var(--res-ink, #1a2332);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, color .2s, transform .2s, background .2s;
    flex-shrink: 0;
}
.rm-captcha__refresh:hover {
    border-color: var(--res-accent);
    color: var(--res-accent);
    background: var(--res-accent-light, #f0eee6);
}
.rm-captcha.is-loading .rm-captcha__refresh i {
    animation: rm-captcha-spin .7s linear infinite;
}
@keyframes rm-captcha-spin {
    to { transform: rotate(360deg); }
}
.rm-captcha__answer { flex: 1 1 110px; min-width: 100px; max-width: 160px; }
.rm-captcha__input {
    width: 100%;
    height: 42px;
    border-radius: 11px;
    border: 1.5px solid var(--res-line, #e4e0d8);
    background: #fff;
    padding: 0 14px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--res-ink, #1a2332);
    outline: none;
    font-family: inherit;
}
.rm-captcha__input:focus {
    border-color: var(--res-accent);
    background: #fff;
}
.rm-captcha--compact {
    padding: 10px 12px;
    border-radius: 12px;
    margin: 0 0 10px;
}
.rm-captcha--compact .rm-captcha__head { margin-bottom: 8px; }
.rm-captcha--compact .rm-captcha__puzzle { transform: scale(.92); transform-origin: left center; min-width: 154px; }
.rm-captcha--compact .rm-captcha__refresh { width: 38px; height: 38px; }
.rm-captcha--compact .rm-captcha__input { height: 38px; font-size: 15px; }

/* Ultra-compact captcha for footer subscribe strip */
.rm-captcha--mini {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid #d8d3c8;
    border-radius: 8px;
    padding: 3px 4px 3px 3px;
    margin: 0;
    box-shadow: none;
    flex: 0 0 auto;
}
.rm-captcha--mini:focus-within {
    border-color: var(--res-green, #2d7a4f);
    box-shadow: 0 0 0 2px rgba(45, 122, 79, .12);
}
.rm-captcha--mini .rm-captcha__head { display: none; }
.rm-captcha--mini .rm-captcha__row {
    flex-wrap: nowrap;
    gap: 4px;
    align-items: center;
}
.rm-captcha--mini .rm-captcha__puzzle {
    width: 104px;
    height: 32px;
    min-width: 0;
    border-radius: 6px;
    border: 0;
    box-shadow: none;
    overflow: hidden;
    line-height: 0;
}
.rm-captcha--mini .rm-captcha__puzzle svg {
    width: 104px !important;
    height: 32px !important;
    display: block;
}
.rm-captcha--mini .rm-captcha__refresh {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid #e4e0d8;
    background: #f7f5f0;
    color: var(--res-ink, #1a2332);
    font-size: 11px;
    flex: 0 0 auto;
}
.rm-captcha--mini .rm-captcha__refresh:hover {
    background: var(--res-ink, #1a2332);
    border-color: var(--res-ink, #1a2332);
    color: #fff;
}
.rm-captcha--mini .rm-captcha__answer {
    flex: 0 0 auto;
    min-width: 0;
    max-width: none;
    width: 42px;
}
.rm-captcha--mini .rm-captcha__input {
    width: 42px;
    height: 28px;
    padding: 0 4px;
    border-radius: 6px;
    border: 1px solid #e4e0d8;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

/* Dark / appointment panel compatibility */
.appointment-form .rm-captcha,
.our-appointment-box .rm-captcha {
    background: rgba(255,255,255,.96);
}
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}
@media (max-width: 575px) {
    .rm-captcha:not(.rm-captcha--mini) .rm-captcha__answer { max-width: none; flex: 1 1 100%; }
    .rm-captcha:not(.rm-captcha--mini) .rm-captcha__row { gap: 8px; }
}

/* =========================================================
   Site-wide Discovery CTA band (every page footer)
   ========================================================= */
.site-cta-band {
    position: relative;
    padding: 28px 0 8px;
    background:
        radial-gradient(ellipse 55% 100% at 6% 40%, rgba(45,122,79,.22), transparent 55%),
        radial-gradient(ellipse 50% 90% at 95% 10%, rgba(255,255,255,.05), transparent 50%),
        linear-gradient(125deg, #1a2332 0%, #1f2e28 45%, #243041 100%);
    overflow: hidden;
    border-top: 1px solid rgba(45,122,79,.18);
    box-shadow: inset 0 18px 40px rgba(232,245,238,.06);
}
.site-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: .45;
}
.site-cta-band .container { position: relative; z-index: 1; }
.site-cta-band__panel {
    display: grid;
    grid-template-columns: 1.35fr .9fr;
    gap: 28px 40px;
    align-items: center;
    padding: 28px 8px 32px;
}
.site-cta-band__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9fd4b0;
    margin-bottom: 12px;
}
.site-cta-band__copy h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(26px, 3.2vw, 36px);
    line-height: 1.18;
    color: #ffffff;
    margin: 0 0 12px;
    max-width: 18ch;
}
.site-cta-band__copy p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,.74);
    max-width: 52ch;
}
.site-cta-band__trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}
.site-cta-band__trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255,255,255,.86);
}
.site-cta-band__trust i {
    color: #9fd4b0;
    font-size: 13px;
}
.site-cta-band__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 22px 20px;
    backdrop-filter: blur(8px);
}
.site-cta-band__primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 22px;
    border-radius: 12px;
    background: var(--res-green, #2d7a4f);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 10px 28px rgba(45,122,79,.28);
}
.site-cta-band__primary:hover {
    transform: translateY(-2px);
    background: var(--res-green-deep, #1a5c37);
    color: #ffffff !important;
}
.site-cta-band__primary i { font-size: 13px; }
.site-cta-band__secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.site-cta-band__ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.26);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease;
}
.site-cta-band__ghost:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.5);
}
.site-cta-band__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 2px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.7) !important;
    text-decoration: none;
    transition: color .2s ease;
}
.site-cta-band__phone:hover { color: #ffffff !important; }
.site-cta-band__phone i { color: #9fd4b0; }

@media (max-width: 991px) {
    .site-cta-band__panel {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 0 28px;
        text-align: center;
    }
    .site-cta-band__copy h2,
    .site-cta-band__copy p { margin-left: auto; margin-right: auto; }
    .site-cta-band__trust { justify-content: center; }
    .site-cta-band__actions { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 575px) {
    .site-cta-band { padding: 18px 0 4px; }
    .site-cta-band__secondary { grid-template-columns: 1fr; }
    .site-cta-band__trust { gap: 8px 12px; }
    .site-cta-band__trust li { font-size: 12px; }
}

/* Legacy footer-cta overrides (kept harmless if old markup remains) */
.footer-cta-box { display: none; }


/* =========================================================
   Homepage testimonials — Indian voices + partner logos
   ========================================================= */
.testimonial-company-strip {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid rgba(26, 35, 50, .1);
}
.testimonial-company-kicker {
    text-align: center;
    margin: 0 0 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-color, #6b7280);
    opacity: .9;
}
.testimonial-company-slider {
    margin-top: 0;
}
.testimonial-company-slider .company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 8px 12px;
    filter: grayscale(1);
    opacity: .72;
    transition: opacity .25s, filter .25s, transform .25s;
}
.testimonial-company-slider .company-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-2px);
}
.testimonial-company-slider .company-logo img {
    width: auto;
    max-width: 100%;
    max-height: 42px;
    height: auto;
}
.our-testimonial .customer-img figure,
.our-testimonial .customer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.our-testimonial .testimonial-slider-image img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}
.our-testimonial .author-content p {
    text-transform: none;
    letter-spacing: 0;
}

/* =========================================================
   ReMind vision video lightbox (4R methodology)
   ========================================================= */
.rm-video-lightbox {
    position: relative;
    width: min(960px, 92vw);
    margin: 0 auto;
    background: #0c1420;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .55);
}
.rm-video-lightbox video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 82vh;
    background: #000;
    vertical-align: middle;
}
.mfp-rm-video.mfp-bg {
    background: rgba(10, 16, 28, .88);
    opacity: 1;
}
.mfp-rm-video .mfp-content {
    max-width: 980px;
}
.mfp-rm-video .mfp-close {
    color: #fff !important;
    right: -6px;
    top: -42px;
    opacity: .9;
}
.mfp-rm-video .mfp-close:hover { opacity: 1; }
.rm-vision-video .intro-bg-video video {
    filter: saturate(1.05) contrast(1.02);
}

/* =========================================================
   ReMind footer — deep-ink closing act
   ========================================================= */
.main-footer.rm-footer--ink {
    --rmf-ink: #10192a;
    --rmf-ink-2: #16202f;
    --rmf-cream: #f3f1eb;
    --rmf-cream-60: rgba(243, 241, 235, .6);
    --rmf-cream-40: rgba(243, 241, 235, .4);
    --rmf-line: rgba(243, 241, 235, .14);
    --rmf-green: #2d7a4f;
    --rmf-green-deep: #1a5c37;
    --rmf-mint: #7fc39a;
    --rmf-sage: #9B9A84;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--rmf-ink-2) 0%, var(--rmf-ink) 55%, #0c1420 100%);
    color: var(--rmf-cream);
    padding: 0;
    font-family: 'Sora', sans-serif;
}
.rm-footer__aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(820px 460px at 82% -12%, rgba(45, 122, 79, .34), transparent 62%),
        radial-gradient(560px 380px at -8% 32%, rgba(127, 195, 154, .10), transparent 58%),
        radial-gradient(640px 420px at 50% 118%, rgba(155, 154, 132, .12), transparent 60%);
}
.rm-footer__watermark {
    position: absolute;
    left: 50%;
    bottom: -0.24em;
    transform: translateX(-50%);
    font-family: 'Marcellus', serif;
    font-size: clamp(140px, 24vw, 340px);
    line-height: 1;
    letter-spacing: .02em;
    color: rgba(243, 241, 235, .045);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}
.rm-footer__inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
}
.rm-footer__pulse {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--rmf-mint);
    margin-right: 9px;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(127, 195, 154, .5);
    animation: rmfPulse 2.6s ease-out infinite;
}
@keyframes rmfPulse {
    0%   { box-shadow: 0 0 0 0 rgba(127, 195, 154, .45); }
    70%  { box-shadow: 0 0 0 9px rgba(127, 195, 154, 0); }
    100% { box-shadow: 0 0 0 0 rgba(127, 195, 154, 0); }
}
.rm-footer__tier {
    padding: 40px 0;
    border-bottom: 1px solid var(--rmf-line);
}

/* ---- Tier 1: weekly letter + brand ---- */
.rm-footer__tier--top {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(240px, .85fr);
    gap: 36px 64px;
    align-items: start;
    padding: 64px 0 44px;
}
.rm-footer__eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 16px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--rmf-sage);
}
.rm-footer__news-title {
    font-family: 'Marcellus', serif;
    font-weight: 400;
    font-size: clamp(32px, 3.8vw, 48px);
    line-height: 1.12;
    letter-spacing: -.01em;
    color: var(--rmf-cream);
    margin: 0 0 14px;
}
.rm-footer__news-title em {
    font-style: italic;
    color: var(--rmf-mint);
}
.rm-footer__news-sub {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--rmf-cream-60);
    max-width: 44ch;
}
.rm-footer__news-feedback {
    margin: 0 0 12px;
    font-size: 13px;
}
.rm-footer__field-row {
    display: flex;
    align-items: stretch;
    max-width: 430px;
    background: var(--rmf-cream);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
    transition: box-shadow .25s, transform .25s;
}
.rm-footer__field-row:focus-within {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .28), 0 0 0 3px rgba(127, 195, 154, .35);
}
.rm-footer__email {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 16px 22px;
    font: inherit;
    font-size: 14.5px;
    color: #1a2332;
    outline: none;
    height: auto;
    margin: 0;
    border-radius: 0;
    max-width: none;
}
.rm-footer__email::placeholder { color: rgba(26, 35, 50, .42); }
.rm-footer__subscribe {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 0;
    margin: 5px;
    border-radius: 999px;
    background: var(--rmf-green);
    color: #fff;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: .01em;
    padding: 0 22px;
    height: auto;
    min-height: 44px;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}
.rm-footer__subscribe:hover { background: var(--rmf-green-deep); }
.rm-footer__send-arrow {
    display: inline-block;
    transition: transform .25s;
}
.rm-footer__subscribe:hover .rm-footer__send-arrow { transform: translateX(4px); }
.rm-footer__verify {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 7px 8px 7px 16px;
    background: rgba(243, 241, 235, .06);
    border: 1px solid rgba(243, 241, 235, .12);
    border-radius: 14px;
}
.rm-footer__verify-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--rmf-cream-60);
    white-space: nowrap;
}
.rm-footer__verify .rm-captcha--mini {
    border: 0;
    background: var(--rmf-cream);
    box-shadow: none;
}

/* Brand block */
.rm-footer__brand {
    justify-self: end;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.rm-footer__logo {
    display: inline-block;
    margin-bottom: 14px;
    background: var(--rmf-cream);
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
    transition: transform .25s;
}
.rm-footer__logo:hover { transform: translateY(-2px); }
.rm-footer__logo img {
    max-width: 170px;
    height: auto;
    display: block;
}
.rm-footer__brand-kicker {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    line-height: 1.55;
    color: var(--rmf-cream);
}
.rm-footer__clock {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--rmf-sage);
}

/* ---- Tier 2: links + cards ---- */
.rm-footer__tier--mid {
    display: grid;
    grid-template-columns: minmax(220px, .85fr) minmax(0, 1.7fr);
    gap: 34px 64px;
    align-items: start;
    padding: 42px 0 48px;
}
.rm-footer__col-label {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--rmf-sage);
    margin: 0 0 18px;
}
.rm-footer__num {
    font-family: 'Marcellus', serif;
    font-size: 13px;
    color: var(--rmf-mint);
    letter-spacing: .04em;
}
.rm-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 36px;
    row-gap: 15px;
    max-width: 330px;
}
.rm-footer__links li { margin: 0; }
.rm-footer__links a {
    position: relative;
    display: inline-block;
    font-size: 15.5px;
    font-weight: 500;
    color: rgba(243, 241, 235, .86);
    text-decoration: none;
    transition: color .2s, transform .25s;
}
.rm-footer__links a::before {
    content: '\2192';
    position: absolute;
    left: -22px;
    top: 0;
    opacity: 0;
    color: var(--rmf-mint);
    transition: opacity .22s, left .22s;
}
.rm-footer__links a:hover {
    color: #fff;
    transform: translateX(22px);
}
.rm-footer__links a:hover::before {
    opacity: 1;
    left: -20px;
}
.rm-footer__offices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 34px;
}
.rm-footer__office h3 {
    font-family: 'Marcellus', serif;
    font-size: 19px;
    font-weight: 400;
    color: var(--rmf-cream);
    margin: 0 0 10px;
    text-transform: none;
    letter-spacing: .01em;
}
.rm-footer__address {
    margin: 0 0 18px;
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--rmf-cream-60);
}
.rm-footer__address a {
    color: var(--rmf-cream);
    font-weight: 600;
    text-decoration: none;
    transition: color .2s;
}
.rm-footer__address a:hover { color: var(--rmf-mint); }
.rm-footer__route {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 19px;
    border-radius: 999px;
    background: var(--rmf-green);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, gap .2s;
}
.rm-footer__route:hover {
    background: var(--rmf-green-deep);
    gap: 13px;
    color: #fff !important;
}
.rm-footer__route--ghost {
    background: transparent;
    border: 1.5px solid rgba(243, 241, 235, .4);
    color: var(--rmf-cream) !important;
}
.rm-footer__route--ghost:hover {
    background: var(--rmf-cream);
    border-color: var(--rmf-cream);
    color: #10192a !important;
}

/* ---- Tier 3: strip ---- */
.rm-footer__tier--bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    flex-wrap: wrap;
    padding: 26px 0 34px;
    border-bottom: 0;
}
.rm-footer__bottom-mail {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--rmf-cream);
    text-decoration: none;
    transition: color .2s;
}
.rm-footer__bottom-mail:hover { color: var(--rmf-mint); }
.rm-footer__bottom-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-left: auto;
}
.rm-footer__social {
    display: flex;
    gap: 10px;
}
.rm-footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(243, 241, 235, .35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--rmf-cream);
    background: transparent;
    font-size: 14px;
    transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.rm-footer__social a:hover {
    background: var(--rmf-green);
    border-color: var(--rmf-green);
    color: #fff;
    transform: translateY(-2px);
}
.rm-footer__copy {
    margin: 0;
    font-size: 13px;
    color: var(--rmf-cream-40);
}
.rm-footer__crm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    border-radius: 999px;
    background: transparent;
    border: 1.5px solid rgba(243, 241, 235, .35);
    color: var(--rmf-cream) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    letter-spacing: .02em;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
}
.rm-footer__crm:hover {
    background: var(--rmf-cream);
    border-color: var(--rmf-cream);
    color: #10192a !important;
}
.rm-footer__crm i { font-size: 10px; }
.rm-footer__top {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(243, 241, 235, .35);
    background: transparent;
    color: var(--rmf-cream);
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s, border-color .2s, transform .25s;
}
.rm-footer__top:hover {
    background: var(--rmf-mint);
    border-color: var(--rmf-mint);
    color: #10192a;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .rm-footer__tier--top {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 48px;
    }
    .rm-footer__brand {
        justify-self: start;
        text-align: left;
        align-items: flex-start;
        order: -1;
    }
    .rm-footer__logo img { max-width: 156px; }
    .rm-footer__tier--mid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .rm-footer__offices { grid-template-columns: repeat(3, 1fr); gap: 26px 20px; }
    .rm-footer__watermark { font-size: clamp(110px, 26vw, 220px); }
}
@media (max-width: 700px) {
    .rm-footer__offices { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
    .rm-footer__tier--top { padding-top: 40px; }
    .rm-footer__tier--mid { padding: 32px 0; }
    .rm-footer__offices { grid-template-columns: 1fr; gap: 28px; }
    .rm-footer__links { max-width: none; column-gap: 24px; }
    .rm-footer__field-row { max-width: none; }
    .rm-footer__verify { flex-wrap: wrap; border-radius: 16px; }
    .rm-footer__tier--bottom { flex-direction: column; align-items: flex-start; }
    .rm-footer__bottom-right { margin-left: 0; }
}
