/* ==========================================================================
   FLOWVERA — Main Stylesheet
   Brand palette extracted from flowvera-web.com
   ========================================================================== */

:root {
	/* Brand */
	--coral: #ff5a57;
	--orange: #ff7a3d;
	--pink: #ff3d6b;
	--salmon: #ff9770;
	--rose: #ff4f8f;
	--peach: #fff3ee;

	--grad-brand: linear-gradient(135deg, #ff7a3d 0%, #ff5a57 50%, #ff3d6b 100%);
	--grad-soft: linear-gradient(140deg, #ff9770 0%, #ff4f8f 100%);

	/* Surfaces */
	--bg-0: #060b1a;
	--bg-1: #0b1630;
	--bg-2: #0f1d42;
	--surface: rgba(255, 255, 255, 0.04);
	--surface-strong: rgba(255, 255, 255, 0.07);
	--line: rgba(255, 255, 255, 0.09);

	/* Text */
	--ink: #ffffff;
	--muted: #a5aec4;
	--muted-2: #7a7a7a;

	--radius: 22px;
	--radius-sm: 14px;
	--container: 1220px;

	--font-ar: 'IBM Plex Sans Arabic', 'Segoe UI', Tahoma, sans-serif;
	--font-latin: 'Space Grotesk', 'IBM Plex Sans Arabic', sans-serif;

	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Reset / Base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

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

body {
	margin: 0;
	background: var(--bg-0);
	color: var(--ink);
	font-family: var(--font-ar);
	font-size: 16px;
	line-height: 1.75;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	line-height: 1.25;
	font-weight: 700;
}

p {
	margin: 0 0 1em;
}

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

button {
	font-family: inherit;
	cursor: pointer;
}

body.no-scroll {
	overflow: hidden;
}

::selection {
	background: rgba(255, 90, 87, 0.45);
	color: #fff;
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--bg-0);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #ff7a3d, #ff3d6b);
	border-radius: 99px;
	border: 2px solid var(--bg-0);
}

.fv-container {
	width: min(100% - 48px, var(--container));
	margin-inline: auto;
	position: relative;
	z-index: 2;
}

.fv-section {
	position: relative;
	padding: clamp(80px, 10vw, 130px) 0;
	scroll-margin-top: 84px;
}

.booking {
	scroll-margin-top: 84px;
}

/* Film-grain overlay */
.grain {
	position: fixed;
	inset: -50%;
	width: 200%;
	height: 200%;
	pointer-events: none;
	z-index: 9990;
	opacity: 0.05;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	animation: grainShift 9s steps(10) infinite;
	will-change: transform;
}

@keyframes grainShift {
	0%, 100% { transform: translate(0, 0); }
	20% { transform: translate(-3%, 2%); }
	40% { transform: translate(2%, -3%); }
	60% { transform: translate(-2%, -2%); }
	80% { transform: translate(3%, 3%); }
}

/* Glow orbs */
.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	pointer-events: none;
	z-index: 0;
	will-change: transform;
}

.orb-1 {
	width: 480px;
	height: 480px;
	top: -140px;
	inset-inline-start: -140px;
	background: radial-gradient(circle, rgba(255, 122, 61, 0.32), transparent 65%);
	animation: orbFloat 11s ease-in-out infinite alternate;
}

.orb-2 {
	width: 420px;
	height: 420px;
	bottom: -160px;
	inset-inline-end: -120px;
	background: radial-gradient(circle, rgba(255, 61, 107, 0.3), transparent 65%);
	animation: orbFloat 13s ease-in-out infinite alternate-reverse;
}

.orb-3 {
	width: 380px;
	height: 380px;
	top: 12%;
	inset-inline-end: -150px;
	background: radial-gradient(circle, rgba(255, 90, 87, 0.22), transparent 65%);
}

.orb-4,
.orb-6 {
	width: 300px;
	height: 300px;
	top: -80px;
	inset-inline-start: 30%;
	background: radial-gradient(circle, rgba(255, 151, 112, 0.25), transparent 65%);
}

.orb-5 {
	width: 360px;
	height: 360px;
	bottom: 0;
	inset-inline-start: -140px;
	background: radial-gradient(circle, rgba(255, 79, 143, 0.22), transparent 65%);
}

.orb-7 {
	width: 240px;
	height: 240px;
	bottom: -60px;
	inset-inline-end: 12%;
	background: radial-gradient(circle, rgba(255, 122, 61, 0.35), transparent 65%);
}

@keyframes orbFloat {
	from { transform: translate(0, 0) scale(1); }
	to { transform: translate(40px, 30px) scale(1.08); }
}

.grad-text {
	background: var(--grad-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	position: relative;
}

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: var(--salmon);
	padding: 8px 18px;
	border: 1px solid rgba(255, 151, 112, 0.3);
	border-radius: 99px;
	background: rgba(255, 122, 61, 0.07);
	margin-bottom: 18px;
}

.kicker::before {
	content: '';
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--grad-brand);
	box-shadow: 0 0 12px rgba(255, 90, 87, 0.9);
	animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

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

	50% {
		transform: scale(1.5);
		opacity: 0.6;
	}
}

.sec-head {
	max-width: 720px;
	margin-bottom: clamp(44px, 6vw, 72px);
	text-align: center;
	margin-inline: auto;
}

.sec-title {
	font-size: clamp(1.9rem, 4.2vw, 3rem);
	font-weight: 800;
	margin-bottom: 16px;
}

.sec-desc {
	color: var(--muted);
	font-size: 1.06rem;
	max-width: 640px;
	margin-inline: auto;
}

.sec-title--start {
	text-align: start;
}

/* --------------------------------------------------------------------------
   Preloader
   -------------------------------------------------------------------------- */

.preloader {
	position: fixed;
	inset: 0;
	z-index: 100000;
	background: var(--bg-0);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 26px;
}

.preloader__logo {
	width: min(300px, 62vw);
	filter: drop-shadow(0 8px 34px rgba(255, 90, 87, 0.35));
	animation: preloaderPulse 1.6s ease-in-out infinite;
}

@keyframes preloaderPulse {

	0%,
	100% {
		transform: translateY(0);
		filter: drop-shadow(0 8px 34px rgba(255, 90, 87, 0.35));
	}

	50% {
		transform: translateY(-8px);
		filter: drop-shadow(0 18px 48px rgba(255, 61, 107, 0.55));
	}
}

.preloader__bar {
	width: min(280px, 56vw);
	height: 3px;
	border-radius: 99px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
	direction: ltr;
}

.preloader__fill {
	width: 0%;
	height: 100%;
	border-radius: 99px;
	background: var(--grad-brand);
	box-shadow: 0 0 18px rgba(255, 90, 87, 0.8);
}

.preloader__count {
	font-family: var(--font-latin);
	font-size: 0.95rem;
	letter-spacing: 0.3em;
	color: var(--muted);
	direction: ltr;
}

/* --------------------------------------------------------------------------
   Custom cursor
   -------------------------------------------------------------------------- */

.cursor-dot,
.cursor-ring {
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 99999;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
}

.cursor-dot {
	width: 8px;
	height: 8px;
	background: var(--coral);
	box-shadow: 0 0 14px rgba(255, 90, 87, 0.95);
}

.cursor-ring {
	width: 42px;
	height: 42px;
	border: 1.5px solid rgba(255, 122, 61, 0.55);
	transition: width 0.28s var(--ease-out), height 0.28s var(--ease-out),
		border-color 0.28s ease, background-color 0.28s ease;
}

.cursor-ring.is-active {
	width: 68px;
	height: 68px;
	border-color: rgba(255, 61, 107, 0.85);
	background: rgba(255, 90, 87, 0.09);
}

@media (hover: none), (pointer: coarse) {

	.cursor-dot,
	.cursor-ring {
		display: none;
	}
}

/* --------------------------------------------------------------------------
   Scroll progress
   -------------------------------------------------------------------------- */

.scroll-progress {
	position: fixed;
	top: 0;
	inset-inline-start: 0;
	width: 100%;
	height: 3px;
	z-index: 99998;
	background: transparent;
	direction: ltr;
}

.scroll-progress span {
	display: block;
	width: 0%;
	height: 100%;
	background: var(--grad-brand);
	box-shadow: 0 0 14px rgba(255, 90, 87, 0.8);
	transform-origin: left;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.fv-header {
	position: fixed;
	top: 0;
	inset-inline: 0;
	z-index: 9000;
	padding: 18px 0;
	transition: padding 0.4s var(--ease-out), background-color 0.4s ease,
		backdrop-filter 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
	border-bottom: 1px solid transparent;
}

.fv-header.scrolled {
	padding: 10px 0;
	background: rgba(6, 11, 26, 0.78);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom-color: var(--line);
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
}

.fv-header.hide-up {
	transform: translateY(-110%);
	transition: transform 0.45s var(--ease-out), background-color 0.4s ease;
}

.fv-header.show-down {
	transform: translateY(0);
	transition: transform 0.45s var(--ease-out), background-color 0.4s ease;
}

.fv-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.fv-logo img,
.fv-branding img {
	height: 52px;
	width: auto;
	transition: transform 0.4s var(--ease-out), filter 0.4s ease;
}

.fv-logo:hover img {
	transform: scale(1.05) rotate(-1.2deg);
	filter: drop-shadow(0 6px 22px rgba(255, 90, 87, 0.45));
}

.fv-nav__list {
	display: flex;
	align-items: center;
	gap: 6px;
}

.fv-nav__list a {
	position: relative;
	display: inline-block;
	padding: 10px 16px;
	font-size: 0.98rem;
	font-weight: 500;
	color: var(--muted);
	border-radius: 10px;
	transition: color 0.3s ease;
}

.fv-nav__list a::after {
	content: '';
	position: absolute;
	bottom: 4px;
	inset-inline-start: 50%;
	width: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--grad-brand);
	transform: translateX(50%);
	transition: width 0.35s var(--ease-out);
	box-shadow: 0 0 10px rgba(255, 90, 87, 0.7);
}

[dir='rtl'] .fv-nav__list a::after {
	transform: translateX(-50%);
}

.fv-nav__list a:hover,
.fv-nav__list a.is-active {
	color: #fff;
}

.fv-nav__list a:hover::after,
.fv-nav__list a.is-active::after {
	width: 55%;
}

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

/* Burger */
.fv-burger {
	display: none;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: var(--surface);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.fv-burger span {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 2px;
	background: #fff;
	transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
}

body.nav-open .fv-burger span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

body.nav-open .fv-burger span:nth-child(2) {
	opacity: 0;
}

body.nav-open .fv-burger span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
	--btn-bg: transparent;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 32px;
	border-radius: 99px;
	font-weight: 600;
	font-size: 0.98rem;
	border: 1px solid transparent;
	isolation: isolate;
	overflow: hidden;
	white-space: nowrap;
	transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease,
		border-color 0.35s ease, color 0.3s ease;
	will-change: transform;
}

.btn i {
	font-size: 0.85em;
	transition: transform 0.35s var(--ease-out);
}

.btn:hover i {
	transform: translateX(-5px);
}

[dir='ltr'] .btn:hover i {
	transform: translateX(5px);
}

.btn--primary {
	background: var(--grad-brand);
	color: #fff;
	box-shadow: 0 12px 34px rgba(255, 74, 90, 0.35);
}

.btn--primary::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(135deg, #ff9770, #ff4f8f);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.btn--primary:hover {
	box-shadow: 0 18px 48px rgba(255, 61, 107, 0.55);
	transform: translateY(-2px);
}

.btn--primary:hover::before {
	opacity: 1;
}

.btn--primary::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 46%;
	z-index: 1;
	background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
	inset-inline-start: -70%;
	transform: skewX(-18deg);
	transition: inset-inline-start 0.7s var(--ease-out);
	pointer-events: none;
}

.btn--primary:hover::after {
	inset-inline-start: 130%;
}

.btn--ghost {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.03);
	color: #fff;
	backdrop-filter: blur(8px);
}

.btn--ghost:hover {
	border-color: rgba(255, 122, 61, 0.65);
	background: rgba(255, 122, 61, 0.09);
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(255, 122, 61, 0.18);
}

.btn--sm {
	padding: 11px 24px;
	font-size: 0.88rem;
}

.btn--lg {
	padding: 17px 40px;
	font-size: 1.02rem;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 150px 0 90px;
	background:
		radial-gradient(ellipse 80% 55% at 70% -10%, rgba(15, 29, 66, 0.9), transparent),
		var(--bg-0);
}

.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.24;
	z-index: 0;
	mix-blend-mode: screen;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(ellipse 60% 50% at 50% 110%, rgba(255, 61, 107, 0.12), transparent),
		linear-gradient(to bottom, rgba(6, 11, 26, 0.35) 0%, rgba(6, 11, 26, 0.1) 45%, var(--bg-0) 96%);
	pointer-events: none;
}

#fv-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0.85;
	pointer-events: none;
}

.hero-inner {
	text-align: center;
	max-width: 980px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.86rem;
	font-weight: 500;
	color: var(--peach);
	padding: 9px 20px;
	border-radius: 99px;
	border: 1px solid rgba(255, 151, 112, 0.35);
	background: rgba(255, 122, 61, 0.08);
	backdrop-filter: blur(10px);
	margin-bottom: 26px;
}

.hero-badge i {
	color: var(--orange);
}

.hero-title {
	font-size: clamp(2.1rem, 5.6vw, 4.1rem);
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 24px;
}

.hero-title .line {
	display: block;
	overflow: hidden;
	padding-block: 0.08em;
}

.hero-title .word {
	display: inline-block;
	white-space: nowrap;
}

.hero-title .char {
	display: inline-block;
	will-change: transform;
}

.typing-wrap {
	display: inline-block;
	min-height: 1.4em;
}

.typing-text {
	color: transparent;
	background: var(--grad-brand);
	-webkit-background-clip: text;
	background-clip: text;
}

.typing-caret {
	display: inline-block;
	width: 3px;
	height: 0.95em;
	margin-inline-start: 4px;
	vertical-align: -0.12em;
	border-radius: 2px;
	background: var(--coral);
	box-shadow: 0 0 12px rgba(255, 90, 87, 0.9);
	animation: caretBlink 0.85s steps(2) infinite;
}

@keyframes caretBlink {
	50% { opacity: 0; }
}

.hero-sub {
	color: var(--muted);
	font-size: clamp(1rem, 1.6vw, 1.14rem);
	max-width: 660px;
	margin: 0 auto 36px;
}

.hero-actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.scroll-hint {
	position: absolute;
	bottom: 30px;
	inset-inline-start: 50%;
	transform: translateX(50%);
	width: 26px;
	height: 44px;
	border: 2px solid rgba(255, 255, 255, 0.25);
	border-radius: 99px;
	z-index: 2;
}

[dir='rtl'] .scroll-hint {
	transform: translateX(-50%);
}

.scroll-hint span {
	position: absolute;
	top: 8px;
	inset-inline-start: 50%;
	width: 4px;
	height: 8px;
	margin-inline-start: -2px;
	border-radius: 99px;
	background: var(--grad-brand);
	animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {

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

	70% {
		transform: translateY(14px);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 0;
	}
}

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */

.marquee {
	position: relative;
	padding: 26px 0;
	border-block: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.015);
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
	display: flex;
	width: max-content;
	gap: 0;
	will-change: transform;
}

.marquee-track span {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 0 28px;
	font-family: var(--font-latin);
	font-size: 1.02rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.55);
	white-space: nowrap;
}

.marquee-track span i {
	font-size: 0.4em;
	color: var(--coral);
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */

.svc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.svc-card {
	--mx: 50%;
	--my: 50%;
	position: relative;
	padding: 34px 28px;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: linear-gradient(160deg, var(--surface-strong), rgba(255, 255, 255, 0.015));
	backdrop-filter: blur(12px);
	overflow: hidden;
	transform-style: preserve-3d;
	transition: border-color 0.4s ease, box-shadow 0.4s ease;
	will-change: transform;
}

.svc-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(420px circle at var(--mx) var(--my), rgba(255, 122, 61, 0.13), transparent 45%);
	opacity: 0;
	transition: opacity 0.45s ease;
	pointer-events: none;
}

.svc-card:hover {
	border-color: rgba(255, 122, 61, 0.4);
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 122, 61, 0.12) inset;
}

.svc-card:hover::before {
	opacity: 1;
}

.svc-icon {
	position: relative;
	width: 62px;
	height: 62px;
	display: grid;
	place-items: center;
	border-radius: 18px;
	background: var(--grad-brand);
	box-shadow: 0 12px 30px rgba(255, 74, 90, 0.35);
	margin-bottom: 22px;
	font-size: 1.45rem;
	color: #fff;
	transform: translateZ(30px);
}

.svc-icon::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: var(--grad-soft);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.svc-card:hover .svc-icon::after {
	opacity: 1;
}

.svc-icon i {
	position: relative;
	z-index: 1;
}

.svc-card h3 {
	font-size: 1.18rem;
	margin-bottom: 12px;
	transform: translateZ(24px);
}

.svc-card p {
	color: var(--muted);
	font-size: 0.94rem;
	margin: 0;
	transform: translateZ(16px);
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
}

.about-media {
	position: relative;
	border-radius: 28px;
}

.about-media img {
	border-radius: 28px;
	border: 1px solid var(--line);
	box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5);
	position: relative;
	z-index: 1;
}

.about-frame {
	position: absolute;
	inset: 26px -26px -26px 26px;
	border-radius: 28px;
	background: linear-gradient(140deg, rgba(255, 122, 61, 0.16), rgba(255, 61, 107, 0.1));
	border: 1px dashed rgba(255, 122, 61, 0.35);
	z-index: 0;
}

.about-body>.kicker {
	margin-bottom: 14px;
}

.about-text {
	color: var(--muted);
	font-size: 1.02rem;
}

.stats-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 38px;
}

.stat {
	position: relative;
	padding: 24px 14px;
	text-align: center;
	border-radius: var(--radius-sm);
	border: 1px solid var(--line);
	background: var(--surface);
	overflow: hidden;
	transition: transform 0.4s var(--ease-out), border-color 0.4s ease;
}

.stat:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 122, 61, 0.45);
}

.stat::after {
	content: '';
	position: absolute;
	inset-inline: 20%;
	bottom: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--grad-brand);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.stat:hover::after {
	opacity: 1;
}

.stat-num {
	display: block;
	font-family: var(--font-latin);
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	font-weight: 700;
	background: var(--grad-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	direction: ltr;
}

.stat-label {
	font-size: 0.84rem;
	color: var(--muted);
}

/* --------------------------------------------------------------------------
   Process
   -------------------------------------------------------------------------- */

.process {
	background:
		radial-gradient(ellipse 55% 45% at 15% 20%, rgba(255, 122, 61, 0.06), transparent),
		radial-gradient(ellipse 55% 45% at 85% 85%, rgba(255, 61, 107, 0.07), transparent);
}

.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	counter-reset: step;
}

.step {
	position: relative;
	padding: 34px 26px 30px;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: var(--surface);
	backdrop-filter: blur(10px);
	transition: transform 0.45s var(--ease-out), border-color 0.4s ease, box-shadow 0.4s ease;
}

.step:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 90, 87, 0.45);
	box-shadow: 0 24px 54px rgba(0, 0, 0, 0.42);
}

.step-num {
	position: relative;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--grad-brand);
	color: #fff;
	font-size: 1.2rem;
	box-shadow: 0 10px 26px rgba(255, 80, 80, 0.45);
	margin-bottom: 20px;
}

.step-num::before {
	counter-increment: step;
	content: counter(step, decimal-leading-zero);
	position: absolute;
	top: -10px;
	inset-inline-end: -10px;
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--bg-1);
	border: 1px solid rgba(255, 122, 61, 0.5);
	font-family: var(--font-latin);
	font-size: 0.72rem;
	color: var(--salmon);
}

.step h3 {
	font-size: 1.12rem;
	margin-bottom: 10px;
}

.step p {
	color: var(--muted);
	font-size: 0.92rem;
	margin: 0;
}

/* --------------------------------------------------------------------------
   Features
   -------------------------------------------------------------------------- */

.feat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	perspective: 1000px;
}

.feat-card {
	--mx: 50%;
	--my: 50%;
	position: relative;
	padding: 36px 30px;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: linear-gradient(165deg, var(--surface-strong), rgba(255, 255, 255, 0.015));
	overflow: hidden;
	transition: border-color 0.4s ease, box-shadow 0.4s ease;
	will-change: transform;
}

.feat-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(400px circle at var(--mx) var(--my), rgba(255, 61, 107, 0.12), transparent 45%);
	opacity: 0;
	transition: opacity 0.45s ease;
	pointer-events: none;
}

.feat-card::after {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 18%;
	bottom: 18%;
	width: 3px;
	border-radius: 3px;
	background: linear-gradient(180deg, #ff7a3d, #ff3d6b);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.5s var(--ease-out);
}

.feat-card:hover {
	border-color: rgba(255, 61, 107, 0.42);
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

.feat-card:hover::before {
	opacity: 1;
}

.feat-card:hover::after {
	transform: scaleY(1);
}

.feat-icon {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border-radius: 16px;
	color: var(--orange);
	background: rgba(255, 122, 61, 0.09);
	border: 1px solid rgba(255, 122, 61, 0.28);
	font-size: 1.25rem;
	margin-bottom: 20px;
	transition: all 0.4s var(--ease-out);
}

.feat-card:hover .feat-icon {
	background: var(--grad-brand);
	color: #fff;
	box-shadow: 0 12px 28px rgba(255, 74, 90, 0.4);
	transform: rotate(-6deg) scale(1.06);
}

.feat-card h3 {
	font-size: 1.14rem;
	margin-bottom: 12px;
}

.feat-card p {
	color: var(--muted);
	font-size: 0.94rem;
	margin: 0;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-list {
	max-width: 820px;
	margin-inline: auto;
	display: grid;
	gap: 14px;
}

.faq-item {
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--surface);
	overflow: hidden;
	transition: border-color 0.4s ease, background-color 0.4s ease;
}

.faq-item.open {
	border-color: rgba(255, 90, 87, 0.4);
	background: rgba(255, 122, 61, 0.04);
}

.faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	background: none;
	border: 0;
	color: #fff;
	font-size: 1.02rem;
	font-weight: 600;
	text-align: start;
	line-height: 1.6;
}

.faq-ic {
	flex: none;
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	border: 1px solid rgba(255, 90, 87, 0.35);
	color: var(--coral);
	font-size: 0.8rem;
	transition: all 0.45s var(--ease-out);
}

.faq-item.open .faq-ic {
	background: var(--coral);
	color: #fff;
	transform: rotate(135deg);
	box-shadow: 0 0 18px rgba(255, 90, 87, 0.6);
}

.faq-a {
	height: 0;
	overflow: hidden;
}

.faq-a>div {
	padding: 0 24px 22px;
	color: var(--muted);
	font-size: 0.96rem;
}

/* --------------------------------------------------------------------------
   Booking (Calendly)
   -------------------------------------------------------------------------- */

.booking-panel {
	position: relative;
	max-width: 960px;
	margin-inline: auto;
	border-radius: 28px;
	border: 1px solid rgba(255, 122, 61, 0.28);
	background: linear-gradient(170deg, rgba(15, 29, 66, 0.75), rgba(11, 22, 48, 0.9));
	backdrop-filter: blur(16px);
	padding: clamp(28px, 5vw, 54px);
	overflow: hidden;
}

.booking-panel iframe {
	width: 100%;
	min-width: 320px;
	height: 640px;
	border: 0;
	border-radius: 18px;
	background: transparent;
}

.booking-head {
	text-align: center;
	margin-bottom: 30px;
}

.booking-head h2 {
	font-size: clamp(1.6rem, 3.4vw, 2.3rem);
	margin-bottom: 10px;
}

.booking-head p {
	color: var(--muted);
	margin: 0;
}

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */

.cta-panel {
	position: relative;
	text-align: center;
	padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 64px);
	border-radius: 32px;
	background:
		radial-gradient(ellipse 90% 120% at 50% -20%, rgba(255, 122, 61, 0.22), transparent),
		linear-gradient(170deg, #101f47, #0a1330);
	border: 1px solid rgba(255, 122, 61, 0.3);
	overflow: hidden;
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.cta-panel::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: inherit;
	padding: 1px;
	background: conic-gradient(from var(--cta-angle, 0deg), transparent 0%, rgba(255, 122, 61, 0.9) 12%, rgba(255, 61, 107, 0.9) 22%, transparent 34%);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: ctaSpin 6s linear infinite;
	pointer-events: none;
}

@property --cta-angle {
	syntax: '<angle>';
	initial-value: 0deg;
	inherits: false;
}

@keyframes ctaSpin {
	to {
		--cta-angle: 360deg;
	}
}

.cta-panel h2 {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	margin-bottom: 14px;
	position: relative;
	z-index: 1;
}

.cta-panel>p {
	color: var(--muted);
	max-width: 560px;
	margin: 0 auto 34px;
	position: relative;
	z-index: 1;
}

.cta-actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.fv-footer {
	position: relative;
	padding: clamp(60px, 8vw, 96px) 0 0;
	background:
		radial-gradient(ellipse 60% 80% at 50% 115%, rgba(255, 61, 107, 0.14), transparent),
		var(--bg-0);
	border-top: 1px solid var(--line);
	overflow: hidden;
}

.f-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
	gap: clamp(30px, 4vw, 54px);
	padding-bottom: 54px;
}

.f-logo {
	height: 56px;
	width: auto;
	margin-bottom: 20px;
}

.f-about {
	color: var(--muted);
	font-size: 0.95rem;
	max-width: 340px;
}

.f-contact li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--muted);
	font-size: 0.94rem;
	margin-bottom: 10px;
	transition: color 0.3s ease;
}

.f-contact li:hover {
	color: #fff;
}

.f-contact i {
	color: var(--orange);
	width: 18px;
	text-align: center;
}

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

.socials a {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 13px;
	border: 1px solid var(--line);
	background: var(--surface);
	color: var(--muted);
	font-size: 1rem;
	transition: all 0.4s var(--ease-out);
}

.socials a:hover {
	background: var(--grad-brand);
	color: #fff;
	border-color: transparent;
	transform: translateY(-5px) rotate(-6deg);
	box-shadow: 0 12px 28px rgba(255, 74, 90, 0.4);
}

.f-col h4 {
	font-size: 1.05rem;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 12px;
}

.f-col h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	inset-inline-start: 0;
	width: 34px;
	height: 2px;
	border-radius: 2px;
	background: var(--grad-brand);
}

.f-links li {
	margin-bottom: 11px;
}

.f-links a {
	color: var(--muted);
	font-size: 0.93rem;
	position: relative;
	transition: color 0.3s ease, padding 0.3s ease;
}

.f-links a::before {
	content: '\f104';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 0.62rem;
	margin-inline-end: 8px;
	color: var(--coral);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.f-links a:hover {
	color: #fff;
	padding-inline-start: 4px;
}

.f-links a:hover::before {
	opacity: 1;
}

.f-col--news>p {
	color: var(--muted);
	font-size: 0.92rem;
}

.nl-form {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

.nl-input {
	flex: 1;
	min-width: 0;
	padding: 13px 18px;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
	font-family: inherit;
	font-size: 0.92rem;
	outline: none;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nl-input::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.nl-input:focus {
	border-color: rgba(255, 122, 61, 0.6);
	box-shadow: 0 0 0 4px rgba(255, 122, 61, 0.12);
}

.nl-btn {
	flex: none;
	width: 50px;
	border-radius: 12px;
	border: 0;
	background: var(--grad-brand);
	color: #fff;
	font-size: 1rem;
	transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}

.nl-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 26px rgba(255, 74, 90, 0.45);
}

.nl-msg {
	display: block;
	font-size: 0.85rem;
	color: #4ade80;
	margin-top: 10px;
	opacity: 0;
	transform: translateY(6px);
	transition: all 0.4s var(--ease-out);
}

.nl-msg.show {
	opacity: 1;
	transform: translateY(0);
}

.f-bottom {
	border-top: 1px solid var(--line);
	padding: 22px 0;
	text-align: center;
	color: var(--muted);
	font-size: 0.88rem;
}

.f-bottom span {
	color: var(--salmon);
	font-weight: 600;
}

/* --------------------------------------------------------------------------
   To top
   -------------------------------------------------------------------------- */

.to-top {
	position: fixed;
	bottom: 28px;
	inset-inline-end: 28px;
	z-index: 9500;
	width: 50px;
	height: 50px;
	border-radius: 14px;
	border: 0;
	background: var(--grad-brand);
	color: #fff;
	font-size: 1rem;
	box-shadow: 0 14px 34px rgba(255, 74, 90, 0.45);
	opacity: 0;
	visibility: hidden;
	transform: translateY(18px);
	transition: all 0.45s var(--ease-out);
}

.to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.to-top:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 44px rgba(255, 61, 107, 0.6);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {

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

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

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

	.about-media {
		max-width: 520px;
		margin-inline: auto;
	}

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

	.f-col h4::after {
		inset-inline-start: 0;
	}
}

@media (max-width: 768px) {

	.fv-nav {
		position: fixed;
		inset: 0;
		z-index: 8000;
		background: rgba(6, 11, 26, 0.96);
		backdrop-filter: blur(24px);
		display: grid;
		place-items: center;
		clip-path: circle(0% at calc(100% - 60px) 60px);
		transition: clip-path 0.65s var(--ease-out);
		visibility: hidden;
	}

	body.nav-open .fv-nav {
		clip-path: circle(150% at calc(100% - 60px) 60px);
		visibility: visible;
	}

	.fv-nav__list {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}

	.fv-nav__list a {
		font-size: 1.5rem;
		font-weight: 700;
		padding: 12px 28px;
	}

	.fv-cta-btn {
		display: none;
	}

	.fv-burger {
		display: flex;
		position: relative;
		z-index: 8500;
	}

	.svc-grid,
	.steps,
	.feat-grid {
		grid-template-columns: 1fr;
	}

	.stats-row {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}

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

	.hero-actions .btn {
		width: 100%;
	}

	.scroll-hint {
		display: none;
	}
}

@media (max-width: 480px) {

	.stats-row {
		grid-template-columns: 1fr;
	}

	.stat {
		display: flex;
		align-items: baseline;
		justify-content: space-between;
		padding: 16px 20px;
	}
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.001s !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001s !important;
	}

	html {
		scroll-behavior: auto;
	}

	.grain,
	.cursor-dot,
	.cursor-ring,
	#fv-canvas {
		display: none !important;
	}
}
