/**
 * Psytechno Design Kit
 * ---------------------------------------------------------------------------
 * Bespoke component + motion layer for the Elementor build.
 * Colour and type tokens read from the Elementor global kit first, so editing
 * Site Settings in Elementor re-skins these components automatically.
 */

:root {
	--psy-primary: var(--e-global-color-primary, #f40831);
	--psy-secondary: var(--e-global-color-secondary, #1e73be);
	--psy-ink: var(--e-global-color-accent, #0b1020);
	--psy-body: var(--e-global-color-text, #5a6478);
	--psy-dark: var(--e-global-color-psydark, #080d1c);
	--psy-light: var(--e-global-color-psylight, #f4f6fb);
	--psy-border: var(--e-global-color-psyborder, #e4e8f2);
	--psy-tint: var(--e-global-color-psytint, #fff1f3);

	--psy-primary-rgb: 244 8 49;
	--psy-secondary-rgb: 30 115 190;
	--psy-ink-rgb: 11 16 32;

	--psy-radius-xs: 10px;
	--psy-radius-sm: 14px;
	--psy-radius: 20px;
	--psy-radius-lg: 30px;

	--psy-shadow-sm: 0 6px 18px rgb(var(--psy-ink-rgb) / 6%);
	--psy-shadow: 0 18px 45px rgb(var(--psy-ink-rgb) / 9%);
	--psy-shadow-lg: 0 30px 70px rgb(var(--psy-ink-rgb) / 14%);

	--psy-ease: cubic-bezier(0.22, 0.8, 0.24, 1);
	--psy-speed: 0.45s;
}

/* ---------------------------------------------------------------------------
   1. Base + host-theme normalisation
   ------------------------------------------------------------------------ */

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	overflow-x: clip;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
}

figure {
	margin: 0;
}

/* Neutralise host-theme content constraints so Elementor controls the layout. */
.elementor-page .wp-site-blocks,
.elementor-page .entry-content,
.elementor-page .site-main {
	max-width: none;
	margin: 0;
	padding: 0;
}

.elementor-page .entry-header,
.elementor-page .wp-block-post-title,
.elementor-page .wp-block-template-part {
	display: none;
}

/* Visible keyboard focus everywhere (WCAG 2.4.7). */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
	outline: 3px solid var(--psy-primary);
	outline-offset: 3px;
	border-radius: 4px;
}

.psy-sr-only {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

/* ---------------------------------------------------------------------------
   2. Typography helpers
   ------------------------------------------------------------------------ */

/* Accent words inside headings: <em>word</em> */
.psy-h .elementor-heading-title em,
.psy-h .elementor-heading-title i {
	font-family: "Playfair Display", Georgia, serif;
	font-style: italic;
	font-weight: 400;
	letter-spacing: -0.01em;
	color: var(--psy-primary);
}

.psy-h--onDark .elementor-heading-title em,
.psy-h--onDark .elementor-heading-title i {
	color: #ff5f78;
}

.psy-h .elementor-heading-title mark {
	background: none;
	color: var(--psy-secondary);
}

/* Eyebrow / section label pill */
.psy-eyebrow .elementor-heading-title {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	padding: 0.5em 1.1em;
	border: 1px solid rgb(var(--psy-primary-rgb) / 18%);
	border-radius: 100px;
	background: rgb(var(--psy-primary-rgb) / 7%);
	color: var(--psy-primary);
	line-height: 1.4;
}

.psy-eyebrow .elementor-heading-title::before {
	content: "";
	inline-size: 7px;
	block-size: 7px;
	border-radius: 50%;
	background: currentcolor;
	box-shadow: 0 0 0 4px rgb(var(--psy-primary-rgb) / 18%);
	animation: psy-pulse 2.4s var(--psy-ease) infinite;
}

.psy-eyebrow--onDark .elementor-heading-title {
	border-color: rgb(255 255 255 / 16%);
	background: rgb(255 255 255 / 8%);
	color: #fff;
}

@keyframes psy-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 3px rgb(var(--psy-primary-rgb) / 22%);
	}
	50% {
		box-shadow: 0 0 0 8px rgb(var(--psy-primary-rgb) / 0%);
	}
}

/* Balanced headline wrapping */
.psy-h .elementor-heading-title {
	text-wrap: balance;
}

.psy-lead p {
	text-wrap: pretty;
}

/* ---------------------------------------------------------------------------
   3. Surfaces
   ------------------------------------------------------------------------ */

.psy-dark,
.psy-dark .elementor-heading-title,
.psy-dark p,
.psy-dark li {
	color: #fff;
}

.psy-dark .elementor-widget-text-editor,
.psy-dark .psy-muted p {
	color: rgb(255 255 255 / 72%);
}

/* Soft radial glow used behind dark sections */
.psy-glow::after {
	content: "";
	position: absolute;
	inset-block-start: -30%;
	inset-inline-start: 50%;
	translate: -50% 0;
	inline-size: min(1100px, 120%);
	aspect-ratio: 1;
	background: radial-gradient(circle, rgb(var(--psy-primary-rgb) / 22%) 0%, transparent 62%);
	pointer-events: none;
	z-index: 0;
}

.psy-glow > .e-con-inner,
.psy-glow > .elementor-element {
	position: relative;
	z-index: 1;
}

/* Faint dot grid */
.psy-grid-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgb(255 255 255 / 8%) 1px, transparent 1px);
	background-size: 26px 26px;
	mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
	pointer-events: none;
}

/* Notched inset panel (matches the reference theme's cut-out corners) */
.psy-notch {
	--psy-notch-size: 34px;
	position: relative;
}

.psy-notch::before,
.psy-notch::after {
	content: "";
	position: absolute;
	inline-size: var(--psy-notch-size);
	block-size: var(--psy-notch-size);
	background: radial-gradient(at 100% 100%, transparent 70%, #fff 71%);
	pointer-events: none;
}

.psy-notch::before {
	inset-block-start: calc(var(--psy-notch-size) * -1 + 1px);
	inset-inline-start: 0;
}

.psy-notch::after {
	inset-block-end: 0;
	inset-inline-end: calc(var(--psy-notch-size) * -1 + 1px);
	background: radial-gradient(at 0 0, transparent 70%, #fff 71%);
}

/* ---------------------------------------------------------------------------
   4. Header / navigation
   ------------------------------------------------------------------------ */

.psy-topbar a {
	color: inherit;
	text-decoration: none;
}

/* Liquid glass (designali-in liquid-glass-button, adapted): translucent
   frosted bar, refraction edge and a specular sheen that follows the mouse
   (site-fx.js sets --psy-mx). */
.psy-header {
	margin-block-end: -84px;
	backdrop-filter: blur(18px) saturate(1.8);
	-webkit-backdrop-filter: blur(18px) saturate(1.8);
	border-bottom: 1px solid rgb(255 255 255 / 55%) !important;
	box-shadow: 0 8px 32px rgb(11 16 32 / 8%);
}

.psy-header::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(
			300px 130px at var(--psy-mx, 50%) 0%,
			rgb(255 255 255 / 80%),
			rgb(255 255 255 / 0%) 70%
		),
		radial-gradient(
			420px 160px at var(--psy-mx, 50%) 0%,
			rgb(var(--psy-primary-rgb) / 6%),
			transparent 75%
		);
	pointer-events: none;
}

.psy-header > .e-con-inner {
	position: relative;
	z-index: 1;
}

.psy-header.elementor-sticky--effects {
	background-color: rgb(255 255 255 / 78%) !important;
	box-shadow: 0 10px 36px rgb(11 16 32 / 12%);
}

.psy-nav .elementor-item {
	font-weight: 600;
	letter-spacing: -0.01em;
}

.psy-nav .elementor-nav-menu--main .elementor-item::after {
	content: "";
	position: absolute;
	inset-block-end: 6px;
	inset-inline-start: 50%;
	inline-size: 0;
	block-size: 2px;
	border-radius: 2px;
	background: var(--psy-primary);
	translate: -50% 0;
	transition: inline-size 0.35s var(--psy-ease);
}

.psy-nav .elementor-nav-menu--main .elementor-item:hover::after,
.psy-nav .elementor-nav-menu--main .elementor-item.elementor-item-active::after {
	inline-size: 22px;
}

.psy-nav .elementor-nav-menu--dropdown {
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgb(11 16 32 / 16%);
	backdrop-filter: blur(18px) saturate(1.8);
	-webkit-backdrop-filter: blur(18px) saturate(1.8);
	border: 1px solid rgb(255 255 255 / 55%);
}

.psy-nav .elementor-nav-menu--main:not(.elementor-nav-menu--canvas) .elementor-nav-menu--dropdown,
.psy-nav .elementor-nav-menu__container.elementor-nav-menu--dropdown {
	backdrop-filter: blur(18px) saturate(1.8);
	-webkit-backdrop-filter: blur(18px) saturate(1.8);
	border: 1px solid rgb(255 255 255 / 55%);
	box-shadow: 0 24px 60px rgb(11 16 32 / 16%);
}

/* ---------------------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------------------ */

.psy-btn .elementor-button {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	transition: color var(--psy-speed) var(--psy-ease), transform var(--psy-speed) var(--psy-ease),
		box-shadow var(--psy-speed) var(--psy-ease);
}

.psy-btn .elementor-button::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--psy-ink);
	translate: 0 101%;
	border-radius: inherit;
	transition: translate var(--psy-speed) var(--psy-ease);
}

.psy-btn .elementor-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgb(var(--psy-primary-rgb) / 26%);
}

.psy-btn .elementor-button:hover::before {
	translate: 0 0;
}

.psy-btn--ghost .elementor-button::before {
	background: var(--psy-primary);
}

.psy-btn--ghostLight .elementor-button::before {
	background: #fff;
}

.psy-btn--ghost .elementor-button:hover {
	box-shadow: 0 12px 28px rgb(var(--psy-ink-rgb) / 18%);
}

.psy-btn .elementor-button-icon {
	transition: translate 0.35s var(--psy-ease);
}

.psy-btn .elementor-button:hover .elementor-button-icon {
	translate: 4px 0;
}

/* ---------------------------------------------------------------------------
   6. Cards
   ------------------------------------------------------------------------ */

.psy-card {
	position: relative;
	overflow: hidden;
	transition: transform var(--psy-speed) var(--psy-ease), box-shadow var(--psy-speed) var(--psy-ease),
		background-color var(--psy-speed) var(--psy-ease), border-color var(--psy-speed) var(--psy-ease);
}

.psy-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--psy-shadow-lg);
}

.psy-card .elementor-widget-image img {
	transition: transform 0.8s var(--psy-ease);
	will-change: transform;
}

.psy-card:hover .elementor-widget-image img {
	transform: scale(1.07);
}

/* Spotlight hover (easemize spotlight-card): a brand-red glow that follows
   the pointer across the card surface and around its border. Driven by
   --sx / --sy custom properties set in site-fx.js. Both layers are pure
   light (pointer-events none) so they sheen over imagery as well. */
.psy-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 3;
	border-radius: inherit;
	background: radial-gradient(
		520px circle at var(--sx, 50%) var(--sy, 50%),
		rgb(var(--psy-primary-rgb) / 10%),
		transparent 42%
	);
	opacity: 0;
	transition: opacity 0.5s var(--psy-ease);
	pointer-events: none;
}

.psy-card::after {
	content: "";
	position: absolute;
	inset: -1px;
	z-index: 4;
	border-radius: inherit;
	padding: 1px;
	background: radial-gradient(
		340px circle at var(--sx, 50%) var(--sy, 50%),
		rgb(var(--psy-primary-rgb) / 60%),
		rgb(var(--psy-primary-rgb) / 6%) 45%,
		transparent 65%
	);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.5s var(--psy-ease);
	pointer-events: none;
}

.psy-card:hover::before,
.psy-card:hover::after {
	opacity: 1;
}

/* Numbered index in the top corner */
.psy-card__index .elementor-heading-title {
	display: inline-grid;
	place-items: center;
	inline-size: 2.6em;
	block-size: 2.6em;
	border-radius: 50%;
	background: var(--psy-tint);
	color: var(--psy-primary);
	transition: background var(--psy-speed) var(--psy-ease), color var(--psy-speed) var(--psy-ease);
}

.psy-card:hover .psy-card__index .elementor-heading-title {
	background: var(--psy-primary);
	color: #fff;
}

/* Icon boxes */
.psy-icon .elementor-icon {
	transition: transform var(--psy-speed) var(--psy-ease), background-color var(--psy-speed) var(--psy-ease),
		color var(--psy-speed) var(--psy-ease);
}

.psy-card:hover .psy-icon .elementor-icon,
.psy-icon:hover .elementor-icon {
	transform: translateY(-4px) rotate(-6deg);
}

/* Info-item icon circles: keep them perfectly square (Elementor's padding +
   narrow glyphs like the telephone produce ellipses otherwise). The box is
   glyph-size (1em) + the 13px Elementor padding on each side. */
.psy-infoicon .elementor-icon {
	inline-size: calc( 1em + 26px );
	block-size: calc( 1em + 26px );
	padding: 0;
	display: inline-grid;
	place-items: center;
}

.psy-infoicon .elementor-icon svg,
.psy-infoicon .elementor-icon i {
	inline-size: 1em;
	block-size: 1em;
}

/* Arrow affordance */
.psy-arrow .elementor-icon-wrapper,
.psy-arrow .elementor-icon {
	transition: transform var(--psy-speed) var(--psy-ease);
}

.psy-card:hover .psy-arrow .elementor-icon {
	transform: translate(5px, -5px);
}

/* ---------------------------------------------------------------------------
   7. Keyword marquee
   ------------------------------------------------------------------------ */

.psy-marquee {
	--psy-marquee-duration: 34s;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.psy-marquee__track {
	inline-size: max-content !important;
	flex-wrap: nowrap !important;
	animation: psy-marquee var(--psy-marquee-duration) linear infinite;
}

.psy-marquee:hover .psy-marquee__track {
	animation-play-state: paused;
}

.psy-marquee--reverse .psy-marquee__track {
	animation-direction: reverse;
}

@keyframes psy-marquee {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(-50%, 0, 0);
	}
}

.psy-marquee__item .elementor-heading-title {
	display: inline-flex;
	align-items: center;
	gap: 0.55em;
	white-space: nowrap;
}

.psy-marquee__item .elementor-heading-title::after {
	content: "";
	inline-size: 9px;
	block-size: 9px;
	border-radius: 50%;
	background: var(--psy-primary);
	opacity: 0.85;
}

/* Outlined display marquee */
.psy-marquee--outline .psy-marquee__item .elementor-heading-title {
	color: transparent;
	-webkit-text-stroke: 1px rgb(255 255 255 / 38%);
}

/* --- Deck arrows: sleek glass circles, mid-height, slide-in on activation --- */

/* The arrow/dot/float widget wrappers are zero-height grid items; Elementor
   makes widgets position:relative, which would trap absolutely-positioned
   overlays inside them. Static wrappers let them anchor to the deck. */
.psy-deck > .psy-deck-arrows-wrap,
.psy-deck > .psy-deck-dots-wrap,
.psy-deck > .psy-floats-wrap {
	position: static !important;
}

.psy-deck-arrows {
	position: absolute;
	inset-block-start: 50%;
	inset-inline: 26px;
	translate: 0 -50%;
	display: flex;
	justify-content: space-between;
	z-index: 20;
	pointer-events: none;
}

.psy-deck-arrows button.psy-deck-arrow {
	display: grid;
	place-items: center;
	inline-size: 48px;
	block-size: 48px;
	padding: 0;
	border: 1px solid rgb(255 255 255 / 22%);
	appearance: none;
	border-radius: 50%;
	background: rgb(255 255 255 / 7%);
	backdrop-filter: blur(10px);
	color: #fff;
	cursor: pointer;
	pointer-events: auto;
	transition:
		border-color var(--psy-speed) var(--psy-ease),
		background var(--psy-speed) var(--psy-ease),
		transform var(--psy-speed) var(--psy-ease),
		opacity var(--psy-speed) var(--psy-ease);
}

.psy-deck-arrows button.psy-deck-arrow svg {
	inline-size: 20px;
	block-size: 20px;
	transition: transform var(--psy-speed) var(--psy-ease);
}

.psy-deck-arrows button.psy-deck-arrow:hover {
	border-color: var(--psy-primary);
	background: rgb(var(--psy-primary-rgb) / 18%);
}

.psy-deck-arrows button.psy-deck-arrow.psy-prev:hover svg {
	transform: translateX(-4px);
}

.psy-deck-arrows button.psy-deck-arrow.psy-next:hover svg {
	transform: translateX(4px);
}

.psy-deck-arrows button.psy-deck-arrow:active {
	transform: scale(0.92);
}

.psy-deck-arrows button.psy-deck-arrow.psy-prev {
	--psy-arrow-from: -18px;
}

.psy-deck-arrows button.psy-deck-arrow.psy-next {
	--psy-arrow-from: 18px;
}

@media (prefers-reduced-motion: no-preference) {
	/* deck.js re-adds .psy-anim on every slide change to replay the entrance. */
	.psy-deck--js .psy-deck-arrows.psy-anim button.psy-deck-arrow {
		animation: psy-arrow-in 0.7s var(--psy-ease) both;
	}

	.psy-deck--js .psy-deck-arrows.psy-anim button.psy-deck-arrow.psy-prev {
		animation-delay: 0.9s;
	}

	.psy-deck--js .psy-deck-arrows.psy-anim button.psy-deck-arrow.psy-next {
		animation-delay: 1s;
	}
}

@keyframes psy-arrow-in {
	from {
		opacity: 0;
		transform: translateX(var(--psy-arrow-from, 0));
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@media (width <= 767px) {
	.psy-deck-arrows {
		display: none;
	}
}

/* ---------------------------------------------------------------------------
   8b. Zoom parallax stage (sshahaider zoom-parallax): the section pins for
   ~140vh of scroll while its image grows to fill the full viewport, then
   releases. site-fx.js drives the transforms for cross-browser support.
   ------------------------------------------------------------------------ */

.psy-zoom {
	overflow: hidden;
	border-radius: var(--psy-radius);
}

.psy-zoom img {
	display: block;
	inline-size: 100%;
}

.psy-zoomstage {
	block-size: 240vh;
}

.psy-zoomsection {
	position: sticky !important;
	inset-block-start: 0;
	min-block-size: 100vh;
	justify-content: center;
	overflow: hidden;
}

.psy-zoomsection .psy-zoom {
	position: relative;
	z-index: 0;
	will-change: transform;
	transform-origin: center;
}

/* Readability veil: darkens the zoomed image on the content side as it fills. */
.psy-zoomsection .psy-zoom::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		100deg,
		rgb(8 13 28 / 78%) 6%,
		rgb(8 13 28 / 20%) 52%,
		transparent 78%
	);
	opacity: var(--psy-zoom-veil, 0);
	pointer-events: none;
}

/* Content column stays above the growing image. Covers both boxed
   (children nested in .e-con-inner) and full-width section structures. */
.psy-zoomsection > .e-con > .e-con:first-child,
.psy-zoomsection .e-con-inner > .e-con:first-child {
	position: relative;
	z-index: 2;
}

@media (max-width: 767px), (prefers-reduced-motion: reduce) {
	.psy-zoomstage {
		block-size: auto;
	}

	.psy-zoomsection {
		position: relative !important;
		min-block-size: 0;
	}

	.psy-zoomsection .psy-zoom {
		transform: none !important;
	}

	.psy-zoomsection .psy-zoom::after {
		content: none;
	}
}

/* Word-by-word scroll reveal (scroll-anim.js splits section headings). */
.psy-aword {
	display: inline-block;
	overflow: hidden;
	vertical-align: bottom;
	padding-block-end: 0.14em;
	margin-block-end: -0.14em;
}

.psy-aword__inner {
	display: inline-block;
	will-change: transform;
}

/* Fixed scroll progress bar (recipe 8). */
#psy-progress {
	position: fixed;
	inset-block-start: 0;
	inset-inline: 0;
	block-size: 3px;
	z-index: 1000;
	background: linear-gradient( 90deg, var(--psy-primary), #ff6b86 );
	transform: scaleX(0);
	transform-origin: left center;
	pointer-events: none;
}

/* Floating glass chips filling the slide's open space (psytechno.com hero spirit). */
.psy-floats {
	position: absolute;
	inset-block-start: 18%;
	inset-inline-end: 3%;
	inline-size: 300px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: flex-end;
	pointer-events: none;
	z-index: 2;
}

.psy-float-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 20px;
	border-radius: 100px;
	border: 1px solid rgb(255 255 255 / 20%);
	background: rgb(255 255 255 / 8%);
	backdrop-filter: blur(10px);
	color: #fff;
	font-family: var(--e-global-typography-primary-font-family, inherit);
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
	box-shadow: 0 10px 30px rgb(0 0 0 / 25%);
	animation: psy-float 6s ease-in-out infinite alternate;
	animation-delay: var(--fd, 0.3s);
}

.psy-float-chip i {
	color: var(--psy-primary);
	font-size: 15px;
}

.psy-float-chip:nth-child(odd) {
	align-self: flex-start;
	margin-inline-end: 26px;
}

.psy-float-ring {
	position: absolute;
	inset-block-start: -30px;
	inset-inline-end: -60px;
	inline-size: 230px;
	block-size: 230px;
	border-radius: 50%;
	border: 1px solid rgb(var(--psy-primary-rgb) / 35%);
	animation: psy-float 8s ease-in-out infinite alternate-reverse;
}

.psy-float-dots {
	position: absolute;
	inset-block-end: -46px;
	inset-inline-start: -30px;
	inline-size: 120px;
	block-size: 90px;
	background-image: radial-gradient( rgb(255 255 255 / 28%) 1.5px, transparent 1.5px );
	background-size: 16px 16px;
	opacity: 0.55;
}

@keyframes psy-float {
	from {
		transform: translateY(-9px);
	}
	to {
		transform: translateY(9px);
	}
}

@media (width <= 1180px) {
	.psy-floats {
		display: none;
	}
}

/* Process image hover flip-cycle (homepage). */
.psy-procimg {
	perspective: 800px;
	overflow: hidden;
	border-radius: 12px;
	background: var(--psy-light);
}

.psy-procimg img {
	display: block;
	inline-size: 100%;
	block-size: auto;
	transition: transform 0.24s ease-in;
	backface-visibility: hidden;
}

.psy-procimg.is-flipping img {
	transform: rotateY(90deg);
}

/* Contact map frame. */
.psy-map iframe {
	border-radius: inherit;
}

/* Lightbox — Yet Another React Lightbox (YARL) adaptation: minimal dark
   chrome, contained image, top-left counter, bottom-left caption, swipe. */
#psy-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

#psy-lightbox.is-open {
	visibility: visible;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.psy-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgb(0 0 0 / 92%);
}

.psy-lightbox__figure {
	position: absolute;
	inset: 0;
	margin: 0;
	display: grid;
	place-items: center;
}

.psy-lightbox__img {
	display: block;
	inline-size: auto;
	block-size: auto;
	max-inline-size: 92vw;
	max-block-size: 84vh;
	object-fit: contain;
	opacity: 0;
	transform: scale(0.96);
	transition: opacity 0.28s ease, transform 0.28s var(--psy-ease);
}

.psy-lightbox__img.is-ready {
	opacity: 1;
	transform: scale(1);
}

#psy-lightbox.is-loading .psy-lightbox__img {
	opacity: 0;
	transform: scale(0.96);
}

/* Top toolbar: counter left, close right. */
.psy-lightbox__count {
	position: absolute;
	inset-block-start: 22px;
	inset-inline-start: 28px;
	color: rgb(255 255 255 / 65%);
	font-size: 14px;
	letter-spacing: 0.06em;
	font-variant-numeric: tabular-nums;
}

/* ID-scoped so the kit's global `button` styles (brand-red background,
   padding, radius, colour) can never bleed into the YARL chrome. White
   slim circles on the black backdrop. */
#psy-lightbox .psy-lightbox__close,
#psy-lightbox .psy-lightbox__nav {
	display: grid !important;
	place-items: center;
	inline-size: 42px;
	block-size: 42px;
	padding: 0 !important;
	border: 1px solid rgb(255 255 255 / 35%) !important;
	border-radius: 50% !important;
	background: transparent !important;
	color: #fff !important;
	cursor: pointer;
	transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

#psy-lightbox .psy-lightbox__close:hover,
#psy-lightbox .psy-lightbox__nav:hover {
	color: var(--psy-ink) !important;
	background: #fff !important;
	border-color: #fff !important;
}

.psy-lightbox__close:hover,
.psy-lightbox__nav:hover {
	color: #fff;
	background: rgb(255 255 255 / 10%) !important;
	border-radius: 50%;
}

.psy-lightbox__close svg,
.psy-lightbox__nav svg {
	inline-size: 22px;
	block-size: 22px;
}

.psy-lightbox__close {
	position: absolute;
	inset-block-start: 14px;
	inset-inline-end: 20px;
}

/* Bottom-left caption. */
.psy-lightbox__caption {
	position: absolute;
	inset-block-end: 24px;
	inset-inline-start: 28px;
	inset-inline-end: 28px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	pointer-events: none;
}

.psy-lightbox__cat {
	font-family: var(--e-global-typography-primary-font-family, inherit);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--psy-primary);
}

.psy-lightbox__title {
	font-family: var(--e-global-typography-primary-font-family, inherit);
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}

/* Mid-height prev/next. */
.psy-lightbox__nav {
	position: absolute;
	inset-block-start: 50%;
	translate: 0 -50%;
}

.psy-lightbox__prev {
	inset-inline-start: 16px;
}

.psy-lightbox__next {
	inset-inline-end: 16px;
}

@media (width <= 767px) {
	.psy-lightbox__img {
		max-inline-size: 96vw;
		max-block-size: 70vh;
	}
}

/* ---------------------------------------------------------------------------
   8. Hero
   ------------------------------------------------------------------------ */

.psy-hero {
	position: relative;
	isolation: isolate;
}

.psy-hero-slide {
	position: relative;
	overflow: hidden;
}

.psy-hero-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(
		100deg,
		rgb(var(--psy-ink-rgb) / 88%) 0%,
		rgb(var(--psy-ink-rgb) / 62%) 45%,
		rgb(var(--psy-ink-rgb) / 22%) 100%
	);
	pointer-events: none;
}

.psy-hero-slide > .e-con-inner,
.psy-hero-slide > .elementor-element {
	position: relative;
	z-index: 1;
}

/* Background video layer: sits under the gradient, above the poster image. */
.psy-deck-slide .psy-deck-video-wrap {
	position: absolute !important;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.psy-deck-video {
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
}

.psy-deck-video--flip {
	transform: scale(-1, -1);
}

/* Gentle zoom-out as a slide activates. */
@media (prefers-reduced-motion: no-preference) {
	.psy-deck--js .is-active .psy-deck-video-wrap {
		animation: psy-video-zoom 1.6s var(--psy-ease) both;
	}
}

@keyframes psy-video-zoom {
	from {
		transform: scale(1.07);
	}
	to {
		transform: scale(1);
	}
}

/* --- Deck hero ------------------------------------------------------------ */

/* All slides share one grid cell: perfect stacking, height = tallest slide. */
.psy-deck > .e-con {
	grid-area: 1 / 1;
}

/* Without JavaScript, show the first slide only. */
.psy-deck:not(.psy-deck--js) > .psy-deck-slide:not(:first-child) {
	display: none;
}

/* JS mode: only the active slide is rendered — nothing else can ever paint
   (flash-proof) — and each activation fades in through the dark surface. */
.psy-deck--js > .psy-deck-slide:not(.is-active) {
	display: none;
}

@media (prefers-reduced-motion: no-preference) {
	.psy-deck--js > .psy-deck-slide.is-active {
		animation: psy-slide-fade 0.5s ease both;
	}
}

@keyframes psy-slide-fade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.psy-deck__dots {
	position: absolute;
	inset-block-end: 16px;
	inset-inline-start: 50%;
	translate: -50% 0;
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 20;
}

/* Slim bars: sleek, minimal height, red progress sweep on the active one.
   Scoped + doubled class specificity so the kit's global `button` styles
   (padding, radius, colours) can never bleed into them. */
.psy-deck__dots button.psy-deck__dot {
	inline-size: 16px;
	block-size: 3px;
	padding: 0;
	border: 0;
	appearance: none;
	border-radius: 100px;
	background: rgb(255 255 255 / 30%);
	cursor: pointer;
	overflow: hidden;
	transition: inline-size 0.3s var(--psy-ease), background 0.3s var(--psy-ease);
}

.psy-deck__dots button.psy-deck__dot:hover {
	background: rgb(255 255 255 / 60%);
}

.psy-deck__dots button.psy-deck__dot.is-active {
	inline-size: 34px;
	background: rgb(255 255 255 / 22%);
}

/* Autoplay progress sweeps through the elongated active bar. */
.psy-deck__dot.is-active::after {
	content: "";
	display: block;
	inline-size: 100%;
	block-size: 100%;
	border-radius: inherit;
	background: var(--psy-primary);
	transform-origin: left center;
}

@media (prefers-reduced-motion: no-preference) {
	.psy-deck--js .psy-deck__dot.is-active::after {
		animation: psy-dot-progress var(--psy-deck-dur, 7000ms) linear both;
	}
}

@keyframes psy-dot-progress {
	from {
		transform: scaleX(0);
	}
	to {
		transform: scaleX(1);
	}
}

/* Brand-red accent beats the shared onDark rose inside the deck. */
.psy-deck .psy-deck-title em,
.psy-deck .psy-deck-title i {
	font-style: normal;
	color: var(--psy-primary);
}

.psy-deck .psy-line {
	overflow: hidden;
}

/* Word-by-word reveal (deck.js splits .psy-words headings into masked spans).
   Inter-word spacing is restored with a trailing margin, matching the
   reference deck's mr-[0.27em]. */
.psy-deck .psy-word {
	display: inline-block;
	overflow: hidden;
	vertical-align: bottom;
	padding-block-end: 0.14em;
	margin-block-end: -0.14em;
	margin-inline-end: 0.27em;
}

.psy-deck .psy-word__inner {
	display: inline-block;
}

.psy-deck--js .is-active .psy-word__inner {
	animation: psy-line-up 0.55s cubic-bezier(0.25, 0.1, 0.25, 1) both;
	/* Per-word stagger comes from an inline animation-delay set by deck.js. */
}

/* Decorative growth chart (brand gradient, draws itself on activation). */
.psy-deck-chart-wrap {
	position: absolute !important;
	inset-block-end: 0;
	inset-inline-end: 0;
	inline-size: 52%;
	block-size: 68%;
	z-index: 0;
	pointer-events: none;
	opacity: 0.9;
	mask-image: linear-gradient(200deg, #000 55%, transparent 96%);
}

.psy-deck-chart,
.psy-deck-chart svg {
	inline-size: 100%;
	block-size: 100%;
}

@media (prefers-reduced-motion: no-preference) {
	.psy-deck--js .is-active .psy-chart-line {
		stroke-dasharray: 1100;
		stroke-dashoffset: 1100;
		animation: psy-chart-draw 1.7s cubic-bezier(0.25, 0.1, 0.25, 1) 0.5s both;
	}

	.psy-deck--js .is-active .psy-chart-fill {
		animation: psy-blur-in 1s ease-out 1.2s both;
	}
}

@keyframes psy-chart-draw {
	to {
		stroke-dashoffset: 0;
	}
}

.psy-chart-dot {
	position: absolute;
	inset-block-end: 80%;
	inset-inline-end: 3.5%;
	inline-size: 14px;
	block-size: 14px;
	border-radius: 50%;
	background: var(--psy-primary);
	box-shadow: 0 0 0 6px rgb(var(--psy-primary-rgb) / 22%), 0 0 22px rgb(var(--psy-primary-rgb) / 65%);
}

@media (width <= 767px) {
	.psy-deck-chart-wrap {
		display: none;
	}
}

/* Reveal animations replay every time a slide becomes active. */
@media (prefers-reduced-motion: no-preference) {
	.psy-deck--js .is-active .psy-line > .elementor-widget {
		animation: psy-line-up 0.75s cubic-bezier(0.25, 0.1, 0.25, 1) both;
		animation-delay: var(--d, 0.35s);
	}

	.psy-deck--js .is-active .psy-blur-in {
		animation: psy-blur-in 0.9s cubic-bezier(0.25, 0.1, 0.25, 1) both;
		animation-delay: var(--d, 0.15s);
	}

	.psy-deck--js .is-active .psy-stat-card {
		animation: psy-rise-in 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) both;
	}
}

.psy-deck--js .is-active .psy-stat-card:nth-child(1) {
	animation-delay: 0.65s;
}

.psy-deck--js .is-active .psy-stat-card:nth-child(2) {
	animation-delay: 0.75s;
}

.psy-deck--js .is-active .psy-stat-card:nth-child(3) {
	animation-delay: 0.85s;
}

@keyframes psy-line-up {
	from {
		transform: translateY(110%);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes psy-blur-in {
	from {
		opacity: 0;
		filter: blur(8px);
	}
	to {
		opacity: 1;
		filter: blur(0);
	}
}

@keyframes psy-rise-in {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Stagger utility delays for the blur-in elements. */
.psy-d1 { --d: 0.05s; }
.psy-d2 { --d: 0.25s; }
.psy-d3 { --d: 0.4s; }
.psy-d4 { --d: 0.55s; }
.psy-d5 { --d: 0.7s; }
.psy-d6 { --d: 0.85s; }

/* Word-split headings reveal per word, so the outer line stays still.
   Declared after the reveal block above so `none` wins the cascade. */
.psy-deck--js .is-active .psy-line--words > .elementor-widget {
	animation: none;
}

.psy-hero .swiper-pagination-bullet {
	transition: inline-size 0.35s var(--psy-ease);
}

/* Page banner (inner pages) */
.psy-banner {
	position: relative;
	overflow: hidden;
}

.psy-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(120% 120% at 12% 0%, rgb(var(--psy-primary-rgb) / 34%) 0%, transparent 55%),
		radial-gradient(90% 90% at 92% 100%, rgb(var(--psy-secondary-rgb) / 40%) 0%, transparent 58%);
	pointer-events: none;
}

.psy-banner > .e-con-inner {
	position: relative;
	z-index: 1;
}

/* ---------------------------------------------------------------------------
   9. Stats / counters
   ------------------------------------------------------------------------ */

.psy-stat .elementor-counter-number-wrapper {
	color: var(--psy-ink);
	line-height: 1;
}

.psy-stat--onDark .elementor-counter-number-wrapper {
	color: #fff;
}

.psy-stat .elementor-counter-number-suffix,
.psy-stat .elementor-counter-number-prefix {
	color: var(--psy-primary);
}

.psy-stat .elementor-counter-title {
	margin-block-start: 0.55rem;
}

/* ---------------------------------------------------------------------------
   10. Checklists
   ------------------------------------------------------------------------ */

.psy-list .elementor-icon-list-item {
	display: flex;
	align-items: flex-start;
}

/* Circle icon aligned to the first text line's optical centre. */
.psy-list .elementor-icon-list-icon {
	display: grid;
	place-items: center;
	inline-size: 24px;
	block-size: 24px;
	border-radius: 50%;
	background: rgb(var(--psy-primary-rgb) / 10%);
	flex: 0 0 24px;
	margin-block-start: 3px;
}

/* Global fix: centre the Font Awesome glyph inside any Elementor icon
   circle (icon widget, icon-list, stacked/boxed views). Two culprits: the
   body's 1.75 line-height on <i> glyphs, and Elementor's inline SVG icons
   (e-font-icon-svg) rendering unsized so they overflow their circle. */
/* Elementor drives list-icon geometry with CSS vars (align padding on the
   circle, var-based svg sizing and a trailing margin), which breaks the
   glyph's optical centring inside our fixed 24px circles. Override the
   geometry outright — !important is scoped to .psy-list circles only. */
.psy-list .elementor-icon-list-icon {
	padding: 0 !important;
}

.psy-list .elementor-icon-list-icon svg,
.psy-list .elementor-icon-list-icon i {
	inline-size: 12px !important;
	block-size: 12px !important;
	width: 12px !important;
	height: 12px !important;
	margin: 0 !important;
	display: block;
	line-height: 1;
}

.psy-list .elementor-icon-list-icon .e-font-icon-svg,
.elementor-widget-icon .elementor-icon .e-font-icon-svg {
	inline-size: 1em;
	block-size: 1em;
	display: block;
	fill: currentColor;
}

.psy-list .elementor-icon-list-icon .elementor-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	inline-size: 100%;
	block-size: 100%;
	line-height: 1;
}

.elementor-widget-icon .elementor-icon-wrapper .elementor-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.elementor-widget-icon .elementor-icon-wrapper .elementor-icon i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.psy-list--onDark .elementor-icon-list-icon {
	background: rgb(255 255 255 / 12%);
}

/* ---------------------------------------------------------------------------
   11. FAQ accordion
   ------------------------------------------------------------------------ */

.psy-faq .e-n-accordion-item {
	border: 1px solid var(--psy-border);
	border-radius: var(--psy-radius-sm);
	background: #fff;
	margin-block-end: 14px;
	overflow: hidden;
	transition: box-shadow var(--psy-speed) var(--psy-ease), border-color var(--psy-speed) var(--psy-ease);
}

.psy-faq .e-n-accordion-item[open] {
	border-color: rgb(var(--psy-primary-rgb) / 35%);
	box-shadow: var(--psy-shadow);
}

.psy-faq .e-n-accordion-item-title {
	font-weight: 600;
}

.psy-faq .e-n-accordion-item[open] .e-n-accordion-item-title {
	color: var(--psy-primary);
}

/* Dark (AI) FAQ variant. */
.psy-faq--onDark .e-n-accordion-item {
	background: rgb(255 255 255 / 5%);
	border-color: rgb(255 255 255 / 12%);
}

/* Multi-column icon lists. */
.psy-list--2col .elementor-icon-list-items,
.psy-list--3col .elementor-icon-list-items {
	display: block;
}

.psy-list--2col .elementor-icon-list-items {
	columns: 2;
	column-gap: 44px;
}

.psy-list--3col .elementor-icon-list-items {
	columns: 3;
	column-gap: 44px;
}

.psy-list--2col .elementor-icon-list-item,
.psy-list--3col .elementor-icon-list-item {
	break-inside: avoid;
}

@media (max-width: 1024px) {
	.psy-list--3col .elementor-icon-list-items {
		columns: 2;
	}
}

@media (max-width: 767px) {
	.psy-list--2col .elementor-icon-list-items,
	.psy-list--3col .elementor-icon-list-items {
		columns: 1;
	}
}

/* FAQ accordion: the answer text inside every item keeps 10px of breathing
   room, globally across the site (light and dark variants alike). */
.e-n-accordion-item > .e-con {
	padding: 10px !important;
}

/* ---------------------------------------------------------------------------
   12. Portfolio grid
   ------------------------------------------------------------------------ */

.psy-work {
	position: relative;
	overflow: hidden;
	border-radius: var(--psy-radius);
}

.psy-work__media img {
	display: block;
	inline-size: 100%;
	transition: transform 0.9s var(--psy-ease), filter 0.6s var(--psy-ease);
}

.psy-work:hover .psy-work__media img {
	transform: scale(1.08);
}

.psy-work__body {
	position: absolute !important;
	inset-inline: 14px;
	inset-block-end: 14px;
	border-radius: var(--psy-radius-sm);
	background: rgb(255 255 255 / 94%);
	backdrop-filter: blur(8px);
	box-shadow: var(--psy-shadow-sm);
	transition: translate var(--psy-speed) var(--psy-ease), box-shadow var(--psy-speed) var(--psy-ease);
}

.psy-work:hover .psy-work__body,
.psy-work:focus-within .psy-work__body {
	translate: 0 -4px;
	box-shadow: var(--psy-shadow);
}

.psy-work__media {
	overflow: hidden;
	border-radius: var(--psy-radius);
}

/* ---------------------------------------------------------------------------
   13. Pricing
   ------------------------------------------------------------------------ */

.psy-price {
	transition: transform var(--psy-speed) var(--psy-ease), box-shadow var(--psy-speed) var(--psy-ease);
}

.psy-price:hover {
	transform: translateY(-8px);
	box-shadow: var(--psy-shadow-lg);
}

.psy-price .elementor-price-table__feature-inner {
	display: flex;
	align-items: center;
	gap: 0.6em;
}

.psy-price--featured {
	position: relative;
}

/* ---------------------------------------------------------------------------
   14. Forms
   ------------------------------------------------------------------------ */

.psy-form .elementor-field-group > label {
	font-weight: 600;
	margin-block-end: 8px;
	color: var(--psy-ink);
}

/* Smooth spring caret (skiper106, adapted): native caret hidden, the JS
   spring bar replaces it on text-like inputs and textareas. */
html.psy-smooth-on .elementor-widget-form input.elementor-field-textual[type="text"],
html.psy-smooth-on .elementor-widget-form input.elementor-field-textual[type="tel"],
html.psy-smooth-on .elementor-widget-form input.elementor-field-textual[type="email"],
html.psy-smooth-on .elementor-widget-form textarea.elementor-field-textual {
	caret-color: transparent;
}

.psy-caret {
	position: fixed;
	inset-block-start: 0;
	inset-inline-start: 0;
	inline-size: 2px;
	border-radius: 1px;
	background: var(--psy-primary);
	box-shadow: 0 0 10px rgb(var(--psy-primary-rgb) / 55%);
	opacity: 0;
	transition: opacity 0.18s ease;
	pointer-events: none;
	z-index: 9999;
	will-change: transform;
}

.psy-caret.is-on {
	opacity: 1;
}

.psy-caret-mirror {
	position: fixed;
	inset-block-start: 0;
	inset-inline-start: 0;
	margin: 0;
	border: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: -1;
}

.psy-caret-marker {
	display: inline-block;
	inline-size: 0;
}

.psy-form .elementor-field-textual {
	transition: border-color 0.3s var(--psy-ease), box-shadow 0.3s var(--psy-ease);
}

.psy-form .elementor-field-textual:focus {
	box-shadow: 0 0 0 4px rgb(var(--psy-primary-rgb) / 12%);
}

.psy-form--onDark .elementor-field-group > label {
	color: rgb(255 255 255 / 88%);
}

.psy-form--onDark .elementor-field-textual {
	background: rgb(255 255 255 / 7%) !important;
	border-color: rgb(255 255 255 / 16%) !important;
	color: #fff !important;
}

.psy-form--onDark .elementor-field-textual::placeholder {
	color: rgb(255 255 255 / 55%);
}

.psy-form .elementor-button[type="submit"] {
	inline-size: 100%;
	justify-content: center;
	text-transform: none;
	letter-spacing: 0;
}

/* ---------------------------------------------------------------------------
   15. Testimonials
   ------------------------------------------------------------------------ */

.psy-quote {
	position: relative;
}

.psy-quote .elementor-testimonial__text,
.psy-quote .elementor-testimonial-content {
	text-wrap: pretty;
}

.psy-quote .elementor-testimonial__content {
	border-radius: var(--psy-radius);
	transition: transform var(--psy-speed) var(--psy-ease), box-shadow var(--psy-speed) var(--psy-ease);
}

.psy-quote .swiper-slide:hover .elementor-testimonial__content {
	transform: translateY(-6px);
	box-shadow: var(--psy-shadow);
}

.psy-quote .elementor-testimonial__footer {
	margin-block-start: 18px;
}

.psy-quote .elementor-testimonial__name {
	display: block;
}

/* Circular avatar with the stylish ring overlay (testimonials page). */
.psy-tavatar-wrap {
	flex: 0 0 auto;
	margin-inline-end: 16px;
}

.psy-tavatar {
	position: relative;
	display: inline-grid;
	place-items: center;
	inline-size: 74px;
	block-size: 74px;
	flex: 0 0 74px;
}

.psy-tavatar img {
	inline-size: 100%;
	block-size: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #fff;
	box-shadow: var(--psy-shadow-sm);
}

/* Offset brand ring + badge dot overlay. */
.psy-tavatar::before {
	content: "";
	position: absolute;
	inset: -7px;
	border-radius: 50%;
	border: 2px solid rgb(var(--psy-primary-rgb) / 45%);
}

.psy-tavatar::after {
	content: "";
	position: absolute;
	inset-block-start: -9px;
	inset-inline-end: -7px;
	inline-size: 20px;
	block-size: 20px;
	border-radius: 50%;
	background: var(--psy-primary);
	box-shadow: 0 0 0 4px rgb(var(--psy-primary-rgb) / 16%);
}

/* Monogram fallback for clients without a photo. */
.psy-tavatar--mono {
	background: linear-gradient( 135deg, rgb(var(--psy-primary-rgb) / 14%), rgb(var(--psy-secondary-rgb) / 16%) );
	border-radius: 50%;
}

.psy-tavatar--mono span {
	font-family: var(--e-global-typography-primary-font-family, inherit);
	font-weight: 800;
	font-size: 26px;
	letter-spacing: -0.02em;
	color: var(--psy-primary);
}

.psy-quote-mark {
	display: block;
}

/* Testimonial V2 (avanishverma4, adapted): star-rated bento cards. */
.psy-t2-stars {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	color: #f6a723;
}

.psy-t2-stars svg {
	inline-size: 15px;
	block-size: 15px;
	fill: currentColor;
}

.psy-t2-stars b {
	margin-inline-start: 6px;
	font-family: var(--e-global-typography-primary-font-family, inherit);
	font-size: 13px;
	font-weight: 700;
	color: currentColor;
	opacity: 0.75;
}

.psy-t2-featured .psy-t2-stars b {
	color: rgb(255 255 255 / 75%);
}

.psy-t2-featured .psy-lead p,
.psy-t2-featured .elementor-widget-text-editor {
	color: rgb(255 255 255 / 78%);
}

.psy-t2-avatar {
	display: inline-block;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #fff;
	box-shadow: var(--psy-shadow-sm);
}

.psy-t2-featured .psy-t2-avatar {
	border-color: rgb(255 255 255 / 25%);
}

.psy-t2-avatar img {
	display: block;
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
}

/* Vertical testimonial wall (homepage): two parallel auto-marquee columns —
   A slides up, B slides down — seamless loop, pause on hover, masked edges. */
.psy-t2-marquee {
	display: flex;
	gap: 22px;
	block-size: 620px;
	overflow: hidden;
	align-items: flex-start;
	mask-image: linear-gradient( 180deg, transparent 0%, #000 9%, #000 91%, transparent 100% );
	-webkit-mask-image: linear-gradient( 180deg, transparent 0%, #000 9%, #000 91%, transparent 100% );
}

.psy-t2-track {
	flex: 1 1 0;
	min-inline-size: 0;
	will-change: transform;
	animation: psy-t2-scroll 42s linear infinite;
}

.psy-t2-track--b {
	animation-direction: reverse;
}

.psy-t2-marquee:hover .psy-t2-track {
	animation-play-state: paused;
}

@keyframes psy-t2-scroll {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-50%);
	}
}

@media (max-width: 767px) {
	.psy-t2-marquee {
		block-size: 540px;
	}

	.psy-t2-track--b {
		display: none;
	}

	.psy-t2-track {
		flex: 1 1 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.psy-t2-track {
		animation: none;
	}
}

.psy-quote .elementor-testimonial__image img,
.psy-quote .elementor-testimonial-wrapper .elementor-testimonial-image img {
	border-radius: 50%;
}

.psy-quotes .swiper-slide {
	height: auto;
}

/* ---------------------------------------------------------------------------
   16. Footer
   ------------------------------------------------------------------------ */

.psy-footer a {
	color: rgb(255 255 255 / 74%);
	text-decoration: none;
	transition: color 0.3s var(--psy-ease), padding-inline-start 0.3s var(--psy-ease);
}

.psy-footer a:hover {
	color: #fff;
}

.psy-footer .elementor-icon-list-item a:hover {
	padding-inline-start: 6px;
}

/* ---------------------------------------------------------------------------
   17. Utilities
   ------------------------------------------------------------------------ */

.psy-divider-line {
	block-size: 1px;
	background: linear-gradient(90deg, transparent, var(--psy-border), transparent);
}

.psy-clip {
	overflow: hidden;
}

.psy-sticky-col {
	position: sticky;
	inset-block-start: 110px;
}

@media (width <= 1024px) {
	.psy-sticky-col {
		position: static;
	}
}

/* Respect user motion preferences. */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

/* Print: keep it readable and ink-light. */
@media print {
	.psy-topbar,
	.psy-header,
	.psy-footer,
	.psy-marquee {
		display: none !important;
	}
}
