/* ==========================================================================
   BLUE SKIN LASER - CENTRAL COMPONENTS STYLESHEET
   ========================================================================== */

/* Fluent Form Styling Overrides
   ========================================================================== */
#form-area, 
.client-form-card {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
}

.fluentform, 
.client-form-panel .fluentform {
	width: 100% !important;
}

.fluentform .ff-el-form-label, 
.client-form-panel .fluentform .ff-el-form-label {
	display: none !important;
}

.fluentform input[type="text"],
.fluentform input[type="email"],
.fluentform input[type="tel"],
.fluentform select,
.fluentform textarea,
.fluentform .ff-el-form-control,
.client-form-panel .fluentform input[type="text"],
.client-form-panel .fluentform input[type="email"],
.client-form-panel .fluentform input[type="tel"],
.client-form-panel .fluentform select,
.client-form-panel .fluentform textarea,
.client-form-panel .fluentform .ff-el-form-control {
	width: 100% !important;
	min-height: 54px !important;
	background-color: rgba(1, 6, 11, 0.88) !important;
	border: 1px solid rgba(255, 255, 255, 0.14) !important;
	border-radius: 14px !important;
	color: #ffffff !important;
	font-family: inherit !important;
	font-size: 1rem !important;
	padding: 14px 18px !important;
	box-shadow: none !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.fluentform textarea,
.client-form-panel .fluentform textarea {
	min-height: 132px !important;
	resize: vertical;
}

.fluentform input::placeholder,
.fluentform textarea::placeholder,
.client-form-panel .fluentform input::placeholder,
.client-form-panel .fluentform textarea::placeholder {
	color: rgba(183, 193, 202, 0.74) !important;
}

.fluentform input:focus,
.fluentform select:focus,
.fluentform textarea:focus,
.fluentform .ff-el-form-control:focus,
.client-form-panel .fluentform input:focus,
.client-form-panel .fluentform select:focus,
.client-form-panel .fluentform textarea:focus,
.client-form-panel .fluentform .ff-el-form-control:focus {
	border-color: var(--page-accent, #00bfff) !important;
	box-shadow: 0 0 10px var(--page-accent-glow, rgba(0, 191, 255, 0.22)) !important;
	outline: none !important;
}

.fluentform select,
.client-form-panel .fluentform select {
	cursor: pointer !important;
	appearance: none !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 18px center !important;
	background-size: 16px !important;
	padding-right: 42px !important;
}

/* Submit Button Style */
.fluentform .ff-btn-submit,
.client-form-panel .fluentform .ff-btn-submit {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 56px !important;
	padding: 0 34px !important;
	border-radius: 999px !important;
	font-family: inherit !important;
	font-size: 0.92rem !important;
	font-weight: 800 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	border: 1px solid var(--btn-border, rgba(126, 205, 255, 0.74)) !important;
	background: var(--btn-bg, linear-gradient(180deg, #96d2ff 0%, #6cbcff 28%, #4e98ee 70%, #8ecbff 100%)) !important;
	color: #081018 !important;
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.44),
		inset 0 -10px 18px rgba(23, 84, 165, 0.22),
		0 0 0 1px rgba(97, 184, 255, 0.16),
		0 14px 26px var(--page-accent-glow, rgba(0, 102, 204, 0.16)) !important;
	cursor: pointer !important;
	transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease !important;
	margin-top: 10px !important;
}

.fluentform .ff-btn-submit:hover,
.client-form-panel .fluentform .ff-btn-submit:hover {
	transform: scale(1.01) !important;
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.44),
		inset 0 -10px 18px rgba(23, 84, 165, 0.22),
		0 0 0 1px rgba(97, 184, 255, 0.26),
		0 18px 36px var(--page-accent-glow, rgba(0, 102, 204, 0.28)) !important;
}

.fluentform .ff-btn-submit:active,
.client-form-panel .fluentform .ff-btn-submit:active {
	transform: scale(0.99) !important;
}

.fluentform .ff-el-group,
.client-form-panel .fluentform .ff-el-group {
	margin-bottom: 16px !important;
}

.fluentform .ff-t-container,
.client-form-panel .fluentform .ff-t-container {
	margin: 0 !important;
	padding: 0 !important;
}


/* Clinical Mechanism Steps
   ========================================================================== */
.clinical-mechanism-steps {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.clinical-step-card {
	display: flex;
	gap: 20px;
	background: rgba(7, 19, 30, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-left: 3px solid var(--page-accent, #00bfff);
	border-radius: 12px;
	padding: 20px 24px;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	text-align: left;
}

.clinical-step-card:hover {
	background: rgba(7, 19, 30, 0.95);
	border-color: var(--page-accent-glow, rgba(0, 191, 255, 0.25));
	transform: translateX(6px);
}

.clinical-step-num {
	font-family: "Bebas Neue", "Oswald", sans-serif;
	font-size: 2rem;
	color: var(--page-accent, #00bfff);
	line-height: 1;
	font-weight: 700;
}

.clinical-step-info h4 {
	font-family: "Bebas Neue", "Oswald", sans-serif;
	font-size: 1.3rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #ffffff;
	margin: 0 0 6px;
}

.clinical-step-info p {
	font-size: 1.02rem;
	line-height: 1.6;
	color: #b7c1ca;
	margin: 0;
}

.clinical-step-info .clinical-hours-list {
	margin-top: 10px;
	padding-left: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.clinical-step-info .clinical-hours-list li {
	font-size: 0.96rem;
	color: #ffffff;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	padding-bottom: 4px;
}

.clinical-step-info .clinical-hours-list li span {
	color: var(--page-accent, #00bfff);
	font-weight: bold;
}


/* Ticker / Marquee
   ========================================================================== */
.client-landing__ticker {
	overflow: hidden;
	width: 100%;
	background: #07131e;
	border-top: 1px solid var(--page-accent-glow, rgba(0, 191, 255, 0.25));
	border-bottom: 1px solid var(--page-accent-glow, rgba(0, 191, 255, 0.25));
	padding: 16px 0;
	display: flex;
	margin-bottom: 40px;
}

.client-landing__ticker-track {
	display: flex;
	width: max-content;
	animation: bsl_marquee 30s linear infinite;
}

.client-landing__ticker-group {
	display: flex;
	align-items: center;
	gap: 60px;
	padding-right: 60px;
	white-space: nowrap;
}

.client-landing__ticker-group span {
	font-family: "Bebas Neue", sans-serif;
	font-size: 1.15rem;
	letter-spacing: 0.05em;
	color: #ffffff;
	text-transform: uppercase;
}

.client-landing__ticker-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--page-accent, #00bfff);
	display: inline-block;
	box-shadow: 0 0 10px var(--page-accent, #00bfff);
}

@keyframes bsl_marquee {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-50%, 0, 0);
	}
}


/* Package Cards
   ========================================================================== */
.client-landing__packages-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	max-width: 1200px;
	margin: 0 auto;
}

.client-landing__package-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 430px;
	border-radius: 12px;
	overflow: hidden;
	background: #07131e;
	border: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 22px 45px rgba(0, 0, 0, 0.42);
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.client-landing__package-card:hover {
	transform: translateY(-8px);
	border-color: var(--page-accent-glow, rgba(0, 191, 255, 0.45));
}

.client-landing__package-image-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.client-landing__package-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-landing__package-card:hover .client-landing__package-image-wrap img {
	transform: scale(1.06);
}

.client-landing__package-image-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,
			rgba(1, 6, 11, 0.05) 0%,
			rgba(1, 6, 11, 0.48) 55%,
			rgba(1, 6, 11, 0.95) 100%);
}

.client-landing__package-badge {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 5;
	background: var(--page-accent, #00bfff);
	color: #01060b;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 999px;
	box-shadow: 0 4px 12px var(--page-accent-glow, rgba(0, 191, 255, 0.28));
}

.client-landing__package-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 24px 28px 28px;
}

.client-landing__package-content h3 {
	font-family: "Bebas Neue", "Oswald", sans-serif;
	font-size: 1.8rem;
	line-height: 1.1;
	text-transform: uppercase;
	color: #ffffff;
	margin: 0 0 10px;
	letter-spacing: 0.02em;
}

.client-landing__package-desc {
	font-size: 1.02rem;
	line-height: 1.5;
	color: #b7c1ca;
	margin: 0 0 20px;
	flex-grow: 1;
}

.client-landing__package-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	gap: 16px;
}

.client-landing__package-price-wrap {
	display: flex;
	flex-direction: column;
}

.client-landing__package-price-label {
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #7f8b96;
	margin-bottom: 2px;
}

.client-landing__package-price {
	color: var(--page-accent, #00bfff);
	font-family: "Bebas Neue", "Oswald", sans-serif;
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1;
}

.client-landing__package-footer .latepoint-book-button-wrapper,
.client-landing__package-footer .client-landing__cta-popup-wrap,
.client-landing__package-footer button,
.client-landing__package-footer a {
	width: auto !important;
}

.client-landing__package-footer .latepoint-book-button,
.client-landing__package-footer .client-landing__button,
.client-landing__package-footer button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: var(--btn-bg, linear-gradient(180deg, #96d2ff 0%, #6cbcff 28%, #4e98ee 70%, #8ecbff 100%)) !important;
	border: 1px solid var(--btn-border, rgba(126, 205, 255, 0.74)) !important;
	color: #081018 !important;
	border-radius: 999px !important;
	padding: 14px 24px !important;
	font-family: "Inter", sans-serif !important;
	font-size: 0.92rem !important;
	font-weight: 800 !important;
	letter-spacing: 0.05em !important;
	text-transform: uppercase !important;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.44),
		0 8px 16px var(--page-accent-glow, rgba(0, 102, 204, 0.12)) !important;
	cursor: pointer !important;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
	text-decoration: none !important;
	height: auto !important;
	line-height: 1.2 !important;
}

.client-landing__package-footer .latepoint-book-button:hover,
.client-landing__package-footer button:hover {
	transform: scale(1.03) !important;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.44),
		0 12px 24px var(--page-accent-glow, rgba(0, 102, 204, 0.22)) !important;
}


/* Membership Cards
   ========================================================================== */
.client-landing__membership-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(180px, 0.55fr);
	align-items: stretch;
	min-height: 250px;
	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--page-accent-glow, rgba(0, 191, 255, 0.1)) 0%, rgba(7, 19, 30, 0.96) 46%, rgba(7, 19, 30, 0.98) 100%);
	border: 1px solid var(--page-accent-glow, rgba(0, 191, 255, 0.2));
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.client-landing__membership-copy {
	display: grid;
	align-content: center;
	gap: 14px;
	padding: 28px 28px 30px;
}

.client-landing__membership-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--page-accent-glow, rgba(0, 191, 255, 0.12));
	border: 1px solid var(--page-accent-glow, rgba(0, 191, 255, 0.22));
	color: var(--page-accent-soft, #8fd0ff);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.client-landing__membership-card h3 {
	margin: 0;
	font-size: clamp(1.7rem, 2vw, 2.2rem);
	line-height: 0.96;
	color: #ffffff;
}

.client-landing__membership-card p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
}

.client-landing__membership-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 4px;
}

.client-landing__membership-price-wrap {
	display: grid;
	gap: 2px;
}

.client-landing__membership-price-label {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.62);
}

.client-landing__membership-price {
	font-family: "Bebas Neue", "Oswald", sans-serif;
	font-size: clamp(2.15rem, 3vw, 2.7rem);
	line-height: 0.9;
	color: #ffffff;
}

.client-landing__membership-card .client-landing__button {
	min-height: 50px;
	padding: 0 22px;
	font-size: 0.84rem;
}

.client-landing__membership-card .client-landing__button,
.client-landing__membership-card .client-landing__button:link,
.client-landing__membership-card .client-landing__button:visited,
.client-landing__membership-card .client-landing__button:hover,
.client-landing__membership-card .client-landing__button:focus-visible,
.client-landing__membership-card .client-landing__button span {
	color: #ffffff !important;
}

.client-landing__membership-media {
	position: relative;
	min-height: 100%;
}

.client-landing__membership-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.client-landing__membership-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(7, 19, 30, 0.1) 0%, rgba(7, 19, 30, 0.3) 38%, rgba(7, 19, 30, 0.82) 100%);
}


/* Testimonials
   ========================================================================== */
.testimonials-section {
	display: none;
	background: #01060b;
	padding: 100px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	position: relative;
}

.testimonials-slider-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}

.testimonial-card {
	background: #07131e;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
	transform: translateY(-5px);
	border-color: var(--page-accent-glow, rgba(0, 191, 255, 0.3));
	box-shadow: 0 15px 40px var(--page-accent-glow, rgba(0, 191, 255, 0.05));
}

.testimonial-quote-icon {
	font-size: 3.5rem;
	line-height: 1;
	font-family: serif;
	color: var(--page-accent-glow, rgba(0, 191, 255, 0.1));
	position: absolute;
	top: 10px;
	left: 15px;
	pointer-events: none;
}

.testimonial-stars {
	color: #ffb703;
	display: flex;
	gap: 4px;
	margin-bottom: 16px;
}

.testimonial-text {
	font-size: 1.05rem;
	line-height: 1.6;
	color: #ffffff;
	margin-bottom: 24px;
	position: relative;
	z-index: 2;
}

.testimonial-author-info {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.testimonial-author-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--page-accent-glow, rgba(0, 191, 255, 0.1));
	color: var(--page-accent, #00bfff);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.95rem;
}

.testimonial-author-meta {
	display: flex;
	flex-direction: column;
}

.testimonial-author-name {
	font-family: "Bebas Neue", "Oswald", sans-serif;
	font-size: 1.2rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #ffffff;
}

.testimonial-author-status {
	font-size: 0.85rem;
	color: #7f8b96;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}


/* Layouts & Grids
   ========================================================================== */
.clinical-split-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 64px;
	align-items: center;
}

.editorial-grid-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-top: 40px;
}

.treatment-areas-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 24px;
}

.treatment-area-chip {
	background: rgba(7, 19, 30, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 10px;
	padding: 16px 20px;
	font-family: "Bebas Neue", "Oswald", sans-serif;
	font-size: 1.2rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
}

.treatment-area-chip:hover {
	background: #07131e;
	border-color: var(--page-accent-glow, rgba(0, 191, 255, 0.35));
	box-shadow: 0 4px 12px var(--page-accent-glow, rgba(0, 191, 255, 0.08));
	transform: translateY(-2px);
}

.treatment-area-chip span {
	color: var(--page-accent, #00bfff);
	font-weight: 700;
}

.safety-metric-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 48px;
}

.safety-metric-card {
	background: rgba(7, 19, 30, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 12px;
	padding: 32px 24px;
	text-align: center;
	transition: all 0.3s ease;
}

.safety-metric-card:hover {
	background: rgba(7, 19, 30, 0.8);
	border-color: var(--page-accent-glow, rgba(0, 191, 255, 0.2));
}

.safety-icon-wrap {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--page-accent-glow, rgba(0, 191, 255, 0.08));
	color: var(--page-accent, #00bfff);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
}

.safety-metric-card h3 {
	font-family: "Bebas Neue", "Oswald", sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #ffffff;
	margin: 0 0 10px;
}

.safety-metric-card p {
	font-size: 0.88rem;
	line-height: 1.5;
	color: #ffffff;
	margin: 0;
}


/* Payment Grid
   ========================================================================== */
.client-landing__section--payment {
	position: relative;
	padding: 70px 0 80px;
	background: #01060b;
}

.client-landing__section--payment.payment-options--simple {
	padding: 40px 0 50px;
}

.client-landing__section--payment.payment-options--simple .client-landing__payment-head {
	margin-bottom: 30px;
}

.client-landing__section--payment.payment-options--simple .client-landing__payment-head::before,
.payment-options--simple .client-landing__payment-head::before {
	display: none !important;
	content: none !important;
	background: transparent !important;
	box-shadow: none !important;
}

.client-landing__section--payment::before,
.client-landing__section--payment::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(0, 191, 255, 0) 0%, var(--page-accent-glow, rgba(0, 191, 255, 0.4)) 50%, rgba(0, 191, 255, 0) 100%);
	box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

.client-landing__section--payment::before {
	top: 0;
}

.client-landing__section--payment::after {
	bottom: 0;
}

.client-landing__payment-head {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

.client-landing__payment-head::before {
	content: "";
	position: absolute;
	top: -74px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 6px;
	height: 6px;
	background: var(--page-accent, #00bfff);
	box-shadow: 0 0 10px var(--page-accent, #00bfff), 0 0 20px var(--page-accent, #00bfff);
}

.client-landing__section--payment .client-landing__section-title {
	margin-top: 18px;
	margin-bottom: 18px;
	font-size: clamp(1.8rem, 2.6vw, 2.6rem);
	text-align: center;
	filter: drop-shadow(0 0 15px var(--page-accent-glow, rgba(0, 191, 255, 0.15)));
}

.client-landing__payment-subtitle {
	font-size: clamp(1.05rem, 1.2vw, 1.15rem);
	color: var(--text-gray);
	letter-spacing: 0.02em;
	line-height: 1.6;
	max-width: 900px;
	margin: 0 auto !important;
	text-align: center !important;
	display: block;
}

.desktop-only {
	display: inline;
}

@media (max-width: 768px) {
	.desktop-only {
		display: none;
	}
}

.client-landing__payment-subtitle span {
	color: var(--page-accent, #00bfff);
	font-weight: 600;
}

.client-landing__payment-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	max-width: 1100px;
	margin: 0 auto;
}

.client-landing__payment-card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 120px;
	background: #030d17;
	border: 1px solid var(--page-accent-glow, rgba(0, 191, 255, 0.25));
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.client-landing__payment-card:hover {
	transform: translateY(-4px);
	border-color: var(--page-accent, #00bfff);
	box-shadow: 0 10px 30px var(--page-accent-glow, rgba(0, 191, 255, 0.15)), inset 0 0 20px var(--page-accent-glow, rgba(0, 191, 255, 0.05));
}

.client-landing__payment-logo {
	width: 100px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

.client-landing__payment-logo svg {
	width: 100%;
	height: auto;
	max-height: 38px;
}

.client-landing__payment-logo--klarna {
	display: flex;
	align-items: center;
	justify-content: center;
}

.klarna-text {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-weight: 600;
	font-size: 30px;
	color: #ffb3c7;
	letter-spacing: -0.5px;
	display: inline-block;
}

.client-landing__payment-logo--affirm {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 110px;
}

.client-landing__payment-logo--afterpay {
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	gap: 8px;
}

.afterpay-text {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-weight: 700;
	font-size: 22px;
	color: #b2fce4;
	letter-spacing: -0.5px;
	display: inline-block;
}

.client-landing__payment-glow {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 2px;
	background: var(--page-accent, #00bfff);
	box-shadow: 0 0 15px 6px var(--page-accent-glow, rgba(0, 191, 255, 0.5));
	opacity: 0.7;
	transition: opacity 0.3s ease, width 0.3s ease;
}

.client-landing__payment-card:hover .client-landing__payment-glow {
	opacity: 1;
	width: 70px;
}


/* Responsive Styles & Grid Layouts Overrides
   ========================================================================== */
@media (max-width: 1180px) {
	.clinical-split-grid {
		grid-template-columns: 1fr;
	}
	.testimonial-card {
		padding: 24px;
	}
}

@media (max-width: 1024px) {
	.client-landing__memberships-grid {
		grid-template-columns: 1fr;
	}

	.client-landing__membership-card {
		grid-template-columns: 1fr;
	}

	.client-landing__membership-media {
		min-height: 220px;
		order: -1;
	}

	.client-landing__packages-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}
}

@media (max-width: 991px) {
	.testimonials-slider-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.treatment-areas-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.safety-metric-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.client-landing__packages-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.client-landing__memberships-grid {
		gap: 18px;
		margin-bottom: 28px;
	}

	.client-landing__membership-copy {
		padding: 22px 20px 24px;
	}

	.client-landing__membership-card {
		position: relative;
	}

	.client-landing__membership-badge {
		position: absolute;
		top: 18px;
		left: 18px;
		z-index: 3;
	}

	.client-landing__membership-footer {
		align-items: stretch;
	}

	.client-landing__membership-card .client-landing__button {
		width: 100%;
		justify-content: center;
	}

	.client-landing__package-card {
		min-height: 420px;
	}

	.testimonials-slider-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.client-landing__payment-grid {
		grid-template-columns: repeat(6, 1fr) !important;
		gap: 16px;
		max-width: 600px;
	}

	.client-landing__payment-card {
		grid-column: span 2 !important;
	}

	.client-landing__payment-card:nth-child(4) {
		grid-column: 2 / span 2 !important;
	}

	.client-landing__payment-card:nth-child(5) {
		grid-column: 4 / span 2 !important;
	}

	.klarna-text {
		font-size: 24px;
	}

	.afterpay-text {
		font-size: 18px;
	}
}

@media (max-width: 576px) {
	.client-landing__payment-grid {
		gap: 12px;
		max-width: 480px;
	}

	.client-landing__payment-title {
		font-size: clamp(1.8rem, 6vw, 2.5rem);
	}

	.client-landing__payment-subtitle {
		font-size: 0.8rem;
		letter-spacing: 0.12em;
	}

	.client-landing__payment-head::before {
		top: -74px;
	}

	.klarna-text {
		font-size: 20px;
	}

	.afterpay-text {
		font-size: 15px;
	}

	.client-landing__payment-logo--afterpay svg {
		width: 18px !important;
		height: 18px !important;
	}
}

/* Dynamic Page Title Accent Utilities */
.client-landing .is-accent {
	color: var(--page-accent, #00bfff) !important;
	display: block !important;
	text-shadow: 0 0 15px var(--page-accent-glow, rgba(0, 191, 255, 0.35)) !important;
	-webkit-text-fill-color: var(--page-accent, #00bfff) !important;
}

