

/* Start:/css/style.css?176952702152487*/
* {
font-size: 100%;
font-family: "Instrument Sans", sans-serif;
box-sizing: border-box;
}
body {
margin: 0;
overflow-x: hidden;
max-width: 100%;
background-color: var(--black);
color: var(--white);
}
:root {
--black: #111111;
--white: #ffffff;
--gold: linear-gradient(to right, #cdaa76, #b18e5b);
--grey:#999999;
--dark-grey: #1c1c1c;
--progress-bg: #2a2a2a;
--light-grey:#F8F8F8;
--light-bg: #f7f7f7;
--card-bg: #ffffff;
--input-bg: #222;
--input-border: #444;
}
.wrapper {
padding-left: clamp(1.25rem, 5vw, 1.875rem);
padding-right: clamp(1.25rem, 5vw, 1.875rem);
width: 100%;
max-width: 1920px; /* Optional: set a max width for very large screens */
margin: 0 auto;
}
.button {
padding: clamp(1rem, 1.5vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
text-decoration: none;
font-weight: 500;
text-transform: uppercase;
font-size: clamp(0.75rem, 0.125vw + 0.725rem, 0.875rem);
letter-spacing: 0.05em;
border: 2px solid var(--gold);
transition: all 0.3s ease;
white-space: nowrap;
background: var(--gold);
color: var(--black);
cursor: pointer;
display: inline-flex;
justify-content: center;
align-items: center;
}
.button:hover {
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 223, 128, 0.7); /* Усиленная тень и эффект свечения */
transform: scale(1.05); /* Немного увеличиваем кнопку */
color: #2c200f; /* Немного темнее текст */
}
.grecaptcha-badge {
display: none !important;
}
h1, h2, h3, h4 {
font-weight: 400;
font-family: "Instrument Serif", serif;
margin: 0;
line-height: 1.15;
}
h1 span, h2 span, h3 span, h4 span {
font-style: italic;
font-family: "Instrument Serif", serif;
}
h1 {
font-size: clamp(3rem, 3vw + 2.400rem, 6rem);
}
h2 {
font-size: clamp(3rem, 1vw + 2.800rem, 4rem);
}
/* --- HEADER --- */
.header {
position: sticky;
top: 0;
left: 0;
width: 100%;
z-index: 100;
background-color: rgba(17, 17, 17, 0.7);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
padding-top: 1rem;
padding-bottom: 1rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header__wrapper {
display: flex;
justify-content: space-between;
align-items: center;
}
.header__left, .header__right {
flex: 1 1 0;
}
.header__left {
display: flex;
align-items: center;
gap: 1.5rem; /* Increased gap for burger */
}
.header__location {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--white);
font-size: 0.875rem;
}
.header__location-icon {
fill: var(--white);
width: 0.86781rem;
height: 1.10681rem;
aspect-ratio: 13.88 / 17.71;
margin-right: 0.3rem;
}
.header__logo {
display: flex;
align-content: center;
align-items: center;
color: var(--white);
text-decoration: none;
}

.header__logo span {
font-family: "Instrument Serif", serif;
font-size: 1.5rem;
font-weight: 400;
color: var(--white);
text-transform: uppercase;
letter-spacing: 0.05em;
}

.header__logo-src {
width: clamp(2rem, 1.250vw + 2.375rem, 3rem);
height: clamp(2rem, 1.250vw + 2.375rem, 3rem);
fill:var(--white);
transition: 300ms;
}

.header__logo:hover span {
color: var(--vip-color);
transition: 300ms;
}

.header__logo:hover .header__logo-src  {
//fill: var(--gold);
transition: 300ms;
}
.header__right {
display: flex;
justify-content: flex-end;
align-items: center;
}
.header__invite {
color: var(--white);
text-transform: uppercase;
font-size: 0.875rem;
font-weight: 500;
text-decoration: none;
letter-spacing: 0.05em;
}
.header__burger {
display: flex;
flex-direction: column;
justify-content: space-between;
width: 24px;
height: 18px;
background: transparent;
border: none;
cursor: pointer;
padding: 0;
z-index: 200; /* Ensure it's above other elements */
position: relative;
}
.header__burger span {
display: block;
width: 100%;
height: 2px;
background-color: var(--white);
border-radius: 2px;
transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__burger.is-active span:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}
.header__burger.is-active span:nth-child(2) {
opacity: 0;
}
.header__burger.is-active span:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}

/* --- MOBILE MENU --- */
.mobile-menu {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background-color: var(--black);
z-index: 150;
transform: translateX(100%);
transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
display: flex;
flex-direction: column;
padding: 1rem clamp(1.25rem, 5vw, 1.875rem);
}
.mobile-menu.is-open {
transform: translateX(0);
}
.mobile-menu__header {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
min-height: 44px; /* Match header height for alignment */
}
.mobile-menu__logo {
display: flex;
justify-content: center;
width: 100%;
}
.mobile-menu__logo img {
height: 1.25rem;
}
.mobile-menu__nav {
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 1.5rem;
}
.mobile-menu__link {
font-family: 'Instrument Serif', serif;
font-size: clamp(2rem, 8vw, 3rem);
color: var(--white);
text-decoration: none;
transition: color 0.3s ease;
}
.mobile-menu__link:hover {
color: var(--gold);
}
.mobile-menu__footer {
text-align: center;
padding-bottom: 2rem;
}
.mobile-menu__footer .button {
width: 100%;
max-width: 300px;
}

/* --- HERO SECTION --- */
.hero {
position: relative;
color: var(--white);
min-height: 100vh;
display: flex;
align-items: center;
padding: 8rem 0;
}
.hero__background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.hero__background::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to right, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.4));
}
.hero__background video {
width: 100%;
height: 100%;
object-fit: cover;
}
.hero__wrapper {
display: flex;
align-items: center;
justify-content: space-between;
gap: 4rem;
}
.hero__content {
flex-basis: 50%;
max-width: 35rem;
}
.hero__title {
color: var(--white);
margin-bottom: 1.5rem;
}
.hero__description {
font-size: 1.125rem;
line-height: 1.6;
margin-bottom: 2.5rem;
color: rgba(255, 255, 255, 0.8);
}
.hero__button {
color: #111;
}
.hero__stats {
flex-basis: 45%;
display: flex;
justify-content: space-around;
gap: 2rem;
text-align: center;
}
.hero__stat-value {
font-size: clamp(3rem, 2.5vw + 2.5rem, 5.5rem);
font-family: "Instrument Serif", serif;
color: var(--white);
line-height: 1;
margin: 0;
}
.hero__stat-label {
font-size: 0.875rem;
text-transform: lowercase;
color: rgba(255, 255, 255, 0.7);
margin-top: 0.5rem;
}
/* --- LOCATIONS SECTION --- */
.locations {
padding-top: 4rem;
padding-bottom: 4rem;
}
.locations__scroller {
overflow-x: auto;
/* Hiding scrollbar for a cleaner look */
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.locations__scroller::-webkit-scrollbar {
display: none; /* Chrome, Safari and Opera */
}
.locations__grid {
display: grid;
grid-auto-flow: column;
grid-auto-columns: minmax(215px, 1fr);
gap: 1.87rem;
/* Padding: 30px at 375px, 148px at 1440px */
padding-left: clamp(1.875rem, 10.2vw, 9.25rem);
padding-right: clamp(1.875rem, 10.2vw, 9.25rem);
}
.locations__item {
position: relative;
aspect-ratio: 4 / 4;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.locations__image {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
transition: transform 0.4s ease;
}
.locations__item:hover .locations__image {
transform: scale(1.1);
}
.locations__item::after {
content: '';
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.3);
transition: background 0.3s ease;
}
.locations__item:hover::after {
background: rgba(0, 0, 0, 0.5);
}
.locations__city {
color: var(--white);
font-size: 1.87rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.1em;
z-index: 1;
font-family: "Instrument Serif", serif;
}

@media (max-width: 990px) {
.header__location, .header__invite {
display: none;
}
.header__left {
gap: 0; /* Remove gap on mobile */
}
.hero {
padding: 6rem 0;
min-height: auto;
}
.hero__wrapper {
flex-direction: column;
text-align: center;
gap: 3rem;
}
.hero__content {
max-width: 100%;
}
.hero__stats {
width: 100%;
justify-content: space-between;
}
.hero__stat-value {
font-size: clamp(2.5rem, 10vw, 4rem);
}
.locations__grid {
/* On mobile, use flex for a more natural scroll */
display: flex;
grid-auto-flow: unset;
grid-auto-columns: unset;
width: max-content;
/* Padding matches the .wrapper padding on mobile */
padding-left: clamp(1.25rem, 5vw, 1.875rem);
padding-right: clamp(1.25rem, 5vw, 1.875rem);
}
.locations__item {
width: 60vw;
max-width: 250px;
}
}

.problems {
	padding-top: clamp(4rem, 8vw, 8rem);
	padding-bottom: clamp(4rem, 8vw, 8rem);
}

.problems__title {
	font-family: 'Instrument Serif', serif;
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
	margin-bottom: clamp(3rem, 6vw, 6rem);
	max-width: 25ch; /* Limit width for better readability */
}

.problems__title span {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
}

.problems__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	/* Gap: 30px at 375px, 100px at 1440px */
	gap: clamp(1.875rem, 6.542vw + 0.58rem, 6.25rem);
	 /* Row Gap: 50px at 375px, 80px at 1440px */
	row-gap: clamp(3.125rem, 2.804vw + 2.43rem, 5rem);
}

.problems__item {
	display: flex;
	align-items: flex-start;
	gap: clamp(1rem, 2vw, 1.5rem);
}

.problems__number {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(4rem, 8vw, 10rem);
	line-height: 0.8;
}

.problems__content {
	padding-top: 0.5rem; /* Align text with number */
}

.problems__item-title {
	font-family: 'Instrument Serif', serif;
	font-size: 2.25rem;
	font-weight: 500;
	margin: 0;
	margin-bottom: 1.5rem;
}

.problems__text {
	font-size: clamp(0.875rem, 1vw, 1rem);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

.problems__text:not(:last-child) {
	margin-bottom: 1rem;
}

.problems__text strong {
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
}


@media (max-width: 768px) {
	.problems__title {
		max-width: none;
	}
	
	.problems__grid {
		grid-template-columns: 1fr;
	}
}

.marketplace {
	padding-top: clamp(4rem, 8vw, 8rem);
	padding-bottom: clamp(4rem, 8vw, 8rem);
	text-align: center;
	background: var(--white);
}

.marketplace * {
color:var(--black);
}

.marketplace__title {
	font-family: 'Instrument Serif', serif;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 auto;
	max-width: 20ch;
}

.marketplace__title span {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
}

.marketplace__subtitle {
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: var(--grey);
	margin: 1.5rem auto 0;
	max-width: 40ch;
	margin-bottom: clamp(3rem, 6vw, 5rem);
}

.marketplace__slider {
	overflow: visible; /* Allows shadows or other elements to be seen */
	text-align: left;
}

.marketplace__item {
	display: flex;
	flex-direction: column;
	height: auto; /* Allow slides to grow */
}

.marketplace__image-wrapper {
	aspect-ratio: 1 / 1;
	margin-bottom: 1.5rem;
	overflow: hidden;
}

.marketplace__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.marketplace__item:hover .marketplace__image {
	transform: scale(1.05);
}

.marketplace__item-title {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 400;
	margin: 0 0 0.5rem;
}

.marketplace__item-text {
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	color: var(--grey);
	line-height: 1.6;
	margin: 0;
}

/* Swiper Pagination Styles */
.marketplace .swiper-pagination {
	position: static; /* Place it below the slider */
	margin-top: 2.5rem;
}
.marketplace .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: #d1d1d1;
	opacity: 1;
	transition: background-color 0.3s ease;
}
.marketplace .swiper-pagination-bullet-active {
	background-color: var(--black);
}

/* On desktop, hide pagination as it's a grid */
@media (min-width: 1024px) {
	.marketplace .swiper-pagination {
		display: none;
	}
}

.influence {
	padding-top: clamp(4rem, 8vw, 8rem);
	padding-bottom: clamp(4rem, 8vw, 8rem);
}

.influence__title {
	font-family: 'Instrument Serif', serif;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
	margin: 0 auto;
}

.influence__title span {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
}

.influence__subtitle {
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: var(--grey);
	text-align: center;
	margin: 1rem auto 0;
	margin-bottom: clamp(4rem, 8vw, 6rem);
}

.influence__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 8vw, 6rem);
}

.influence__list-title {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 400;
	margin: 0 0 3rem;
}

.influence__list-title span {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
}

.influence__items {
	display: grid;
	gap: clamp(2rem, 4vw, 3rem);
}

.influence__item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
}

.influence__number {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(4rem, 4vw, 4.5rem);
	line-height: 1;
	min-width: 4rem; /* To maintain alignment */
	text-align: center;
}

.influence__item-title {
	font-family: 'Instrument Sans', sans-serif;
	font-size: clamp(1.125rem, 2vw, 1.5rem);
	font-weight: 500;
	margin: 0 0 0.5rem;
	color: var(--white);
}

.influence__item-subtitle {
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	color: var(--grey);
	line-height: 1.5;
	margin: 0;
}


@media (max-width: 768px) {
	.influence__grid {
		grid-template-columns: 1fr;
	}

	.influence__list:not(:last-child) {
		margin-bottom: 4rem;
	}
}

.ambassadors {
	padding-top: clamp(4rem, 8vw, 8rem);
	padding-bottom: clamp(4rem, 8vw, 8rem);
}

.ambassadors__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.ambassadors__title {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(2.5rem, 4vw, 4rem);
	font-weight: 400;
	margin: 0;
}

.ambassadors__nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.ambassadors__pagination {
	font-family: 'Instrument Sans', sans-serif;
	font-size: 1rem;
	color: var(--grey);
	width: auto; /* Override swiper default */
	position: static; /* Override swiper default */
}

.ambassadors__button {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.ambassadors__button:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: var(--white);
}

.ambassadors__button--next {
	transform: scaleX(-1); /* Flip the prev arrow icon */
}

.ambassadors__button--next svg {
	transform: rotate(180deg);
}

/* Make slider visible */
.ambassadors__slider {
	overflow: visible;
}

.ambassadors__slide {
	display: grid;
	grid-template-columns: 3fr 4fr; /* Ratio for image and content */
	gap: 5%;
	align-items: center;
	width: 60%; /* Each slide takes up 60% of the container width */
	max-width: 1000px;
	opacity: 0.4;
	transition: opacity 0.4s ease;
}

.ambassadors .swiper-slide-active {
	opacity: 1;
}

.ambassadors__image-wrapper {
	aspect-ratio: 4 / 5;
	border-radius: 0.5rem;
	overflow: hidden;
}

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

.ambassadors__content {
	display: flex;
	flex-direction: column;
}

.ambassadors__content blockquote {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	line-height: 1.3;
	margin: 0 0 2rem;
	font-style: italic;
}

.ambassadors__content footer {
	font-style: normal;
	margin-bottom: 2.5rem;
}

.ambassadors__content cite {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	display: block;
	margin-bottom: 0.25rem;
	font-style: normal;
}

.ambassadors__content span {
	color: var(--grey);
	font-size: 1rem;
}

.ambassadors__logo {
	max-width: 120px;
	height: auto;
	filter: brightness(0) invert(1); /* Makes logo white */
}


@media (max-width: 1024px) {
	.ambassadors__slide {
		width: 80%; /* Show more of the slide on tablets */
	}
}

@media (max-width: 768px) {
	.ambassadors__slide {
		grid-template-columns: 1fr;
		gap: 2rem;
		width: 75vw; /* Each slide takes up most of the viewport */
	}

	.ambassadors__content blockquote {
		margin-bottom: 1.5rem;
	}

	.ambassadors__content footer {
		margin-bottom: 2rem;
	}
}

.investment {
	padding-top: clamp(4rem, 8vw, 8rem);
	padding-bottom: clamp(4rem, 8vw, 8rem);
	background: var(--white);
}

.investment * {
color:var(--black);
}

.investment__title {
	font-family: 'Instrument Serif', serif;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
	margin: 0 auto;
}

.investment__subtitle {
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: var(--grey);
	text-align: center;
	margin: 1rem auto 0;
	margin-bottom: clamp(3rem, 6vw, 5rem);
}

.investment__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.investment-card {
	background-color: var(--light-grey);
	padding: clamp(1.5rem, 3vw, 2.5rem);
	border-radius: 0.5rem;
	display: flex;
	flex-direction: column;
}

.investment-card__header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.investment-card__name {
	font-family: 'Instrument Serif', serif;
	font-size: 2.25rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0;
}

.investment-card__price {
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	font-weight: 500;
	color: var(--grey);
}

.investment-card__body {
	padding-top: 1.5rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.investment-card__benefits {
	display: grid;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
}

.investment-card__benefits dt {
	font-weight: 600;
	margin-bottom: 0.25rem;
	font-size: 0.875rem;
}

.investment-card__benefits dd {
	margin: 0;
	font-size: 0.875rem;
	color: var(--grey);
	line-height: 1.6;
}

.investment-card__roi {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 400;
	margin: 0;
	margin-top: auto; /* Pushes ROI to the bottom */
	padding-top: 2rem;
}

.investment-card__button {
	width: 100%;
	margin-top: 1.5rem;
}

.investment-card--platinum {
background-color: #F8F8F8;
}

.investment-card--diamond {
background-color: #EAF2FF;
}

.investment-card--legacy {
background-color: var(--black);
}

.investment-card--legacy * {
color:var(--white);
}

.investment-card--legacy .button {
color:var(--black);
}


@media (max-width: 990px) {
	.investment__grid {
		grid-template-columns: 1fr;
	}
}

.connections {
	position: relative;
	padding-top: clamp(6rem, 12vw, 12rem);
	padding-bottom: clamp(6rem, 12vw, 12rem);
	color: var(--white);
	overflow: hidden;
}

.connections__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
}

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

.connections__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(17, 17, 17, 0) 50%, rgba(17, 17, 17, 0.8) 100%);
}

.connections__wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 60vh;
}

.connections__title {
	font-family: 'Instrument Serif', serif;
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
	max-width: 15ch;
}

.connections__stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-top: auto; /* Pushes the grid to the bottom */
	padding-top: 4rem;
	max-width: 1000px;
}

.connections__stat-value {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 400;
	line-height: 1;
	margin: 0;
}

.connections__stat-label {
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	line-height: 1.6;
	margin: 0.5rem 0 0;
	max-width: 25ch;
}


@media (max-width: 990px) {
	.connections__stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem 2rem;
	}
}

@media (max-width: 768px) {
	.connections__wrapper {
		min-height: 0;
	}
	.connections__title {
		max-width: none;
	}
}

.stories {
	padding-top: clamp(4rem, 8vw, 8rem);
	padding-bottom: clamp(4rem, 8vw, 8rem);
}

.stories__title {
	font-family: 'Instrument Serif', serif;
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
}

.stories__subtitle {
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: var(--grey);
	margin: 1rem 0 0;
	max-width: 50ch;
	margin-bottom: clamp(3rem, 6vw, 4rem);
}

.stories__list {
	display: grid;
	gap: 1rem;
}

.story-player {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	background-color: var(--dark-grey);
	padding-right: 1.5rem;
	overflow: hidden; /* Important for progress bar */
}

.story-player__button {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	background-color: var(--white);
	border: none;
	border-radius: 0; /* To fit the corner */
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background-color 0.3s ease;
}

.story-player__button:hover {
	background-color: #f0f0f0;
}

.story-player__button .icon-pause {
	display: none;
}

.story-player.is-playing .story-player__button .icon-pause {
	display: block;
}

.story-player.is-playing .story-player__button .icon-play {
	display: none;
}

.story-player__main {
	flex-grow: 1;
	position: relative;
	display: flex;
	align-items: center;
}

.story-player__progress {
	position: absolute;
	top: 0;
	left: -1.5rem; /* Start from behind the padding */
	bottom: 0;
	width: 0%;
	background-color: var(--progress-bg);
	z-index: 1;
	transition: width 0.1s linear;
	//padding-left: 1.5rem; /* Match parent padding */
}

.story-player__description {
	margin: 0;
	font-size: clamp(0.875rem, 2vw, 1rem);
	line-height: 1.5;
	position: relative;
	z-index: 2;
	padding: 1rem 0;
}

.story-player__time {
	font-size: 0.875rem;
	color: var(--grey);
	font-variant-numeric: tabular-nums;
	z-index: 2;
}

.story-player__audio {
	display: none;
}


@media (max-width: 768px) {
	.story-player {
		gap: 1rem;
		padding-right: 1rem;
	}
	.story-player__button {
		width: 60px;
		height: 60px;
	}
	 .story-player__description {
		padding: 0.5rem 0;
	}
}

.success-stories {
	background-color: var(--light-grey);
	padding-top: clamp(4rem, 8vw, 8rem);
	padding-bottom: clamp(4rem, 8vw, 8rem);
	overflow: hidden;
}

.success-stories * {
color: var(--black);
}

.success-stories__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.success-stories__title {
	font-family: 'Instrument Serif', serif;
	font-weight: 400;
	margin: 0;
}

.success-stories__nav {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.success-stories__pagination {
	font-size: 0.875rem;
	color: var(--grey);
	font-variant-numeric: tabular-nums;
}

.success-stories__nav-btn {
	width: 44px;
	height: 44px;
	border: 1px solid #ddd;
	border-radius: 50%;
	background-color: transparent;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}
.success-stories__nav-btn:hover {
	background-color: var(--white);
	border-color: #ccc;
}
.success-stories__nav-btn.swiper-button-disabled {
	opacity: 0.5;
	cursor: not-allowed;
	border-color: #eee;
}

.success-stories__slider {
	overflow: visible; /* Allows shadows/hovers to be seen */
}

.story-card {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 2rem;
	background-color: var(--white);
}

.story-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.25rem;
}

.story-card__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 2rem;
}

.story-card__quote {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(1.5rem, 2vw, 2.25rem);
	line-height: 1.4;
	margin: 0 0 1rem;
	font-style: italic;
}

.story-card__author {
	font-size: 1rem;
	color: var(--grey);
	font-style: normal;
	margin-bottom: 2rem;
}

.story-card__button {
	align-self: flex-start;
}

.success-stories .swiper-slide {
	width: 60%; /* Adjust slide width */
	max-width: 800px;
}

/* --- STORY POPUP/MODAL --- */
.story-popup {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.story-popup.is-visible {
	opacity: 1;
	visibility: visible;
}
.story-popup__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(17, 17, 17, 0.7);
	backdrop-filter: blur(5px);
}
.story-popup__content {
	position: relative;
	background-color: var(--white);
	border-radius: 0.5rem;
	padding: clamp(2rem, 5vw, 4rem);
	max-width: 700px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	transform: scale(0.95);
	transition: transform 0.3s ease;
}
.story-popup.is-visible .story-popup__content {
	transform: scale(1);
}
.story-popup__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}
.story-popup__author {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}
.story-popup__author img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
}
.story-popup__author h3 {
	margin: 0;
	font-family: 'Instrument Serif', serif;
	font-size: 2rem;
	color: var(--black);
}
.story-popup__author p {
	margin: 0;
	color: var(--grey);
}
.story-popup__text {
	line-height: 1.8;
	color: var(--grey);
}



@media (max-width: 990px) {
	.swiper-slide {
		width: 80%;
	}
	.story-card {
		grid-template-columns: 1fr;
		gap: 0;
	}
	
	.story-card__content {
	padding: 1.75rem;
	}
}
@media (max-width: 768px) {
	.success-stories__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
	.swiper-slide {
		width: 90%;
	}
}

.transform {
	background-color: var(--white);
	padding-top: clamp(4rem, 8vw, 8rem);
	padding-bottom: clamp(4rem, 8vw, 8rem);
	overflow: hidden; /* Prevent horizontal scroll */
}

.transform * {
color: var(--black);
}

.transform__header-wrapper {
	margin-bottom: clamp(3rem, 6vw, 5rem);
}

.transform__header {
	text-align: center;
}

.transform__title {
	font-family: 'Instrument Serif', serif;
	font-weight: 400;
	line-height: 1.2;
	max-width: 700px;
	margin: 0 auto;
}

.transform__title em {
	font-style: italic;
	font-family: 'Instrument Serif', serif;
}

.transform__subtitle {
	font-size: clamp(1rem, 2vw, 1.5rem);
	color: var(--grey);
	max-width: 44ch;
	margin: 1rem auto 0;
}

.transform__slider-area {
	position: relative;
	max-width: 1400px; /* Control max width of slider + arrows */
	margin: 0 auto;
	padding: 0 60px; /* Space for desktop arrows */
}

.transform__slider {
	overflow: visible; /* Let slides be visible */
}

.transform-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: clamp(2rem, 5vw, 4rem);
}

.transform-card__images {
	position: relative;
	aspect-ratio: 1 / 1;
}

.transform-card__image-large {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 80%;
	height: 90%;
	overflow: hidden;
}

.transform-card__image-large img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.transform-card__image-small {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	aspect-ratio: 4 / 4;
	overflow: hidden;
}

.transform-card__image-small img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.transform-card__number {
	position: absolute;
	bottom: 1rem;
	right: 1.5rem;
	font-family: 'Instrument Serif', serif;
	font-size: clamp(4rem, 10vw, 12rem);
	color: var(--white);
	line-height: 1;
	font-weight: 400;
}

.transform-card__content {
	padding-left: clamp(1rem, 5vw, 3rem);
}

.transform-card__title {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
	margin: 0 0 1rem;
}

.transform-card__description {
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: var(--grey);
	line-height: 1.8;
	max-width: 40ch;
	margin: 0;
}

.transform__nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border: 1px solid #ddd;
	border-radius: 50%;
	background-color: var(--white);
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background-color 0.3s ease, border-color 0.3s ease;
	z-index: 10;
}
.transform__nav-btn:hover {
	background-color: var(--bg-light);
}
.transform__nav-btn.swiper-button-disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.transform__nav-btn--prev {
	left: 0;
}
.transform__nav-btn--next {
	right: 0;
}

.transform__pagination-mobile {
	display: none; /* Hidden on desktop */
}


@media (max-width: 990px) {
	.transform__slider-area {
		padding: 0; /* Remove side padding */
	}
	.transform__nav {
		display: flex;
		justify-content: center;
		gap: 0.5rem;
		margin-bottom: 1.5rem;
	}
	.transform__nav-btn {
		position: static; /* Let them flow in the doc */
		transform: none;
	}
	.transform__pagination-mobile {
		display: block;
		text-align: center;
		font-size: 0.875rem;
		color: var(--grey);
		font-variant-numeric: tabular-nums;
		margin-top: 1.5rem;
	}
	 .transform__slider-area .transform__nav {
		order: -1; /* Move arrows above the slider */
	}
	 .transform__slider {
		 padding: 0 clamp(1.25rem, 5vw, 1.875rem); /* Add padding to slider itself */
	 }
}

@media (max-width: 768px) {
	.transform-card {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.transform-card__content {
		padding-left: 0;
		text-align: center;
	}
	.transform-card__description {
		margin: 0 auto;
	}
}

.stats {
	background-color: var(--white);
	padding-top: clamp(3rem, 6vw, 5rem);
	padding-bottom: clamp(3rem, 6vw, 5rem);
}

.stats * {
color: var(--black);
}

.stats__wrapper {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: clamp(2rem, 5vw, 4rem);
	border-top: 1px solid #e0e0e0;
	padding-top: clamp(3rem, 6vw, 4rem);
	padding-bottom: clamp(3rem, 6vw, 4rem);
}

.stats__group {
	display: flex;
	flex-direction: column;
}

.stats__title {
	font-size: clamp(1rem, 2vw, 1.5rem);
	font-weight: 500;
	margin: 0 0 2rem;
	color: var(--black);
	font-family: "Instrument Sans", sans-serif;
}

.stats__grid {
	display: grid;
	gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

.stats__grid--roi {
	grid-template-columns: repeat(3, 1fr);
}

.stat-item {
	text-align: left;
}

.stat-item__value {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 400;
	margin: 0;
	line-height: 1.1;
	white-space: nowrap;
}

.stat-item__label {
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	color: var(--grey);
	margin: 0.5rem 0 0;
	line-height: 1.5;
}



@media (max-width: 990px) {
	.stats__wrapper {
		grid-template-columns: 1fr;
	}
	.stats__grid--roi {
		grid-template-columns: repeat(2, 1fr);
	}
	.stats__grid--roi .stat-item:last-child {
		grid-column: 1 / -1; /* Make last item span full width */
		max-width: 50%; /* but don't let it be too wide */
	}
}

@media (max-width: 480px) {
	.stat-item__value {
		font-size: clamp(2rem, 12vw, 3rem);
	}
	.stats__grid--roi {
		grid-template-columns: 1fr;
	}
	 .stats__grid--roi .stat-item:last-child {
		max-width: 100%;
	}
}

.locations-map {
	background-color: var(--light-grey);
	padding-top: clamp(4rem, 8vw, 8rem);
	padding-bottom: clamp(4rem, 8vw, 8rem);
}

.locations-map * {
color: var(--black);
}

.locations-map__header {
	text-align: center;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.locations-map__title {
	font-family: 'Instrument Serif', serif;
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
}

.locations-map__title em {
	font-style: italic;
	font-family: 'Instrument Serif', serif;
}

.locations-map__subtitle {
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: var(--grey);
	margin: 1rem auto 0;
}

.locations-map__container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.locations-map__image {
	width: 100%;
	height: auto;
	user-select: none;
}

.location-pin {
	position: absolute;
	transform: translate(-50%, -50%); /* Center the pin on the coordinates */
	z-index: 2;
}

.location-card {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background-color: var(--white);
	padding: 0.75rem;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	width: max-content;
	max-width: 210px;
	border: 1px solid #f0f0f0;
}

.location-card__image {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.location-card__city {
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
	white-space: nowrap;
}

.location-card__description {
	font-size: 0.8rem;
	color: var(--grey);
	margin: 0.1rem 0 0;
	line-height: 1.4;
}

.locations-map__list {
	display: none; /* Hidden on desktop */
}


@media (max-width: 990px) {
	.location-card {
		display: none; /* Hide full cards on mobile map */
	}

	.location-pin {
		/* On mobile, pins become just the circular images */
		width: 32px;
		height: 32px;
		background-size: cover;
		background-position: center;
		border-radius: 50%;
		border: 2px solid var(--white);
		box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	}
	
	/* Set images for mobile pins */
	.location-pin:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1542491152-1c29e29335f4?q=80&w=100&auto=format&fit=crop'); }
	.location-pin:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1580744436952-4271134833a9?q=80&w=100&auto=format&fit=crop'); }
	.location-pin:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1518684079-3c830dcef090?q=80&w=100&auto=format&fit=crop'); }
	.location-pin:nth-child(4) { background-image: url('https://images.unsplash.com/photo-1594954845019-910a3a79d5a6?q=80&w=100&auto=format&fit=crop'); }
	.location-pin:nth-child(5) { background-image: url('https://images.unsplash.com/photo-1524293581274-1f3b261f5827?q=80&w=100&auto=format&fit=crop'); }


	.locations-map__list {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		margin-top: 2rem;
	}

	.location-list-item {
		display: flex;
		align-items: center;
		gap: 1rem;
		background-color: var(--bg-light);
		padding: 1rem;
		border-radius: 12px;
	}

	.location-list-item img {
		width: 50px;
		height: 50px;
		border-radius: 50%;
		object-fit: cover;
	}
	.location-list-item h3 {
		margin: 0;
		font-size: 1.1rem;
	}
	.location-list-item p {
		margin: 0.25rem 0 0;
		color: var(--grey);
		font-size: 0.9rem;
	}
}

.experience {
	color: var(--black);
	padding-top: clamp(3rem, 6vw, 5rem);
	padding-bottom: clamp(3rem, 6vw, 5rem);
	position: relative;
	z-index: 5;
	background: var(--light-grey);
	/* This creates the overlap effect on desktop */
	//margin-top: -15vh;
	//margin-bottom: -20vh;
}

.experience__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding-bottom: 3rem;
}

.experience__title {
	font-family: 'Instrument Serif', serif;
	font-weight: 400;
	margin: 0;
	white-space: nowrap;
	margin-right: 4rem;
}

.experience__tabs {
	display: flex;
	gap: 2rem;
}

.experience__tab {
	background: none;
	border: none;
	padding: 0;
	font-family: inherit;
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	color: var(--grey);
	cursor: pointer;
	text-align: left;
	transition: color 0.3s ease;
}

.experience__tab strong {
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.experience__tab.is-active {
	color: var(--black);
}

.experience__slider-container {
	/* container for slider */
}

.experience__slider {
	width: 100%;
	aspect-ratio: 16 / 7;
	position: relative;
}

.experience__slider .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Scoped pagination styles */
.experience__slider .swiper-pagination {
	position: absolute;
	top: 2rem !important;
	bottom: auto !important;
	left: 50% !important;
	transform: translateX(-50%);
	width: auto !important;
	z-index: 10;
}

.experience__slider .swiper-pagination-bullet {
	background-color: rgba(255, 255, 255, 0.7);
	width: 10px;
	height: 10px;
	opacity: 1;
	transition: background-color 0.3s ease;
}

.experience__slider .swiper-pagination-bullet-active {
	background-color: var(--black);
	border: 1px solid var(--black);
}


@media (max-width: 990px) {
	.experience {
		/* Remove the overlap on mobile */
		margin-top: 0;
		margin-bottom: 0;
	}

	.experience__header {
		flex-direction: column;
		align-items: flex-start;
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 2rem;
	}

	.experience__title {
		margin-bottom: 1.5rem;
	}
	
	.experience__tabs {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem 1rem;
		width: 100%;
		padding-bottom: 2rem;
		border-bottom: 1px solid #e0e0e0;
	}

	.experience__slider {
		aspect-ratio: 16 / 9;
	}

	.experience__slider .swiper-pagination {
		position: static;
		transform: none;
		margin-top: 1.5rem;
		padding-bottom: 0 !important;
		text-align: center;
	}

	.experience__slider .swiper-pagination-bullet {
		background-color: #ccc;
	}

	.experience__slider .swiper-pagination-bullet-active {
		background-color: var(--black);
		border: none;
	}
}

@media (max-width: 480px) {
	.experience__slider {
		aspect-ratio: 4 / 3;
	}

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

.membership {
	background-color: var(--black);
	padding-top: clamp(4rem, 8vw, 8rem);
	padding-bottom: clamp(4rem, 8vw, 8rem);
}

.membership__header {
	text-align: center;
	margin: 0 auto clamp(3rem, 6vw, 5rem);
	max-width: 600px;
}

.membership__title {
	font-family: 'Instrument Serif', serif;
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
}

.membership__title em {
	font-style: italic;
	font-family: 'Instrument Serif', serif;
}

.membership__subtitle {
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: var(--grey);
	margin: 1rem 0 0;
	line-height: 1.6;
}

.membership__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(2rem, 4vw, 3rem) clamp(1rem, 5vw, 4rem);
	max-width: 900px;
	margin: 0 auto;
}

.membership__item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.membership__icon {
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.membership__icon svg {
	width: clamp(2rem, 4vw, 4rem);
	height: clamp(2rem, 4vw, 4rem);
	color: var(--white);
}

.membership__item-title {
	font-size: clamp(1.5rem, 2vw, 2.25rem);
	font-weight: 500;
	margin: 0 0 0.5rem;
}

.membership__item-description {
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	color: var(--grey);
	line-height: 1.5;
	margin: 0;
}


@media (max-width: 768px) {
	.membership__grid {
		grid-template-columns: 1fr;
	}
}

.process {
	background-color: var(--light-bg);
	padding: clamp(4rem, 8vw, 8rem) 0;
}

.process__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 2.5rem;
}

.process__title {
	font-family: 'Instrument Serif', serif;
	font-weight: 400;
	margin: 0;
	color: var(--black);
}

.process__navigation {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.process__pagination {
	font-weight: 500;
	color: var(--grey);
}

.process__nav-buttons {
	display: flex;
	gap: 0.5rem;
}

.process__nav-button {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid #ddd;
	background-color: transparent;
	color: var(--black);
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background-color 0.3s, border-color 0.3s;
}

.process__nav-button:hover {
	background-color: var(--white);
	border-color: #ccc;
}
.process__nav-button.swiper-button-disabled {
	opacity: 0.5;
	cursor: not-allowed;
	background-color: transparent;
}

.process-card {
	background-color: var(--card-bg);
	padding: 2rem;
	border-radius: 12px;
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	height: 100%;
}

.process-card__number {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(4rem, 3.5146rem + 2.0712vw, 6rem);
	color: var(--black);
	line-height: 1;
}

.process-card__title {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(1.5rem, 1.318rem + 0.7767vw, 2.25rem);
	font-weight: 400;
	margin: 0 0 0.5rem;
	color: var(--black);
}

.process-card__description {
	color: var(--grey);
	margin: 0;
}

.process-card__description a {
	color: var(--black);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.process__footer {
	text-align: center;
	color: var(--grey);
	font-size: clamp(1.5rem, 1.1359rem + 1.5534vw, 3rem);
	max-width: 900px;
	margin: 0 auto;
	margin-top: 6rem;
}

.process__footer strong {
	font-weight: 500;
}

.process__footer em {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
}


@media (max-width: 767px) {
	.process__navigation {
		display: none; /* Hide slider nav on mobile */
	}

	/* Styles for mobile list view */
	.process__slider {
		overflow: visible;
	}
	
	.process .swiper-wrapper {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	.process .swiper-slide {
		width: 100% !important;
		margin-right: 0 !important;
	}
}

.security {
	background-color: var(--black);
	padding: clamp(4rem, 8vw, 8rem) 0;
	position: relative;
	overflow: hidden;
}

.security__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
	background-repeat: repeat;
	opacity: 0.1;
	z-index: 1;
}

.security__background::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle, transparent 0%, var(--black) 80%);
}

.security__wrapper {
	position: relative;
	z-index: 2;
}

.security__header {
	text-align: center;
	margin: 0 auto clamp(3rem, 6vw, 4rem);
}

.security__title {
	font-family: 'Instrument Serif', serif;
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
}

.security__title em {
	font-style: italic;
	font-family: 'Instrument Serif', serif;
}

.security__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
	margin: 0 auto;
}

.security__column-title {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(2.5rem, 2.3786rem + 0.5178vw, 3rem);
	font-weight: 400;
	margin: 0 0 2rem 0;
	padding-bottom: 1rem;
}

.security__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.security__item {
	display: flex;
	align-items: flex-start;
	gap: 2.5rem;
}

.security__icon {
	flex-shrink: 0;
	width:clamp(2rem, 1.5146rem + 2.0712vw, 4rem);
	height: clamp(2rem, 1.5146rem + 2.0712vw, 4rem);
	display: flex;
	justify-content: center;
	align-items: center;
}

.security__icon svg {
	width: 100%;
	stroke: var(--white);
	stroke-width: 1.5;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.security__item-title {
	font-size: clamp(1.875rem, 1.784rem + 0.3883vw, 2.25rem);
	font-weight: 500;
	margin: 0 0 0.25rem;
}

.security__item-description {
	font-size: 1rem;
	color: var(--grey);
	line-height: 1.5;
	margin: 0;
}


@media (max-width: 768px) {
	.security__grid {
		grid-template-columns: 1fr;
	}
}

.guarantee {
	background-color: var(--white);
	padding: clamp(4rem, 8vw, 8rem) 0;
}

.guarantee__header {
	margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.guarantee__title {
	font-family: 'Instrument Serif', serif;
	font-weight: 400;
	line-height: 1.1;
	margin: 0;
	color: var(--black);
}

.guarantee__title em {
	font-style: italic;
	font-family: 'Instrument Serif', serif;
}

.guarantee__subtitle {
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: var(--grey);
	margin: 1rem 0 0;
	line-height: 1.6;
}

.guarantee__content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(2rem, 4vw, 3rem) clamp(2rem, 8vw, 6rem);
	margin: 0 auto;
}

.guarantee__column-title {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 400;
	margin: 0 0 2rem 0;
	color: var(--black);
}

.guarantee__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.guarantee__list li {
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: 1.6;
	color: var(--grey);
}

.guarantee__list strong {
	font-weight: 500;
	color: var(--black);
}

.guarantee__footer {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(2rem, 8vw, 6rem);
	margin: clamp(4rem, 8vw, 6rem) auto 0;
	padding-top: clamp(2rem, 4vw, 3rem);
	border-top: 1px solid #eee;
}

.guarantee__partner {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.guarantee__partner p {
	margin: 0;
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	color: var(--grey);
	line-height: 1.5;
}

.guarantee__partner-logo--bazaar {
	height: 40px;
}
.guarantee__partner-logo--pwc {
	height: 32px;
}



@media (max-width: 768px) {
	.guarantee__content {
		grid-template-columns: 1fr;
	}
	.guarantee__footer {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

.chat-rooms {
	background-color: var(--light-grey);
	padding-top: clamp(4rem, 8vw, 8rem);
	overflow: hidden;
}

.chat-rooms__wrapper {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.chat-rooms__content {
	flex: 1;
	min-width: 50%;
}

.chat-rooms__title {
	font-family: 'Instrument Serif', serif;
	font-weight: 400;
	line-height: 1.1;
	margin: 0 0 1rem;
	color: var(--black);
}

.chat-rooms__title em {
	font-style: italic;
	font-family: 'Instrument Serif', serif;
}

.chat-rooms__subtitle {
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: var(--grey);
	margin: 0 0 2.5rem;
	line-height: 1.6;
	max-width: 450px;
}

.chat-rooms__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
}

.chat-rooms__tag {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 99px;
	background-color: var(--white);
	color: #B67D29;
	text-decoration: none;
	font-weight: 500;
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	transition: background-color 0.3s;
}

.chat-rooms__tag:hover {
	background-color: #e9e9e9;
}

.chat-rooms__tag-more {
	display: inline-flex;
	align-items: center;
	color: var(--grey);
	font-weight: 500;
	font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.chat-rooms__button {
	display: inline-block;
	background: linear-gradient(to right, #cdaa76, #b18e5b);
	color: var(--white);
	padding: 1.25rem 2.5rem;
	text-decoration: none;
	font-weight: 500;
	text-transform: uppercase;
	font-size: clamp(0.875rem, 0.125vw + 0.85rem, 1rem);
	letter-spacing: 0.05em;
	border: none;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.chat-rooms__button:hover {
	transform: scale(1.05);
}

.chat-rooms__image-container {
	flex: 1;
	display: flex;
	justify-content: center;
}

.chat-rooms__image {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	max-height: 70vh;
}


@media (max-width: 990px) {
	.chat-rooms__wrapper {
		flex-direction: column;
		text-align: center;
	}
	.chat-rooms__subtitle {
		margin-left: auto;
		margin-right: auto;
	}
	.chat-rooms__tags {
		justify-content: center;
	}
	.chat-rooms__image-container {
		margin-top: 3rem;
	}
}

.mobile-app {
	background-color: var(--black);
	position: relative;
	overflow: hidden;
	min-height: 90vh;
	display: flex;
	align-items: center;
}

.mobile-app__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	z-index: 1;
}

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

.mobile-app__wrapper {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	min-height: 90vh;
}

.mobile-app__content {
	flex-basis: 50%;
	padding-bottom: 5rem; /* Space for the phone image on mobile */
}

.mobile-app__title {
	font-family: 'Instrument Serif', serif;
	font-weight: 400;
	line-height: 1.1;
	margin: 0 0 1.5rem;
}

.mobile-app__title em {
	font-style: italic;
	font-family: 'Instrument Serif', serif;
}

.mobile-app__subtitle {
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: var(--grey);
	margin: 0 0 2.5rem;
	line-height: 1.6;
	max-width: 400px;
}

.mobile-app__stores {
	display: flex;
	gap: 1rem;
}

.mobile-app__store-button img {
	height: 48px;
	width: auto;
	transition: opacity 0.3s;
}

.mobile-app__store-button:hover img {
	opacity: 0.8;
}

.mobile-app__image-container {
	flex-basis: 50%;
	display: flex;
	justify-content: center;
	align-self: flex-end;
}

.mobile-app__phone-image {
	max-width: 80%;
	height: auto;
}


@media (max-width: 990px) {
	.mobile-app {
		min-height: auto;
		padding: clamp(4rem, 8vw, 6rem) 0 0;
	}
	 .mobile-app__wrapper {
		flex-direction: column;
		text-align: center;
		min-height: auto;
	}
	.mobile-app__content {
		padding-bottom: 3rem;
	}
	.mobile-app__subtitle {
		margin-left: auto;
		margin-right: auto;
	}
	.mobile-app__stores {
		justify-content: center;
	}
	.mobile-app__phone-image {
		max-width: 60%;
		margin-top: 2rem;
	}
}

.button--secondary {
	background: transparent;
	color: var(--white);
	border-color: var(--input-border);
}
.button--secondary:hover {
	background: var(--white);
	color: var(--black);
	border-color: var(--white);
}

/* --- JOURNEY-FORM SECTION STYLES --- */
.journey-form {
	background-color: var(--black);
	padding: clamp(4rem, 8vw, 8rem) 0;
}

.journey-form__header {
	text-align: center;
	margin-bottom: 3rem;
}

.journey-form__title {
	font-family: 'Instrument Serif', serif;
	font-weight: 400;
	margin: 0 0 1rem;
}

.journey-form__subtitle {
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: var(--grey);
	max-width: 450px;
	margin: 0 auto;
	line-height: 1.6;
}

/* --- FORM STYLES --- */
.form-step {
	display: none;
}
.form-step.active {
	display: block;
}

.form-step__title {
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--grey);
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--input-border);
}

.feedback-form {
max-width: 700px;
margin: 0 auto;
}

.form-step__grid { /* Apply grid to the original class as requested */
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}
.form-group { position: relative; }
.form-group_2x { grid-column: 1 / -1; }
.form-input {
	width: 100%;
	padding: 1rem;
	border: 1px solid var(--input-border);
	background-color: transparent;
	color: var(--white);
	font-size: 1rem;
	transition: border-color 0.3s ease;
	border-radius: 0;
}
.form-input:focus {
	outline: none;
	border-color: var(--gold);
}
.form-group label {
	position: absolute;
	top: 1rem;
	left: 1rem;
	color: var(--grey);
	pointer-events: none;
	transition: all 0.3s ease;
}
.form-input:focus + label,
.form-input:not(:placeholder-shown) + label,
.form-input:valid + label {
	top: -0.75rem;
	left: 0.75rem;
	font-size: 0.75rem;
	color: var(--gold);
	background: var(--black);
	padding: 0 0.25rem;
}

select.form-input {
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999999' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1em;
	cursor: pointer;
}
select.form-input:focus {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23bda06c' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
select.form-input:required:invalid { color: var(--grey); }
option[value=""][disabled] { display: none; }
option { color: var(--black); background-color: var(--white); }
textarea.form-input { min-height: 120px; resize: vertical; }

.form-navigation {
	grid-column: 1 / -1;
	display: flex;
	justify-content: flex-end;
	gap: 1rem;
	margin-top: 2rem;
	border-top: 1px solid var(--input-border);
	padding-top: 2rem;
}
.form-result { grid-column: 1 / -1; text-align: center; font-size: 1.1rem; color: #5cb85c; display: none; }

.form-group_consent { display: flex; align-items: flex-start; gap: 10px; }
.form-group_consent input[type="checkbox"] { margin-top: 5px; flex-shrink: 0; }
.form-group_consent .consent-label {
	position: static;
	font-size: 0.8rem;
	color: var(--grey);
	line-height: 1.5;
	text-align: left;
	pointer-events: auto;
}
.form-group_consent .consent-label a { color: var(--white); text-decoration: underline; }
.form-group_consent .consent-label a:hover { text-decoration: none; }

@media (max-width: 768px) {
	.form-step__grid, .feedback-form {
		grid-template-columns: 1fr;
	}
	.form-group_2x {
		grid-column: 1 / 1; /* Reset for mobile */
	}
	.form-navigation {
		justify-content: space-between;
	}
}
/* End */
/* /css/style.css?176952702152487 */
