/* ==========================================================================
   FixerLA Design System
   Stripe × Notion × Intercom — clean sections, organic transitions
   ========================================================================== */

/* ── 1. CSS Variables ─────────────────────────────────────────────────── */
:root {
	--color-dark:         #0F172A;
	--color-blue:         #1D4ED8;
	--color-blue-hover:   #1a44c4;
	--color-orange:       #F97316;
	--color-orange-hover: #ea6a0a;
	--color-gray:         #E2E8F0;
	--color-bg:           #F8FAFC;
	--color-white:        #FFFFFF;
	--color-text:         #334155;
	--color-muted:        #64748B;
	--color-border:       #CBD5E1;
	--color-star:         #FBBF24;
	--color-success:      #16A34A;
	--color-error:        #DC2626;

	--font-heading: 'Manrope', system-ui, sans-serif;
	--font-body:    'Inter', system-ui, sans-serif;

	--text-xs:   0.75rem;
	--text-sm:   0.875rem;
	--text-base: 1rem;
	--text-lg:   1.125rem;
	--text-xl:   1.25rem;
	--text-2xl:  1.5rem;
	--text-3xl:  1.875rem;
	--text-4xl:  2.25rem;
	--text-5xl:  clamp(2.25rem, 4vw, 3rem);

	--r-sm:   8px;
	--r-md:   14px;
	--r-lg:   20px;
	--r-xl:   28px;
	--r-full: 9999px;
	--r-btn:  100px;

	--shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
	--shadow-md: 0 6px 24px rgba(15, 23, 42, 0.10);
	--shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.14);
	--shadow-xl: 0 24px 64px rgba(15, 23, 42, 0.18);

	--ease: cubic-bezier(0.4, 0, 0.2, 1);
	--dur:  220ms;

	--container:     1200px;
	--header-h:      72px;
	--section-gap:   clamp(4rem, 8vw, 6rem);
}

/* ── 2. Reset & base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--text-base);
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	padding-bottom: env(safe-area-inset-bottom, 0);
}

body.drawer-open {
	overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--color-dark);
	line-height: 1.2;
	margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

a {
	color: var(--color-blue);
	text-decoration: none;
	transition: color var(--dur) var(--ease);
}

a:hover { color: var(--color-blue-hover); }

img, svg { display: block; max-width: 100%; }

ul, ol { margin: 0; padding: 0; list-style: none; }

button, input, select, textarea {
	font-family: inherit;
	font-size: inherit;
}

/* ── 3. Layout & sections (organic transitions) ───────────────────────── */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.section {
	position: relative;
	padding-block: var(--section-gap);
}

.section--white   { background: var(--color-white); }
.section--muted   { background: var(--color-bg); }
.section--dark    { background: var(--color-dark); color: rgba(255,255,255,0.88); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--color-white); }

/* Soft organic fade between sections */
.section--fade-top::before,
.section--fade-bottom::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 80px;
	pointer-events: none;
	z-index: 1;
}

.section--fade-top::before {
	top: 0;
	background: linear-gradient(180deg, var(--color-bg) 0%, transparent 100%);
}

.section--fade-bottom::after {
	bottom: 0;
	background: linear-gradient(0deg, var(--color-bg) 0%, transparent 100%);
}

.section__header {
	text-align: center;
	max-width: 640px;
	margin-inline: auto;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section__title {
	font-size: var(--text-3xl);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.section__subtitle {
	color: var(--color-muted);
	font-size: var(--text-lg);
	margin: 0.75rem 0 0;
	line-height: 1.5;
}

.section__footer {
	text-align: center;
	margin-top: 2.5rem;
}

.grid {
	display: grid;
	gap: 1.25rem;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.text-center { text-align: center; }

.skip-link {
	position: absolute;
	top: -100px;
	left: 1rem;
	z-index: 10000;
	padding: 0.5rem 1rem;
	background: var(--color-dark);
	color: var(--color-white);
	border-radius: var(--r-sm);
}

.skip-link:focus { top: 1rem; }

/* Scroll animations */
.animate-ready {
	opacity: 0;
	transform: translateY(20px);
}

.animate-in {
	animation: fadeInUp 0.6s var(--ease) forwards;
}

/* ── 4. Buttons ───────────────────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--font-body);
	font-weight: 600;
	line-height: 1.3;
	border: 2px solid transparent;
	border-radius: var(--r-btn);
	cursor: pointer;
	text-decoration: none;
	transition:
		background var(--dur) var(--ease),
		color var(--dur) var(--ease),
		border-color var(--dur) var(--ease),
		transform var(--dur) var(--ease),
		box-shadow var(--dur) var(--ease);
	white-space: nowrap;
}

.services-tabs__btn,
.gallery-filter-btn,
.lang-switcher__btn,
.float-review-btn,
.mobile-cta-call,
.menu-toggle,
.modal-close-btn,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.seo-sa-pill,
.quote-form button[type="submit"] {
	border-radius: var(--r-btn);
}

.btn-sm  { padding: 0.5rem 1rem;   font-size: var(--text-sm); }
.btn-md  { padding: 0.7rem 1.35rem; font-size: var(--text-sm); }
.btn-lg  { padding: 0.95rem 1.75rem; font-size: var(--text-base); }
.btn-block { width: 100%; }

.btn-primary {
	background: var(--color-orange);
	color: var(--color-white);
	border-color: var(--color-orange);
}

.btn-primary:hover {
	background: var(--color-orange-hover);
	border-color: var(--color-orange-hover);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-secondary {
	background: var(--color-blue);
	color: var(--color-white);
	border-color: var(--color-blue);
}

.btn-secondary:hover {
	background: var(--color-blue-hover);
	border-color: var(--color-blue-hover);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-outline {
	background: transparent;
	color: var(--color-dark);
	border-color: var(--color-border);
}

.btn-outline:hover {
	border-color: var(--color-blue);
	color: var(--color-blue);
	background: rgba(29, 78, 216, 0.04);
}

.btn-ghost {
	background: transparent;
	color: var(--color-text);
	border-color: transparent;
}

.btn-ghost:hover {
	background: var(--color-gray);
	color: var(--color-dark);
}

.btn-white {
	background: var(--color-white);
	color: var(--color-orange);
	border-color: var(--color-white);
}

.btn-white:hover {
	background: var(--color-gray);
	color: var(--color-orange-hover);
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

.btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	transform: none !important;
	box-shadow: none !important;
}

/* ── 5. Logo ──────────────────────────────────────────────────────────── */
.logo {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
	color: inherit;
}

.logo__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--color-blue) 0%, #2563eb 100%);
	border-radius: var(--r-md);
	color: var(--color-white);
	box-shadow: var(--shadow-sm);
}

.logo__icon svg { width: 22px; height: 22px; }

.logo__text {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 1.375rem;
	letter-spacing: -0.03em;
	line-height: 1;
	color: var(--color-dark);
}

.logo__accent { color: var(--color-orange); }

.logo--light .logo__text { color: var(--color-white); }
.logo--light .logo__icon { background: rgba(255,255,255,0.12); box-shadow: none; }

/* ── 6. Header ────────────────────────────────────────────────────────── */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	height: var(--header-h);
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid transparent;
	transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.site-header.is-scrolled {
	border-bottom-color: rgba(203, 213, 225, 0.6);
	box-shadow: var(--shadow-sm);
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-h);
	gap: 1rem;
}

.header__actions {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.header__phone {
	display: none;
	align-items: center;
	gap: 0.4rem;
	font-weight: 600;
	font-size: var(--text-sm);
	color: var(--color-dark);
	text-decoration: none;
}

.header__phone:hover { color: var(--color-blue); }

.header__phone svg { color: var(--color-orange); }

.header__cta { display: none; }

.burger {
	display: none;
}

/* Hamburger menu toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: var(--color-bg);
	border-radius: var(--r-btn);
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--color-dark);
	border-radius: 2px;
	transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Main nav */
.main-nav { display: flex; }

.main-nav__list {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.main-nav__item { position: relative; }

.main-nav__link,
.main-nav__trigger {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.5rem 0.85rem;
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-text);
	background: none;
	border: none;
	border-radius: var(--r-sm);
	cursor: pointer;
	text-decoration: none;
	transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.main-nav__link:hover,
.main-nav__trigger:hover,
.main-nav__item.is-open .main-nav__trigger {
	background: var(--color-bg);
	color: var(--color-dark);
}

.main-nav__chevron {
	width: 14px;
	height: 14px;
	transition: transform var(--dur) var(--ease);
}

.main-nav__item.is-open .main-nav__chevron { transform: rotate(180deg); }

/* Mega dropdown */
.mega-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 420px;
	padding: 1.25rem;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-lg);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity var(--dur) var(--ease),
		transform var(--dur) var(--ease),
		visibility var(--dur) var(--ease);
}

.main-nav__item.is-open .mega-dropdown,
.main-nav__item:hover .mega-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.mega-dropdown--2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
	min-width: 480px;
}

.mega-dropdown__title {
	font-size: var(--text-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--color-muted);
	margin-bottom: 0.65rem;
}

.mega-dropdown__link {
	display: block;
	padding: 0.45rem 0.5rem;
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-text);
	border-radius: var(--r-sm);
	transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.mega-dropdown__link:hover {
	background: var(--color-bg);
	color: var(--color-blue);
}

.mega-dropdown__link--all {
	margin-top: 0.5rem;
	font-weight: 600;
	color: var(--color-blue);
}

/* Mobile drawer */
.mobile-drawer {
	position: fixed;
	inset: 0;
	z-index: 1100;
	pointer-events: none;
	visibility: hidden;
}

.mobile-drawer.is-open {
	pointer-events: auto;
	visibility: visible;
}

.drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.45);
	z-index: 1101;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}

.drawer-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

.drawer-nav {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: min(320px, 88vw);
	background: var(--color-white);
	z-index: 1200;
	transform: translateX(-100%);
	transition: transform 0.3s var(--ease);
	box-shadow: var(--shadow-xl);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.mobile-drawer.is-open .drawer-nav {
	transform: translateX(0);
}

.drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--color-border);
	flex-shrink: 0;
}

.drawer-close {
	width: 40px;
	height: 40px;
	border: none;
	background: var(--color-bg);
	border-radius: var(--r-sm);
	cursor: pointer;
	color: var(--color-dark);
	font-size: 1.1rem;
	line-height: 1;
}

.drawer-body {
	padding: 0 1.25rem 1.5rem;
	flex: 1;
	overflow-y: auto;
}

.drawer-cta {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--color-border);
}

.drawer-lang {
	margin-top: 1rem;
}

.drawer-accordion {
	border-bottom: 1px solid var(--color-gray);
}

.drawer-accordion__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.85rem 0;
	font-weight: 700;
	font-size: var(--text-base);
	color: var(--color-dark);
	cursor: pointer;
	list-style: none;
}

.drawer-accordion__trigger::-webkit-details-marker {
	display: none;
}

.drawer-accordion__trigger::after {
	content: '›';
	font-size: 1.25rem;
	color: var(--color-muted);
	transition: transform var(--dur) var(--ease);
}

.drawer-accordion[open] .drawer-accordion__trigger::after {
	transform: rotate(90deg);
}

.drawer-accordion__body {
	padding-bottom: 0.5rem;
}

.drawer__sublink--all {
	font-weight: 600;
	color: var(--color-blue);
}

/* Legacy drawer classes (shared links) */
.drawer {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: min(320px, 88vw);
	background: var(--color-white);
	z-index: 1200;
	transform: translateX(-100%);
	transition: transform 0.3s var(--ease);
	box-shadow: var(--shadow-xl);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.drawer.is-open { transform: translateX(0); }

.drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--color-border);
}

.drawer__close {
	width: 40px;
	height: 40px;
	border: none;
	background: var(--color-bg);
	border-radius: var(--r-sm);
	cursor: pointer;
	color: var(--color-dark);
}

.drawer__nav { padding: 1rem 1.25rem; flex: 1; }

.drawer__link {
	display: block;
	padding: 0.75rem 0;
	font-weight: 600;
	font-size: var(--text-base);
	color: var(--color-dark);
	border-bottom: 1px solid var(--color-gray);
}

.drawer__group-title {
	font-size: var(--text-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--color-muted);
	margin: 1rem 0 0.5rem;
}

.drawer__sublink {
	display: block;
	padding: 0.4rem 0;
	font-size: var(--text-sm);
	color: var(--color-muted);
}

.drawer__foot {
	padding: 1.25rem;
	border-top: 1px solid var(--color-border);
}

/* ── 7. Lang switcher ─────────────────────────────────────────────────── */
.lang-switcher {
	display: inline-flex;
	padding: 3px;
	background: var(--color-gray);
	border-radius: var(--r-btn);
	gap: 2px;
}

.lang-switcher__btn {
	padding: 0.35rem 0.75rem;
	font-size: var(--text-xs);
	font-weight: 700;
	letter-spacing: 0.04em;
	border: none;
	border-radius: var(--r-btn);
	background: transparent;
	color: var(--color-muted);
	cursor: pointer;
	transition: background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.lang-switcher__btn.is-active,
.lang-switcher__btn.active,
.lang-btn.active {
	background: var(--color-white);
	color: var(--color-dark);
	box-shadow: var(--shadow-sm);
}

/* ── 8. Hero ──────────────────────────────────────────────────────────── */
.hero {
	position: relative;
	padding-block: clamp(3.5rem, 8vw, 5.5rem) clamp(4rem, 9vw, 6.5rem);
	background: var(--color-dark);
	color: var(--color-white);
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 10% 20%, rgba(29, 78, 216, 0.35) 0%, transparent 55%),
		radial-gradient(ellipse 60% 50% at 90% 80%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
	pointer-events: none;
}

.hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: center;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.4rem 0.9rem;
	margin-bottom: 1.25rem;
	font-size: var(--text-sm);
	font-weight: 600;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--r-full);
	color: rgba(255, 255, 255, 0.92);
}

.hero__title {
	font-size: var(--text-5xl);
	font-weight: 800;
	color: var(--color-white);
	letter-spacing: -0.03em;
	margin-bottom: 1rem;
}

.hero__subtitle {
	font-size: var(--text-lg);
	color: rgba(255, 255, 255, 0.78);
	max-width: 520px;
	margin-bottom: 2rem;
	line-height: 1.65;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.hero__card {
	background: var(--color-white);
	border-radius: var(--r-xl);
	padding: clamp(1.5rem, 3vw, 2rem);
	box-shadow: var(--shadow-xl);
	color: var(--color-text);
}

.hero__card-title {
	font-size: var(--text-xl);
	font-weight: 800;
	color: var(--color-dark);
	margin-bottom: 1.25rem;
}

.hero .btn-outline {
	border-color: rgba(255,255,255,0.35);
	color: var(--color-white);
}

.hero .btn-outline:hover {
	background: rgba(255,255,255,0.1);
	border-color: rgba(255,255,255,0.5);
	color: var(--color-white);
}

/* ── 9. Trust bar ─────────────────────────────────────────────────────── */
.trust-bar {
	background: var(--color-white);
	border-block: 1px solid var(--color-border);
	padding: 1.15rem 0;
}

.trust-bar__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 2rem;
}

.trust-bar__item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-text);
}

.trust-bar__item svg { color: var(--color-orange); flex-shrink: 0; }

/* ── 10. Service card ───────────────────────────────────────────────────── */
.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	padding: 1.5rem;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--color-blue), var(--color-orange));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s var(--ease);
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	color: inherit;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	background: var(--color-bg);
	border-radius: var(--r-md);
	margin-bottom: 1rem;
}

.service-card__thumb {
	margin: -1.5rem -1.5rem 1rem;
	border-radius: var(--r-lg) var(--r-lg) 0 0;
	overflow: hidden;
}

.service-card__thumb img {
	width: 100%;
	height: 160px;
	object-fit: cover;
}

.service-card__title {
	font-size: var(--text-lg);
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.service-card__desc {
	font-size: var(--text-sm);
	color: var(--color-muted);
	margin: 0 0 1rem;
	flex: 1;
	line-height: 1.55;
}

.service-card__price {
	font-size: var(--text-sm);
	font-weight: 700;
	color: var(--color-orange);
	margin-bottom: 0.75rem;
}

.service-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-blue);
	margin-top: auto;
}

/* ── 11. Area card ─────────────────────────────────────────────────────── */
.area-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	min-height: 100px;
	padding: 1.25rem 1rem;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--r-md);
	text-align: center;
	text-decoration: none;
	color: var(--color-dark);
	font-weight: 600;
	font-size: var(--text-sm);
	transition:
		background var(--dur) var(--ease),
		color var(--dur) var(--ease),
		transform var(--dur) var(--ease),
		border-color var(--dur) var(--ease),
		box-shadow var(--dur) var(--ease);
}

.area-card:hover {
	background: var(--color-blue);
	border-color: var(--color-blue);
	color: var(--color-white);
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.area-card:hover .area-card__name {
	color: var(--color-white);
}

.area-card__hint {
	font-size: var(--text-xs);
	font-weight: 500;
	opacity: 0.7;
}

.area-card:hover .area-card__hint { opacity: 0.9; }

/* ── 12. Quote form ───────────────────────────────────────────────────── */
.quote-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.quote-form.is-success .quote-form__fields {
	opacity: 0.4;
	pointer-events: none;
}

.quote-form__success {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 1.5rem;
	font-weight: 600;
	color: var(--color-success);
}

.quote-form.is-success .quote-form__success {
	display: flex;
	animation: fadeInUp 0.5s var(--ease);
}

.quote-form__success-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(22, 163, 74, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: checkPop 0.45s var(--ease) 0.15s both;
}

.form-row {
	display: grid;
	gap: 1rem;
}

.form-row--2 { grid-template-columns: 1fr 1fr; }

.form-field label {
	display: block;
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-dark);
	margin-bottom: 0.35rem;
}

.form-field .required { color: var(--color-orange); }

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--color-border);
	border-radius: var(--r-md);
	background: var(--color-white);
	color: var(--color-text);
	transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--color-blue);
	box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

.form-field.is-error input,
.form-field.is-error select,
.form-field.is-error textarea {
	border-color: var(--color-error);
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-field__error {
	display: none;
	font-size: var(--text-xs);
	color: var(--color-error);
	margin-top: 0.3rem;
}

.form-field.is-error .form-field__error { display: block; }

.form-message {
	font-size: var(--text-sm);
	min-height: 1.25rem;
}

.form-message.is-success { color: var(--color-success); }
.form-message.is-error   { color: var(--color-error); }

/* ── 13. Gallery masonry ────────────────────────────────────────────────── */
.gallery-masonry {
	columns: 3;
	column-gap: 16px;
}

.gallery-masonry__item {
	break-inside: avoid;
	margin-bottom: 16px;
	position: relative;
	border-radius: var(--r-md);
	overflow: hidden;
	background: var(--color-gray);
}

.gallery-masonry__item a {
	display: block;
	position: relative;
}

.gallery-masonry__item img {
	width: 100%;
	display: block;
	transition: transform 0.4s var(--ease);
}

.gallery-masonry__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.35s var(--ease);
}

.gallery-masonry__zoom {
	width: 44px;
	height: 44px;
	background: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0.8);
	transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
	color: var(--color-dark);
}

.gallery-masonry__item:hover img { transform: scale(1.05); }

.gallery-masonry__item:hover .gallery-masonry__overlay {
	background: rgba(15, 23, 42, 0.45);
}

.gallery-masonry__item:hover .gallery-masonry__zoom {
	opacity: 1;
	transform: scale(1);
}

.gallery-masonry__caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0.75rem 1rem;
	font-size: var(--text-sm);
	color: var(--color-white);
	background: linear-gradient(transparent, rgba(15,23,42,0.75));
}

.gallery-masonry__placeholder {
	aspect-ratio: 4/3;
	background: linear-gradient(110deg, var(--color-gray) 8%, #f1f5f9 18%, var(--color-gray) 33%);
	background-size: 200% 100%;
	animation: shimmer 1.5s linear infinite;
	border-radius: var(--r-md);
}

/* ── Gallery page ───────────────────────────────────────────────────────── */
.gallery-hero {
	padding-block: clamp(2.5rem, 6vw, 4rem);
	text-align: center;
}

.gallery-hero__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	margin: 0 0 0.75rem;
	color: var(--color-white);
}

.gallery-hero__subtitle {
	margin: 0 auto;
	max-width: 36rem;
	color: rgba(255, 255, 255, 0.72);
	font-size: var(--text-md);
}

.gallery-filters {
	position: sticky;
	top: var(--header-height, 72px);
	z-index: 40;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--color-border);
	padding: 0.75rem 0;
}

.gallery-filters__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1rem;
}

.gallery-filters__cats {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.gallery-filter-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.45rem 0.9rem;
	border-radius: var(--r-btn);
	border: 1px solid var(--color-border);
	background: var(--color-white);
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-muted);
	text-decoration: none;
	transition: all var(--dur) var(--ease);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.is-active {
	background: var(--color-dark);
	border-color: var(--color-dark);
	color: var(--color-white);
}

.gallery-area-select {
	padding: 0.45rem 2rem 0.45rem 0.85rem;
	border-radius: var(--r-md);
	border: 1px solid var(--color-border);
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-dark);
	background: var(--color-white);
	min-width: 160px;
}

.gallery-section {
	padding-top: 2rem;
}

.gallery-load-more-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	margin-top: 2.5rem;
}

.gallery-empty {
	text-align: center;
	padding: 3rem 1rem;
}

.gallery-hover .gallery-zoom-icon {
	opacity: 0;
	transform: scale(0.85);
	transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.gallery-item:hover .gallery-hover .gallery-zoom-icon,
.gallery-masonry__item:hover .gallery-masonry__zoom {
	opacity: 1;
	transform: scale(1);
}

/* ── Lightbox ───────────────────────────────────────────────────────────── */
.lightbox-dialog {
	border: none;
	padding: 0;
	max-width: min(96vw, 1100px);
	width: 100%;
	background: transparent;
	overflow: visible;
}

.lightbox-dialog::backdrop {
	background: rgba(15, 23, 42, 0.92);
	backdrop-filter: blur(6px);
}

.lightbox-dialog[open] {
	animation: modalSlideIn 0.3s var(--ease);
}

.lightbox-inner {
	position: relative;
	text-align: center;
}

.lightbox-inner img {
	max-width: 100%;
	max-height: 85vh;
	border-radius: var(--r-md);
	box-shadow: var(--shadow-xl);
}

.lightbox-caption {
	margin: 1rem 0 0;
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--text-md);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
	position: fixed;
	z-index: 10001;
	border: none;
	background: rgba(255, 255, 255, 0.12);
	color: var(--color-white);
	cursor: pointer;
	border-radius: var(--r-btn);
	transition: background var(--dur) var(--ease);
}

.lightbox-close {
	top: 1rem;
	right: 1rem;
	width: 44px;
	height: 44px;
	font-size: 1.25rem;
}

.lightbox-prev,
.lightbox-next {
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	font-size: 2rem;
	line-height: 1;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
	background: rgba(255, 255, 255, 0.25);
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ── 14. Testimonial card ───────────────────────────────────────────────── */
.testimonials-scroll {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.testimonial-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	padding: 1.5rem;
	margin: 0;
}

.testimonial-card__stars {
	color: var(--color-star);
	margin-bottom: 0.75rem;
	letter-spacing: 2px;
	font-size: var(--text-sm);
}

.testimonial-card__text {
	font-style: italic;
	color: var(--color-text);
	margin: 0 0 1rem;
	line-height: 1.65;
	font-size: var(--text-sm);
}

.testimonial-card__author {
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-muted);
	font-style: normal;
}

/* ── 15. Referral banner ────────────────────────────────────────────────── */
.referral-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
	background: var(--color-orange);
	border-radius: var(--r-xl);
	color: var(--color-white);
}

.referral-banner__icon {
	font-size: 3rem;
	line-height: 1;
	flex-shrink: 0;
}

.referral-banner__body { flex: 1; }

.referral-banner__title {
	font-size: var(--text-2xl);
	font-weight: 800;
	color: var(--color-white);
	margin-bottom: 0.35rem;
}

.referral-banner__text {
	margin: 0;
	opacity: 0.92;
	font-size: var(--text-base);
}

/* ── 16. Why us, CTA ────────────────────────────────────────────────────── */
.why-block {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 3rem;
	align-items: start;
}

.why-item {
	display: flex;
	gap: 1rem;
	padding: 1.25rem;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
}

.why-item__icon svg { color: var(--color-orange); }

.why-item__title {
	font-size: var(--text-base);
	margin-bottom: 0.25rem;
}

.why-item__text {
	font-size: var(--text-sm);
	color: var(--color-muted);
	margin: 0;
}

.cta-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.cta-block__title {
	font-size: var(--text-3xl);
	font-weight: 800;
	color: var(--color-white);
}

.cta-block__text {
	color: rgba(255,255,255,0.78);
	margin-bottom: 1.5rem;
}

.cta-block__form {
	background: var(--color-white);
	padding: 2rem;
	border-radius: var(--r-xl);
	box-shadow: var(--shadow-xl);
	color: var(--color-text);
}

.site-main {
	min-height: 50vh;
}

/* Custom logo in header */
.site-header .custom-logo-link {
	display: flex;
	align-items: center;
}

.site-header .custom-logo {
	max-height: 44px;
	width: auto;
}

/* ── 17. Waves ──────────────────────────────────────────────────────────── */
.wave {
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 56px;
	overflow: hidden;
	pointer-events: none;
	line-height: 0;
}

.wave--bottom { bottom: -1px; }
.wave--top    { top: -1px; }

.wave svg { display: block; width: 100%; height: 100%; }

/* ── 18. Footer ─────────────────────────────────────────────────────────── */
.site-footer {
	background: var(--color-dark);
	color: rgba(255, 255, 255, 0.72);
	padding-top: clamp(3rem, 6vw, 4.5rem);
	position: relative;
}

.site-footer .section__title,
.site-footer h3 { color: var(--color-white); }

.footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 2rem;
	margin-bottom: 2.5rem;
}

.footer__tagline {
	font-size: var(--text-sm);
	line-height: 1.6;
	margin: 0.85rem 0 1rem;
}

.footer__phone {
	font-size: var(--text-xl);
	font-weight: 700;
	color: var(--color-orange);
}

.footer__heading {
	font-size: var(--text-sm);
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-white);
}

.footer__menu a,
.footer__link {
	display: block;
	padding: 0.25rem 0;
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	transition: color var(--dur) var(--ease);
}

.footer__menu a:hover,
.footer__link:hover { color: var(--color-white); }

.footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.5rem 0 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: var(--text-xs);
}

.footer__bottom-links {
	display: flex;
	gap: 1.25rem;
}

.footer__bottom-links a {
	color: rgba(255, 255, 255, 0.55);
	font-size: var(--text-xs);
}

.site-footer .lang-switcher {
	background: rgba(255, 255, 255, 0.08);
}

.site-footer .lang-switcher__btn {
	color: rgba(255, 255, 255, 0.55);
}

.site-footer .lang-switcher__btn.is-active,
.site-footer .lang-switcher__btn.active,
.site-footer .lang-btn.active {
	background: var(--color-white);
	color: var(--color-dark);
}

/* ── 19. Floating UI ────────────────────────────────────────────────────── */
.float-review-btn {
	position: fixed;
	right: 20px;
	bottom: 110px;
	background: var(--color-white);
	border: 2px solid var(--color-gray);
	border-radius: var(--r-btn);
	padding: 10px 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: var(--shadow-md);
	z-index: 50;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 13px;
	color: var(--color-dark);
	text-decoration: none;
	transition: all var(--dur) var(--ease);
}

.float-review-btn:hover {
	background: #FBBF24;
	border-color: #FBBF24;
	color: var(--color-white);
	transform: translateX(-4px);
}

.float-review-stars {
	font-size: 12px;
	line-height: 1;
	letter-spacing: -1px;
}

.mobile-cta-bar {
	display: none;
}

.mobile-cta-call {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 12px;
	background: var(--color-bg);
	border: 1px solid var(--color-gray);
	border-radius: var(--r-btn);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 14px;
	color: var(--color-dark);
	text-decoration: none;
}

.mobile-cta-quote {
	flex: 1;
	justify-content: center;
}

/* ── 20. Page / misc ──────────────────────────────────────────────────────── */
.page-title {
	font-size: var(--text-4xl);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.content { max-width: 720px; line-height: 1.7; }
.content > *:last-child { margin-bottom: 0; }

.badge {
	display: inline-block;
	padding: 0.35rem 0.85rem;
	font-size: var(--text-xs);
	font-weight: 600;
	background: rgba(29, 78, 216, 0.08);
	color: var(--color-blue);
	border-radius: var(--r-full);
}

/* ── 21. Keyframes ────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes shimmer {
	0%   { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

@keyframes checkPop {
	0%   { transform: scale(0); opacity: 0; }
	70%  { transform: scale(1.1); }
	100% { transform: scale(1); opacity: 1; }
}

/* ── 22. Legacy aliases (fl-* → design system) ─────────────────────────────── */
.fl-container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.fl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-weight: 600;
	border: 2px solid transparent;
	border-radius: var(--r-md);
	cursor: pointer;
	text-decoration: none;
	padding: 0.7rem 1.35rem;
	font-size: var(--text-sm);
	transition: all var(--dur) var(--ease);
}

.fl-btn--orange, .fl-btn--blue { color: var(--color-white); }
.fl-btn--orange { background: var(--color-orange); border-color: var(--color-orange); }
.fl-btn--blue   { background: var(--color-blue); border-color: var(--color-blue); }
.fl-btn--outline { background: transparent; border-color: var(--color-border); color: var(--color-dark); }
.fl-btn--white  { background: var(--color-white); color: var(--color-orange); }
.fl-btn--lg     { padding: 0.95rem 1.75rem; font-size: var(--text-base); }
.fl-btn--block  { width: 100%; }

.fl-btn--orange:hover { background: var(--color-orange-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; }
.fl-btn--blue:hover   { background: var(--color-blue-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; }

/* ── 23. Home page (front-page) ───────────────────────────────────────────── */
[hidden] { display: none !important; }

.btn-outline-white {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.35);
	color: var(--color-white);
}

.btn-outline-white:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.55);
	color: var(--color-white);
}

/* Hero */
section.hero {
	position: relative;
	background: var(--color-dark);
	color: var(--color-white);
	padding: clamp(4rem, 10vw, 6.5rem) 0 0;
	overflow: hidden;
	min-height: clamp(520px, 72vh, 680px);
	display: flex;
	flex-direction: column;
}

section.hero.hero--photo {
	background-color: var(--color-dark);
	background-image: var(--hero-bg-image);
	background-size: cover;
	background-position: center 25%;
	background-repeat: no-repeat;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(105deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.72) 42%, rgba(15, 23, 42, 0.35) 100%),
		linear-gradient(to top, rgba(15, 23, 42, 0.55) 0%, transparent 45%);
	pointer-events: none;
}

section.hero .container {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	align-items: center;
}

.hero-grid {
	display: block;
	width: 100%;
	max-width: 720px;
	padding-bottom: 3rem;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.9rem;
	margin-bottom: 1.25rem;
	font-size: var(--text-sm);
	font-weight: 500;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--r-full);
}

.badge-pulse {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
	animation: badgePulse 2s var(--ease) infinite;
}

@keyframes badgePulse {
	0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
	70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
	100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-title {
	font-size: clamp(2.25rem, 5vw, 3.25rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: var(--color-white);
	margin-bottom: 1rem;
}

.hero-title em {
	font-style: normal;
	color: var(--color-orange);
}

.hero-desc {
	font-size: var(--text-lg);
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.65;
	margin-bottom: 1.75rem;
	max-width: 560px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-bottom: 2rem;
}

.hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat strong {
	display: block;
	font-family: var(--font-heading);
	font-size: var(--text-2xl);
	font-weight: 800;
	color: var(--color-white);
	line-height: 1.2;
}

.hero-stat span {
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.6);
}

.hero-visual {
	position: relative;
}

.hero-card {
	background: rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--r-xl);
	padding: 1.75rem;
	box-shadow: var(--shadow-xl);
}

.hero-card__title {
	font-size: var(--text-xl);
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 1.25rem;
}

.quote-form--compact .form-field label {
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--text-xs);
}

.quote-form--compact input,
.quote-form--compact select {
	background: rgba(255, 255, 255, 0.95);
	border-color: rgba(255, 255, 255, 0.2);
}

.hero-trust-badge {
	margin-top: 1rem;
	padding: 0.75rem 1rem;
	font-size: var(--text-sm);
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	background: rgba(15, 23, 42, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--r-md);
	text-align: center;
}

.hero-trust-badge--inline {
	display: inline-block;
	margin-top: 1.25rem;
	text-align: left;
}

.hero-wave {
	position: relative;
	z-index: 1;
	line-height: 0;
	margin-top: auto;
}

.hero-wave svg {
	display: block;
	width: 100%;
	height: 56px;
}

/* Trust bar home */
.trust-bar-home {
	background: var(--color-white);
	border-bottom: 1px solid var(--color-border);
	padding: 1.1rem 0;
}

.trust-bar-home__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1.75rem;
}

.trust-bar-home__item {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-text);
}

.trust-bar-home__icon { font-size: 1.1rem; }

/* Services section (home block 2) */
.home-services {
	background: #F1F5F9;
	padding: clamp(3rem, 5vw, 4.25rem) 0;
}

.home-services__inner {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.home-services__header {
	max-width: 720px;
	margin: 0 0 1.5rem;
	text-align: left;
}

.home-services__header .section-eyebrow {
	margin-bottom: 0.4rem;
}

.home-services__header .section__title {
	margin-bottom: 0.35rem;
	font-size: clamp(1.65rem, 3vw, 2rem);
}

.home-services__header .section__subtitle {
	margin: 0;
	font-size: var(--text-base);
	line-height: 1.55;
}

.section-eyebrow {
	display: inline-block;
	font-size: var(--text-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-blue);
	margin-bottom: 0.5rem;
}

.services-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	margin: 0 0 1.5rem;
}

.services-tabs__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.55rem 1.1rem;
	font-size: var(--text-sm);
	font-weight: 600;
	border: 1px solid var(--color-border);
	border-radius: var(--r-btn);
	background: var(--color-white);
	color: var(--color-text);
	cursor: pointer;
	transition: all var(--dur) var(--ease);
}

.services-tabs__btn:hover {
	border-color: var(--color-blue);
	color: var(--color-blue);
}

.services-tabs__btn.is-active {
	background: var(--color-blue);
	border-color: var(--color-blue);
	color: var(--color-white);
	box-shadow: var(--shadow-sm);
}

.services-panels {
	margin: 0;
}

.services-panel {
	margin: 0;
	animation: fadeInUp 0.35s var(--ease);
}

.services-panel[hidden] {
	display: none !important;
}

.home-services .services-grid {
	gap: 1rem;
}

.home-services .service-card {
	cursor: default;
	padding: 1.25rem;
}

.home-services .service-card__icon {
	width: 44px;
	height: 44px;
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

.home-services .service-card__title {
	margin-bottom: 0.35rem;
	font-size: var(--text-base);
}

.home-services .service-card__price {
	margin-bottom: 0.5rem;
}

.home-services .service-card__link {
	cursor: pointer;
}

.home-services .section__footer {
	margin-top: 1.75rem;
	padding-top: 0;
}

/* Areas */
.home-areas {
	padding: var(--section-gap) 0;
}

.area-card__name {
	font-size: var(--text-lg);
	font-weight: 700;
	margin: 0 0 0.35rem;
	transition: color var(--dur) var(--ease);
}

.area-card__count {
	font-size: var(--text-xs);
	color: var(--color-muted);
	margin: 0 0 0.5rem;
}

.area-card:hover .area-card__count { color: rgba(255, 255, 255, 0.75); }

/* Area landing hero */
.area-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(3rem, 8vw, 5rem) 0;
	background: var(--color-dark);
	color: var(--color-white);
}

.area-hero--photo {
	background-color: var(--color-dark);
	background-image: var(--area-hero-image);
	background-size: cover;
	background-position: center 30%;
	background-repeat: no-repeat;
	min-height: clamp(360px, 50vh, 480px);
	display: flex;
	align-items: center;
}

.area-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(105deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.65) 45%, rgba(15, 23, 42, 0.4) 100%),
		linear-gradient(to top, rgba(15, 23, 42, 0.5) 0%, transparent 50%);
	pointer-events: none;
}

.area-hero .container {
	position: relative;
	z-index: 1;
}

.area-hero__content {
	max-width: 720px;
}

.area-hero__badge {
	display: inline-flex;
	margin: 0 0 1rem;
	padding: 0.4rem 0.9rem;
	font-size: var(--text-sm);
	font-weight: 500;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--r-full);
}

.area-hero__title {
	font-size: clamp(1.85rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--color-white);
	margin: 0 0 0.85rem;
}

.area-hero--plain .area-hero__title {
	color: var(--color-white);
}

.area-hero__desc {
	margin: 0 0 1.5rem;
	font-size: var(--text-base);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
	max-width: 560px;
}

.area-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

/* Area landing — content & services spacing */
.seo-area-page > .container {
	padding-top: clamp(2rem, 4vw, 2.75rem);
	padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.seo-area-page .seo-breadcrumbs {
	margin-bottom: 1.75rem;
}

.seo-area-page__content {
	margin-top: 0;
	margin-bottom: 2.5rem;
	max-width: 720px;
	line-height: 1.7;
}

.seo-area-page__content > *:last-child {
	margin-bottom: 0;
}

.seo-area-page__content p {
	margin: 0 0 1.15em;
}

.seo-area-services {
	margin-top: 0;
}

.seo-area-page .seo-area-services .seo-sa-section-title {
	margin: 0 0 1.5rem;
}

.seo-area-page .seo-area-services .grid--3 {
	gap: 1.25rem;
}

/* Inset CTA card (area / service pages) */
.page-bottom-cta {
	background: var(--color-white);
	padding: 0 0 clamp(3rem, 6vw, 4.5rem);
}

.page-bottom-cta .container {
	padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.home-cta--card {
	border-radius: var(--r-xl);
	padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2rem);
	overflow: hidden;
}

.home-cta--card .home-cta__inner {
	padding: 0;
	max-width: none;
}

/* Contact page */
.contact-page__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: clamp(2rem, 4vw, 3rem);
	align-items: start;
}

.contact-page__intro {
	margin-bottom: 1.5rem;
	color: var(--color-muted);
}

.contact-page__details {
	list-style: none;
	margin: 0 0 1.75rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-page__detail {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.contact-page__label {
	font-size: var(--text-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--color-muted);
}

.contact-page__value {
	font-size: var(--text-lg);
	font-weight: 600;
	color: var(--color-dark);
}

a.contact-page__value {
	color: var(--color-blue);
}

.contact-page__form {
	padding: clamp(1.25rem, 3vw, 1.75rem);
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
}

.contact-page__form-title {
	font-size: var(--text-xl);
	font-weight: 800;
	margin: 0 0 1.25rem;
}

@media (max-width: 768px) {
	.contact-page__grid {
		grid-template-columns: 1fr;
	}
}

/* Services archive (/services/) */
.services-archive__group {
	margin-bottom: 2.5rem;
}

.services-archive__group:last-of-type {
	margin-bottom: 0;
}

.services-archive__heading {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 1rem;
	margin-bottom: 1.25rem;
}

.services-archive__icon {
	font-size: 1.5rem;
	line-height: 1;
}

.services-archive__title {
	font-size: var(--text-xl);
	font-weight: 800;
	margin: 0;
	flex: 1 1 auto;
}

.services-archive__more {
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-blue);
	white-space: nowrap;
}

.services-archive__more:hover {
	color: var(--color-blue-hover);
}

/* Why — dark */
.home-why {
	background: var(--color-dark);
	padding: var(--section-gap) 0;
	color: rgba(255, 255, 255, 0.88);
}

.home-why__title {
	font-size: var(--text-3xl);
	font-weight: 800;
	color: var(--color-white);
	text-align: center;
	margin-bottom: 0.5rem;
}

.home-why__subtitle {
	text-align: center;
	color: rgba(255, 255, 255, 0.65);
	max-width: 560px;
	margin: 0 auto 2.5rem;
}

.home-why__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.home-why__item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 1.25rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--r-lg);
}

.home-why__icon { font-size: 1.5rem; line-height: 1; }

.home-why__text {
	margin: 0;
	font-size: var(--text-sm);
	font-weight: 500;
	line-height: 1.5;
}

/* Gallery home header */
.home-gallery {
	padding: var(--section-gap) 0;
}

.home-gallery__header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
}

.gallery-masonry--placeholders .gallery-masonry__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 180px;
	padding: 1rem;
	text-align: center;
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-muted);
}

/* Testimonials home */
.home-testimonials {
	background: #F1F5F9;
	padding: var(--section-gap) 0;
}

.home-testimonials__header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
}

/* Referral */
.home-referral {
	padding: 0 0 var(--section-gap);
	background: var(--color-bg);
}

.home-referral .referral-banner {
	margin: 0;
}

/* CTA home */
.home-cta {
	background: var(--color-dark);
	padding: clamp(4rem, 8vw, 5.5rem) 0;
	text-align: center;
}


.home-cta__title {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 800;
	color: var(--color-white);
	margin-bottom: 0.75rem;
}

.home-cta__subtitle {
	color: rgba(255, 255, 255, 0.7);
	font-size: var(--text-lg);
	max-width: 520px;
	margin: 0 auto 1.5rem;
}

.home-cta__phone {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	color: var(--color-orange);
	text-decoration: none;
	margin-bottom: 1.75rem;
}

.home-cta__phone:hover { color: var(--color-orange-hover); }

.home-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

/* ── 24. SEO pages (service + area) ───────────────────────────────────────── */
.seo-breadcrumbs {
	margin-bottom: 1.5rem;
}

.seo-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: var(--text-sm);
	color: var(--color-muted);
}

.seo-breadcrumbs__item:not(:last-child)::after {
	content: '›';
	margin-left: 0.5rem;
	color: var(--color-border);
}

.seo-breadcrumbs__item a {
	color: var(--color-muted);
	text-decoration: none;
}

.seo-breadcrumbs__item a:hover {
	color: var(--color-blue);
}

.seo-sa-header {
	margin-bottom: 1.5rem;
}

.seo-sa-header__title {
	font-size: var(--text-4xl);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0;
}

.seo-sa-header__location {
	display: block;
	font-size: var(--text-xl);
	font-weight: 600;
	color: var(--color-blue);
	margin-top: 0.25rem;
}

.seo-sa-price-card {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.75rem 2rem;
	background: linear-gradient(135deg, rgba(29, 78, 216, 0.06), rgba(249, 115, 22, 0.08));
	border: 1px solid var(--color-border);
	border-radius: var(--r-xl);
	margin-bottom: 2rem;
}

.seo-sa-price-card__label {
	font-size: var(--text-sm);
	color: var(--color-muted);
	margin: 0 0 0.25rem;
}

.seo-sa-price-card__price {
	font-family: var(--font-heading);
	font-size: var(--text-3xl);
	font-weight: 800;
	color: var(--color-orange);
	margin: 0;
	line-height: 1.1;
}

.seo-sa-price-card__note {
	font-size: var(--text-sm);
	color: var(--color-muted);
	margin: 0.35rem 0 0;
}

.seo-sa-section-title {
	font-size: var(--text-xl);
	font-weight: 800;
	margin: 0 0 1.25rem;
}

.seo-sa-includes,
.seo-sa-process,
.seo-sa-faq,
.seo-sa-related,
.seo-sa-pills {
	margin: 2.5rem 0;
}

.seo-sa-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.seo-sa-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: var(--text-base);
}

.seo-sa-checklist svg {
	color: var(--color-orange);
	flex-shrink: 0;
	margin-top: 2px;
}

.seo-sa-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.25rem;
}

.seo-sa-steps li {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.seo-sa-steps__num {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-family: var(--font-heading);
	background: var(--color-blue);
	color: var(--color-white);
	border-radius: var(--r-full);
}

.seo-sa-steps strong {
	display: block;
	margin-bottom: 0.25rem;
}

.seo-sa-steps p {
	margin: 0;
	color: var(--color-muted);
	font-size: var(--text-sm);
}

.seo-sa-faq__item {
	border: 1px solid var(--color-border);
	border-radius: var(--r-md);
	margin-bottom: 0.5rem;
	background: var(--color-white);
}

.seo-sa-faq__item summary {
	padding: 1rem 1.25rem;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
}

.seo-sa-faq__item summary::-webkit-details-marker { display: none; }

.seo-sa-faq__item p {
	margin: 0;
	padding: 0 1.25rem 1rem;
	color: var(--color-muted);
	font-size: var(--text-sm);
	line-height: 1.6;
}

.seo-sa-pills__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.seo-sa-pill {
	display: inline-block;
	padding: 0.5rem 1rem;
	font-size: var(--text-sm);
	font-weight: 600;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--r-btn);
	color: var(--color-text);
	text-decoration: none;
	transition: all var(--dur) var(--ease);
}

.seo-sa-pill:hover {
	background: var(--color-blue);
	border-color: var(--color-blue);
	color: var(--color-white);
}

.seo-service-area {
	padding: var(--section-gap) 0 0;
}

/* ── 25. Quote form grid & validation ─────────────────────────────────────── */
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-grid .form-full {
	grid-column: 1 / -1;
}

.form-group label {
	display: block;
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-dark);
	margin-bottom: 0.35rem;
}

.form-group .required {
	color: var(--color-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--color-border);
	border-radius: var(--r-md);
	background: var(--color-white);
	font-family: var(--font-body);
	font-size: var(--text-sm);
	transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--color-blue);
	box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

.form-group.is-error input,
.form-group.is-error select,
.form-group.is-error textarea {
	border-color: var(--color-error);
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.field-error {
	display: block;
	font-size: var(--text-xs);
	color: var(--color-error);
	min-height: 1rem;
	margin-top: 0.25rem;
}

.checkbox-wrap {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: var(--text-sm);
	cursor: pointer;
}

.checkbox-wrap input {
	width: auto;
	margin-top: 0.15rem;
	flex-shrink: 0;
}

.btn-full {
	width: 100%;
}

.btn-spinner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.spin {
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* Form success */
.form-success {
	text-align: center;
	padding: 1.5rem 0;
}

.form-success h4 {
	font-size: var(--text-xl);
	margin: 0.75rem 0 0.5rem;
	color: var(--color-dark);
}

.form-success p {
	color: var(--color-muted);
	margin: 0 0 0.5rem;
}

.success-phone {
	font-size: var(--text-lg);
	font-weight: 700;
}

.success-phone a {
	color: var(--color-blue);
	text-decoration: none;
}

.success-animation {
	display: flex;
	justify-content: center;
}

.checkmark {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: block;
	stroke-width: 2;
	stroke: var(--color-success);
	stroke-miterlimit: 10;
}

.checkmark-circle {
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	stroke-width: 2;
	stroke-miterlimit: 10;
	stroke: var(--color-success);
	fill: rgba(22, 163, 74, 0.08);
	animation: strokeCircle 0.6s var(--ease) forwards;
}

.checkmark-check {
	transform-origin: 50% 50%;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	animation: strokeCheck 0.4s var(--ease) 0.5s forwards;
}

@keyframes strokeCircle {
	to { stroke-dashoffset: 0; }
}

@keyframes strokeCheck {
	to { stroke-dashoffset: 0; }
}

/* ── 26. Modal dialog ────────────────────────────────────────────────────── */
.modal-overlay {
	border: none;
	border-radius: var(--r-xl);
	padding: 0;
	max-width: 560px;
	width: calc(100% - 32px);
	box-shadow: var(--shadow-xl);
	background: transparent;
}

.modal-overlay::backdrop {
	background: rgba(15, 23, 42, 0.75);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.modal-overlay[open] {
	animation: modalSlideIn 0.3s var(--ease);
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: scale(0.95) translateY(16px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.modal-box {
	background: var(--color-white);
	border-radius: var(--r-xl);
	overflow: hidden;
}

.modal-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.5rem 1.5rem 0;
}

.modal-header h2 {
	font-size: var(--text-xl);
	margin: 0 0 0.25rem;
}

.modal-header__sub {
	color: var(--color-muted);
	font-size: var(--text-sm);
	margin: 0;
}

.modal-close-btn {
	width: 40px;
	height: 40px;
	border: none;
	background: var(--color-bg);
	border-radius: var(--r-btn);
	font-size: 1.25rem;
	cursor: pointer;
	color: var(--color-dark);
	flex-shrink: 0;
	transition: background var(--dur) var(--ease);
}

.modal-close-btn:hover {
	background: var(--color-gray);
}

.modal-body {
	padding: 1rem 1.5rem 1.5rem;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
}

/* ===== FAB contact widget ===== */
.fab-widget {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 999;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

@media (max-width: 768px) {
	.fab-widget {
		right: 16px;
		bottom: 88px;
	}
}

.fab-main {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--color-blue);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(29, 78, 216, 0.45);
	transition:
		transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		background 0.3s ease,
		box-shadow 0.3s ease;
	position: relative;
	z-index: 2;
}

.fab-main:hover {
	transform: scale(1.08);
	box-shadow: 0 6px 28px rgba(29, 78, 216, 0.55);
}

.fab-widget.is-open .fab-main {
	background: #475569;
	transform: rotate(90deg);
}

.fab-main::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background: var(--color-blue);
	opacity: 0.3;
	animation: fabPulse 2.5s ease-out infinite;
}

.fab-widget.is-open .fab-main::before {
	display: none;
}

@keyframes fabPulse {
	0%   { transform: scale(1);   opacity: 0.3; }
	70%  { transform: scale(1.6); opacity: 0;   }
	100% { transform: scale(1.6); opacity: 0;   }
}

.fab-item {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	opacity: 0;
	transform: scale(0.4) translateY(20px);
	pointer-events: none;
	transition:
		opacity 0.25s ease,
		transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
		box-shadow 0.2s ease;
}

.fab-item a {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.fab-widget.is-open .fab-item {
	opacity: 1;
	transform: scale(1) translateY(0);
	pointer-events: all;
}

.fab-widget.is-open .fab-call     { transition-delay: 0.05s; }
.fab-widget.is-open .fab-whatsapp { transition-delay: 0.12s; }
.fab-widget.is-open .fab-telegram { transition-delay: 0.19s; }

.fab-call {
	background: var(--color-orange);
	box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
}

.fab-call:hover {
	box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
	transform: scale(1.1) !important;
}

.fab-whatsapp {
	background: #25D366;
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.fab-whatsapp:hover {
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
	transform: scale(1.1) !important;
}

.fab-telegram {
	background: #29A0D8;
	box-shadow: 0 4px 16px rgba(41, 160, 216, 0.4);
}

.fab-telegram:hover {
	box-shadow: 0 6px 20px rgba(41, 160, 216, 0.6);
	transform: scale(1.1) !important;
}

.fab-tooltip {
	position: absolute;
	right: calc(100% + 10px);
	background: #1E293B;
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	padding: 5px 10px;
	border-radius: 6px;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	transform: translateX(6px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.fab-tooltip::after {
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	border: 5px solid transparent;
	border-left-color: #1E293B;
}

.fab-item:hover .fab-tooltip {
	opacity: 1;
	transform: translateX(0);
}
