/* =========================================================
   Forefront Systems — Modern UI layer (2026 refresh)
   Scoped with .ff-* classes so it never clashes with the
   existing Porto theme. Reuses the brand blue palette.
   ========================================================= */

:root {
	--ff-blue: #0057db;
	--ff-blue-2: #378fff;
	--ff-blue-dk: #002d6e;
	--ff-red: #d7000b;
	--ff-ink: #1c2b46;
	--ff-muted: #5a6a85;
	--ff-line: #e7ecf3;
	--ff-bg-soft: #f5f8fd;
}

.ff-scope,
.ff-scope p,
.ff-scope li,
.ff-scope strong,
.ff-scope h1,
.ff-scope h2,
.ff-scope h3,
.ff-scope h4 {
	font-family: 'Prompt', sans-serif;
}

/* ---------- Reveal animation ---------- */
@keyframes ffUp {
	from { opacity: 0; transform: translateY(26px); }
	to   { opacity: 1; transform: none; }
}
.ff-up { animation: ffUp .7s cubic-bezier(.22,.61,.36,1) both; }
.ff-up.d1 { animation-delay: .08s; }
.ff-up.d2 { animation-delay: .16s; }
.ff-up.d3 { animation-delay: .24s; }
.ff-up.d4 { animation-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
	.ff-up { animation: none; }
}

/* ---------- Hero ---------- */
.ff-hero {
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}
.ff-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(0,45,110,.92) 0%, rgba(0,87,219,.72) 55%, rgba(55,143,255,.55) 100%);
}
.ff-hero::after {
	content: "";
	position: absolute;
	right: -120px;
	top: -120px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(255,255,255,.16), rgba(255,255,255,0) 70%);
	pointer-events: none;
}
.ff-hero .ff-hero-inner {
	position: relative;
	z-index: 2;
	padding: 78px 0 70px;
}
.ff-eyebrow {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 30px;
	background: rgba(255,255,255,.16);
	border: 1px solid rgba(255,255,255,.3);
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.ff-hero h1 {
	color: #fff;
	font-weight: 600;
	letter-spacing: .5px;
	font-size: 44px;
	line-height: 1.15;
	text-shadow: 0 6px 26px rgba(0,0,0,.25);
	margin: 0;
	text-transform: uppercase;
}
.ff-hero p {
	color: rgba(255,255,255,.94) !important;
	max-width: 780px;
	margin: 16px auto 0 !important;
	font-size: 17px;
	line-height: 1.6 !important;
}
@media (max-width: 767px) {
	.ff-hero h1 { font-size: 31px; }
	.ff-hero .ff-hero-inner { padding: 54px 0 48px; }
}

/* ---------- Section + heading ---------- */
.ff-section { padding: 64px 0; }
.ff-section.soft { background: var(--ff-bg-soft); }
.ff-section.tint {
	background: linear-gradient(180deg, #fff 0%, var(--ff-bg-soft) 100%);
}
.ff-head { margin-bottom: 36px; }
.ff-kicker {
	display: inline-block;
	color: var(--ff-blue);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.ff-head h2 {
	color: var(--ff-ink);
	font-weight: 600;
	font-size: 30px;
	margin: 0;
	position: relative;
	display: inline-block;
}
.ff-head h2::after {
	content: "";
	display: block;
	width: 56px;
	height: 4px;
	border-radius: 4px;
	margin-top: 14px;
	background: linear-gradient(120deg, var(--ff-blue-2), var(--ff-blue));
}
.ff-head.center { text-align: center; }
.ff-head.center h2::after { margin-left: auto; margin-right: auto; }
.ff-head p { color: var(--ff-muted); margin-top: 14px !important; max-width: 720px; }
.ff-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- Product / gallery card ---------- */
.ff-card {
	display: block;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(16,42,92,.08);
	transition: transform .35s ease, box-shadow .35s ease;
	height: 100%;
	text-decoration: none !important;
}
.ff-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 22px 46px rgba(16,42,92,.18);
}
.ff-card__media {
	position: relative;
	overflow: hidden;
}
.ff-card__img {
	width: 100%;
	padding-top: 74%;
	background-size: cover;
	background-position: center;
	transition: transform .55s ease;
}
.ff-card:hover .ff-card__img { transform: scale(1.07); }
.ff-card__media::after {
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	right: 14px;
	bottom: 14px;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	border-radius: 50%;
	background: var(--ff-blue);
	color: #fff;
	transform: translateY(12px);
	opacity: 0;
	transition: .35s ease;
}
.ff-card:hover .ff-card__media::after { transform: none; opacity: 1; }
.ff-card__body {
	padding: 15px 16px;
	text-align: center;
	color: var(--ff-ink);
	font-weight: 500;
	font-size: 15.5px;
}

/* ---------- Feature card (services) ---------- */
.ff-feature {
	background: #fff;
	border: 1px solid var(--ff-line);
	border-radius: 18px;
	padding: 30px 28px;
	height: 100%;
	box-shadow: 0 8px 26px rgba(16,42,92,.06);
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.ff-feature:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 44px rgba(16,42,92,.14);
	border-color: transparent;
}
.ff-feature__icon {
	width: 62px;
	height: 62px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: #fff;
	margin-bottom: 18px;
	background: linear-gradient(135deg, var(--ff-blue-2), var(--ff-blue));
	box-shadow: 0 10px 22px rgba(0,87,219,.28);
}
.ff-feature h3 {
	color: var(--ff-ink);
	font-weight: 600;
	font-size: 21px;
	margin: 0 0 6px;
}
.ff-feature .ff-feature__lead {
	color: var(--ff-muted);
	margin-bottom: 16px !important;
}

/* ---------- Check / arrow list ---------- */
.ff-list { list-style: none; padding: 0; margin: 0; }
.ff-list li {
	position: relative;
	padding: 9px 0 9px 30px;
	color: #44516a;
	border-bottom: 1px dashed var(--ff-line);
	line-height: 1.55;
}
.ff-list li:last-child { border-bottom: 0; }
.ff-list li::before {
	content: "\f00c";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: var(--ff-blue);
	position: absolute;
	left: 0;
	top: 10px;
	font-size: 13px;
}
.ff-list.dot li::before { content: "\f111"; font-size: 7px; top: 15px; }

/* ---------- Sub-block label inside feature ---------- */
.ff-sublabel {
	display: block;
	color: var(--ff-blue-dk);
	font-weight: 600;
	font-size: 15.5px;
	margin: 18px 0 6px;
}

/* ---------- Chips / tags ---------- */
.ff-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ff-chip {
	display: inline-block;
	padding: 7px 16px;
	border-radius: 30px;
	background: #eaf2ff;
	color: var(--ff-blue) !important;
	font-size: 13.5px;
	font-weight: 500;
	text-decoration: none !important;
	transition: .25s ease;
}
.ff-chip:hover {
	background: var(--ff-blue);
	color: #fff !important;
	transform: translateY(-2px);
}

/* ---------- Media frame ---------- */
.ff-frame {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(16,42,92,.16);
	line-height: 0;
}
.ff-frame img { width: 100%; height: auto; display: block; }

/* ---------- Info card (about / map / partners) ---------- */
.ff-panel {
	background: #fff;
	border: 1px solid var(--ff-line);
	border-radius: 18px;
	padding: 28px 30px;
	box-shadow: 0 8px 26px rgba(16,42,92,.06);
}
.ff-lead {
	color: var(--ff-ink);
	font-size: 17px;
	line-height: 1.7 !important;
}
.ff-muted { color: var(--ff-muted) !important; }

/* ---------- Partner / location pills ---------- */
.ff-pill {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--ff-bg-soft);
	border: 1px solid var(--ff-line);
	border-radius: 12px;
	padding: 12px 16px;
	color: var(--ff-ink);
	font-weight: 500;
	height: 100%;
	transition: .25s ease;
}
.ff-pill:hover {
	background: #fff;
	box-shadow: 0 10px 24px rgba(16,42,92,.1);
	transform: translateY(-3px);
}
.ff-pill i { color: var(--ff-blue); font-size: 18px; }

/* ---------- Stat / highlight ---------- */
.ff-stat { text-align: center; padding: 10px; }
.ff-stat .ff-stat__num {
	font-weight: 700;
	font-size: 38px;
	line-height: 1;
	background: linear-gradient(120deg, var(--ff-blue-2), var(--ff-blue));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.ff-stat .ff-stat__label { color: var(--ff-muted); font-size: 14px; margin-top: 6px; }

/* ---------- CTA band ---------- */
.ff-cta {
	position: relative;
	overflow: hidden;
	border-radius: 22px;
	padding: 44px 40px;
	background: linear-gradient(120deg, var(--ff-blue-dk), var(--ff-blue));
	color: #fff;
	box-shadow: 0 20px 50px rgba(0,45,110,.3);
}
.ff-cta::after {
	content: "";
	position: absolute;
	right: -80px; bottom: -120px;
	width: 360px; height: 360px;
	background: radial-gradient(circle, rgba(255,255,255,.14), rgba(255,255,255,0) 70%);
}
.ff-cta h3 { color: #fff; font-weight: 600; margin: 0 0 6px; font-size: 26px; }
.ff-cta p { color: rgba(255,255,255,.9) !important; margin: 0 !important; }
.ff-btn {
	display: inline-block;
	background: #fff;
	color: var(--ff-blue) !important;
	font-weight: 600;
	padding: 13px 30px;
	border-radius: 40px;
	text-decoration: none !important;
	transition: .25s ease;
	white-space: nowrap;
}
.ff-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.22); }
.ff-btn.ghost {
	background: transparent;
	color: #fff !important;
	border: 2px solid rgba(255,255,255,.6);
}
.ff-btn.ghost:hover { background: rgba(255,255,255,.12); }

/* ---------- PDPA cookie consent ---------- */
.ff-cookie {
	position: fixed;
	left: 16px; right: 16px; bottom: 16px;
	z-index: 20000;
	background: #fff;
	border: 1px solid var(--ff-line);
	border-radius: 16px;
	box-shadow: 0 16px 50px rgba(16,42,92,.22);
	animation: ffUp .5s both;
}
.ff-cookie[hidden], .ff-cookie-modal[hidden] { display: none; }
.ff-cookie__inner {
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 20px 24px;
	flex-wrap: wrap;
}
.ff-cookie__text { flex: 1 1 420px; }
.ff-cookie__title { color: var(--ff-ink); font-size: 16px; display: block; margin-bottom: 4px; }
.ff-cookie__title i { color: var(--ff-blue); }
.ff-cookie__text p { color: var(--ff-muted); font-size: 14px; line-height: 1.6 !important; margin: 0 !important; }
.ff-cookie__text a { color: var(--ff-blue); text-decoration: underline; }
.ff-cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.ff-cookie__btn {
	border: 0;
	cursor: pointer;
	font-family: 'Prompt', sans-serif;
	font-size: 14px;
	font-weight: 500;
	padding: 11px 20px;
	border-radius: 40px;
	transition: .25s ease;
	white-space: nowrap;
}
.ff-cookie__btn.solid {
	background: linear-gradient(120deg, var(--ff-blue-2), var(--ff-blue));
	color: #fff;
}
.ff-cookie__btn.solid:hover { box-shadow: 0 10px 24px rgba(0,87,219,.32); transform: translateY(-2px); }
.ff-cookie__btn.ghost {
	background: #eef4ff;
	color: var(--ff-blue);
}
.ff-cookie__btn.ghost:hover { background: #dfeaff; }
@media (max-width: 640px) {
	.ff-cookie__actions { width: 100%; }
	.ff-cookie__actions .ff-cookie__btn { flex: 1 1 auto; }
}

/* Preferences modal */
.ff-cookie-modal {
	position: fixed;
	inset: 0;
	z-index: 20001;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}
.ff-cookie-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(12,24,48,.55);
	backdrop-filter: blur(2px);
}
.ff-cookie-modal__box {
	position: relative;
	background: #fff;
	border-radius: 18px;
	width: 100%;
	max-width: 560px;
	max-height: 88vh;
	overflow: auto;
	box-shadow: 0 30px 70px rgba(16,42,92,.35);
	animation: ffUp .35s both;
}
.ff-cookie-modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid var(--ff-line);
}
.ff-cookie-modal__head h3 { margin: 0; font-size: 19px; color: var(--ff-ink); font-weight: 600; }
.ff-cookie-modal__head h3 i { color: var(--ff-blue); }
.ff-cookie-modal__x {
	border: 0; background: none; font-size: 26px; line-height: 1;
	color: var(--ff-muted); cursor: pointer;
}
.ff-cookie-modal__body { padding: 18px 24px; }
.ff-cookie-cat {
	border: 1px solid var(--ff-line);
	border-radius: 14px;
	padding: 16px 18px;
	margin-bottom: 14px;
	background: var(--ff-bg-soft);
}
.ff-cookie-cat__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	color: var(--ff-ink);
	margin-bottom: 6px;
}
.ff-cookie-cat p { color: var(--ff-muted); font-size: 13.5px; line-height: 1.55 !important; margin: 0 !important; }
.ff-cookie-cat__always { font-size: 12.5px; color: #1aa260; font-weight: 600; }
.ff-cookie-modal__foot {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	padding: 16px 24px 22px;
	flex-wrap: wrap;
}
/* toggle switch */
.ff-switch { position: relative; display: inline-block; width: 46px; height: 26px; }
.ff-switch input { opacity: 0; width: 0; height: 0; }
.ff-switch__slider {
	position: absolute; cursor: pointer; inset: 0;
	background: #c8d2e0; border-radius: 30px; transition: .25s;
}
.ff-switch__slider::before {
	content: ""; position: absolute; height: 20px; width: 20px;
	left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: .25s;
}
.ff-switch input:checked + .ff-switch__slider { background: linear-gradient(120deg, var(--ff-blue-2), var(--ff-blue)); }
.ff-switch input:checked + .ff-switch__slider::before { transform: translateX(20px); }

/* ---------- Modern footer ---------- */
.ff-foot { padding: 58px 0 34px; }
.ff-foot__brand {
	font-family: 'Prompt', sans-serif;
	color: #fff;
	font-size: 23px;
	font-weight: 600;
	line-height: 1.2;
	display: block;
}
.ff-foot__tag {
	color: #9fb0c6 !important;
	font-size: 14px;
	line-height: 1.75 !important;
	margin-top: 12px !important;
}
.ff-foot__head {
	color: #fff;
	font-family: 'Prompt', sans-serif;
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 20px;
	padding-bottom: 10px;
	position: relative;
}
.ff-foot__head::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0;
	width: 34px; height: 3px;
	border-radius: 3px;
	background: linear-gradient(120deg, var(--ff-blue-2), var(--ff-blue));
}
.ff-foot__links, .ff-foot__contact { list-style: none; padding: 0; margin: 0; }
.ff-foot__links li { margin-bottom: 11px; }
.ff-foot__links a {
	color: #b9c5d6;
	text-decoration: none;
	font-size: 14.5px;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	transition: color .2s ease, transform .2s ease;
}
.ff-foot__links a:hover { color: #fff; transform: translateX(3px); }
.ff-foot__links a i { color: var(--ff-blue-2); font-size: 12px; }
.ff-foot__contact li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 14px;
	color: #b9c5d6;
	font-size: 14.5px;
	line-height: 1.6;
}
.ff-foot__contact li > i { position: absolute; left: 0; top: 4px; color: var(--ff-blue-2); }
.ff-foot__contact a { color: #b9c5d6; text-decoration: none; word-break: break-word; }
.ff-foot__contact a:hover { color: #fff; }
.ff-foot__social { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.ff-foot__social .ff-social { width: 42px; height: 42px; font-size: 18px; }
.ff-foot__fb {
	border-radius: 12px;
	overflow: hidden;
	line-height: 0;
	max-width: 100%;
}
.ff-foot hr {
	border: 0;
	border-top: 1px solid rgba(255,255,255,.08);
	margin: 8px 0 30px;
}

/* ---------- Social buttons (always visible) ---------- */
.ff-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	color: #fff !important;
	font-size: 19px;
	text-decoration: none !important;
	background: var(--c, var(--ff-blue));
	box-shadow: 0 8px 20px rgba(16,42,92,.22);
	transition: transform .25s ease, box-shadow .25s ease;
}
.ff-social:hover {
	transform: translateY(-3px) scale(1.06);
	box-shadow: 0 12px 26px rgba(16,42,92,.3);
	color: #fff !important;
}

/* ---------- Anti-spam honeypot (hidden from humans) ---------- */
.ff-hp {
	position: absolute !important;
	left: -9999px !important;
	top: -9999px !important;
	width: 1px; height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

/* ---------- Alerts ---------- */
.ff-alert {
	border-radius: 12px;
	padding: 14px 18px;
	font-size: 14.5px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	line-height: 1.5;
}
.ff-alert i { font-size: 18px; flex: 0 0 auto; }
.ff-alert.success { background: #e6f7ee; color: #157a45; border: 1px solid #b7e7cd; }
.ff-alert.error   { background: #fdecec; color: #b3261e; border: 1px solid #f5c6c4; }

/* ---------- Form fields ---------- */
.ff-label {
	display: block;
	font-family: 'Prompt', sans-serif;
	font-weight: 500;
	color: var(--ff-ink);
	font-size: 14px;
	margin-bottom: 6px;
}
.ff-input {
	font-family: 'Prompt', sans-serif !important;
	border: 1px solid var(--ff-line) !important;
	border-radius: 12px !important;
	background: #fff !important;
	padding: 12px 16px !important;
	height: auto !important;
	color: var(--ff-ink) !important;
	box-shadow: none !important;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.ff-input:focus {
	border-color: var(--ff-blue) !important;
	box-shadow: 0 0 0 3px rgba(0,87,219,.12) !important;
}
.ff-input::placeholder { color: #9aa7bd; }

/* ---------- Floating action button (speed-dial) ---------- */
.ff-fab {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9000;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}
/* main toggle */
.ff-fab__toggle {
	position: relative;
	width: 60px;
	height: 60px;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	color: #fff;
	font-size: 24px;
	background: linear-gradient(135deg, var(--ff-blue-2), var(--ff-blue));
	box-shadow: 0 12px 26px rgba(0,87,219,.42);
	transition: transform .3s ease, box-shadow .3s ease;
}
.ff-fab__toggle:hover { transform: scale(1.06); }
.ff-fab__toggle i {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%) rotate(0deg);
	transition: opacity .25s ease, transform .35s ease;
}
.ff-fab__ic-close { opacity: 0; transform: translate(-50%,-50%) rotate(-90deg); }
.ff-fab.open .ff-fab__toggle { background: linear-gradient(135deg, #6b7a93, var(--ff-ink)); }
.ff-fab.open .ff-fab__ic-open { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
.ff-fab.open .ff-fab__ic-close { opacity: 1; transform: translate(-50%,-50%) rotate(0deg); }
/* subtle attention pulse on the toggle */
.ff-fab__toggle::after {
	content: "";
	position: absolute; inset: 0;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(0,87,219,.45);
	animation: ffFabPulse 2.4s infinite;
}
.ff-fab.open .ff-fab__toggle::after { animation: none; }
@keyframes ffFabPulse {
	0%   { box-shadow: 0 0 0 0 rgba(0,87,219,.45); }
	70%  { box-shadow: 0 0 0 16px rgba(0,87,219,0); }
	100% { box-shadow: 0 0 0 0 rgba(0,87,219,0); }
}
/* channel items */
.ff-fab__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
.ff-fab__item {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff !important;
	font-size: 21px;
	text-decoration: none !important;
	background: var(--c, var(--ff-blue));
	box-shadow: 0 8px 20px rgba(16,42,92,.28);
	/* hidden state */
	opacity: 0;
	transform: translateY(16px) scale(.6);
	pointer-events: none;
	transition: opacity .25s ease, transform .3s ease;
}
.ff-fab.open .ff-fab__item {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}
.ff-fab.open .ff-fab__item:nth-child(1) { transition-delay: .04s; }
.ff-fab.open .ff-fab__item:nth-child(2) { transition-delay: .09s; }
.ff-fab.open .ff-fab__item:nth-child(3) { transition-delay: .14s; }
.ff-fab.open .ff-fab__item:nth-child(4) { transition-delay: .19s; }
.ff-fab__item:hover { transform: scale(1.1); }
/* hover label */
.ff-fab__item::after {
	content: attr(data-label);
	position: absolute;
	right: 62px;
	white-space: nowrap;
	background: var(--ff-ink);
	color: #fff;
	font-family: 'Prompt', sans-serif;
	font-size: 13px;
	padding: 6px 12px;
	border-radius: 8px;
	opacity: 0;
	transform: translateX(8px);
	transition: .2s ease;
	pointer-events: none;
}
.ff-fab__item:hover::after { opacity: 1; transform: none; }
/* back to top */
.ff-fab__top {
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	color: var(--ff-blue);
	background: #fff;
	font-size: 17px;
	box-shadow: 0 8px 22px rgba(16,42,92,.2);
	opacity: 0;
	transform: translateY(12px) scale(.7);
	pointer-events: none;
	transition: .3s ease;
}
.ff-fab.scrolled .ff-fab__top {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}
.ff-fab__top:hover { color: #fff; background: var(--ff-blue); }
@media (max-width: 575px) {
	.ff-fab { right: 14px; bottom: 14px; }
	.ff-fab__toggle { width: 54px; height: 54px; font-size: 22px; }
}
