/* Base reset */
*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

input,
button,
textarea,
select {
	font: inherit;
}

:root {
	--primary-navy: #07152f;
	--alternate-navy: #0a1a3a;
	--footer-navy: #040e20;
	--cyan: #35c7e8;
	--lime: #a8d42b;
	--white: #ffffff;
	--body-text: #b8c8e0;
	--muted-text: #6b8baf;
}

html,
body {
	min-height: 100%;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'IBM Plex Sans Arabic', sans-serif;
	background:
		radial-gradient(circle at 80% 10%, rgba(53, 199, 232, 0.14), transparent 30%),
		radial-gradient(circle at 10% 90%, rgba(168, 212, 43, 0.1), transparent 32%),
		linear-gradient(135deg, var(--primary-navy), var(--alternate-navy));
	color: var(--body-text);
	line-height: 1.7;
	overflow-x: hidden;
}

.service-card__title,
.service-card__description,
.service-card__best-for,
.package-card__title,
.package-card__description,
.package-card__best-for,
.package-card__scope,
.process-step__title,
.process-panel__description,
.client-card__name,
.client-card__meta,
.client-card__project,
.client-card__testimonial,
.why-card__title,
.why-card__description,
.use-case-card__title,
.use-case-card__description,
.quote-content p,
.quote-next-steps__item,
.quote-helper-note,
.faq-question__text,
.faq-answer__content,
.contact-info-item__value,
.contact-best-ways li,
.site-footer__description,
.site-footer__contact strong,
.site-footer__links a,
.site-footer__quick-links a,
.site-footer__social a {
	overflow-wrap: anywhere;
	word-break: break-word;
}

@media (hover: none), (pointer: coarse) {
	.btn-primary:hover,
	.btn-outline:hover,
	.packages-carousel__arrow:hover {
		transform: none;
		box-shadow: none;
	}
}

html[dir='rtl'] body {
	direction: rtl;
}

html[dir='ltr'] body {
	direction: ltr;
}

.site-wrapper {
	min-height: 100vh;
	padding-top: 92px;
}

body.menu-open {
	overflow: hidden;
}

body.menu-open .site-header {
	z-index: 1100;
}

body.menu-open .whatsapp-float,
body.menu-open .back-to-top {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(10px);
}

.reveal-on-scroll {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--reveal-delay, 0ms);
	will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Navbar */
.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 999;
	height: 72px;
	background: transparent;
	transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
	border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
	background: rgba(7, 21, 47, 0.94);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(53, 199, 232, 0.1);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.32);
}

body.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	width: min(1240px, calc(100% - 32px));
	height: 100%;
	margin-inline: auto;
	display: grid;
	grid-template-columns: auto 1fr auto;
	grid-template-areas: 'brand nav actions';
	gap: 20px;
	align-items: center;
	direction: inherit;
}

.site-header__brand {
	grid-area: brand;
}

.site-header__nav {
	grid-area: nav;
}

.site-header__actions {
	grid-area: actions;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--white);
	text-decoration: none;
}

.site-brand__logo-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	max-height: 48px;
	max-width: min(240px, 28vw);
}

.site-brand__logo,
.site-brand .custom-logo {
	display: block;
	max-height: 48px;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 4px 16px rgba(53, 199, 232, 0.16));
}

.site-brand__fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--cyan);
}

.site-brand__icon {
	display: block;
}

.site-brand__text {
	display: inline-flex;
	flex-direction: column;
	gap: 1px;
	line-height: 1.2;
}

.site-brand__name {
	font-size: 1.03rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.site-brand__tagline {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.67rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--muted-text);
}

.site-brand__underline {
	height: 2px;
	margin-top: 5px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--cyan), var(--lime));
}

.site-header__nav {
	direction: inherit;
	justify-self: center;
}

.site-header__menu {
	list-style: none;
	display: inline-flex;
	align-items: center;
	gap: clamp(14px, 2.1vw, 30px);
}

.site-header__menu a {
	position: relative;
	text-decoration: none;
	color: var(--body-text);
	font-size: 0.96rem;
	font-weight: 500;
	transition: color 0.2s ease;
}

.site-header__menu a:hover,
.site-header__menu .current-menu-item > a,
.site-header__menu .current-menu-ancestor > a {
	color: var(--white);
}

.site-header__menu a.is-active,
.site-header__mobile-menu a.is-active,
.primary-navigation a.is-active,
.mobile-navigation a.is-active {
	color: var(--cyan);
	text-shadow: 0 0 10px rgba(53, 199, 232, 0.28);
}

.site-header__menu a.is-active::after,
.site-header__mobile-menu a.is-active::after,
.primary-navigation a.is-active::after,
.mobile-navigation a.is-active::after {
	content: '';
	position: absolute;
	inset-inline: 0;
	bottom: -7px;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(53, 199, 232, 0), rgba(53, 199, 232, 0.92), rgba(168, 212, 43, 0.78));
}

.site-header__actions {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	justify-self: end;
}

html[dir='rtl'] .site-header__brand {
	grid-area: brand;
	justify-self: end;
}

html[dir='rtl'] .site-header__nav {
	grid-area: nav;
}

html[dir='rtl'] .site-header__actions {
	grid-area: actions;
	justify-self: start;
}

html[dir='rtl'] .site-header__inner {
	grid-template-areas: 'actions nav brand';
}

html[dir='ltr'] .site-header__brand {
	grid-area: brand;
	justify-self: start;
}

html[dir='ltr'] .site-header__nav {
	grid-area: nav;
}

html[dir='ltr'] .site-header__actions {
	grid-area: actions;
	justify-self: end;
}

html[dir='ltr'] .site-header__inner {
	grid-template-areas: 'brand nav actions';
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid rgba(53, 199, 232, 0.35);
	background: linear-gradient(120deg, rgba(53, 199, 232, 0.25), rgba(168, 212, 43, 0.3));
	color: var(--white);
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 28px rgba(53, 199, 232, 0.24);
}

.language-switch {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 36px;
	padding-inline: 11px;
	border-radius: 999px;
	border: 1px solid rgba(184, 200, 224, 0.25);
	background: rgba(4, 14, 32, 0.5);
	text-decoration: none;
	color: var(--body-text);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.76rem;
	letter-spacing: 0.06em;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.language-switch:hover {
	border-color: rgba(53, 199, 232, 0.45);
	color: var(--white);
}

.site-header__toggle {
	display: none;
	appearance: none;
	border: 0;
	background: transparent;
	width: 44px;
	height: 44px;
	padding: 0;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	justify-self: start;
}

.site-header__toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--white);
	border-radius: 999px;
}

.site-header__mobile-overlay {
	position: fixed;
	inset: 0;
	background: rgba(4, 14, 32, 0.98);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	z-index: 1101;
	padding: 22px 20px 34px;
	direction: inherit;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 30px;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.site-header__mobile-overlay.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.site-header.is-scrolled .site-header__mobile-overlay,
body.menu-open .site-header__mobile-overlay {
	background: rgba(4, 14, 32, 0.98);
	border-top: 1px solid rgba(53, 199, 232, 0.16);
}

.site-header__mobile-top {
	position: absolute;
	top: 18px;
	right: 20px;
	left: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

html[dir='rtl'] .site-header__mobile-top {
	flex-direction: row-reverse;
}

html[dir='ltr'] .site-header__mobile-top {
	flex-direction: row;
}

.site-header__mobile-close {
	appearance: none;
	border: 0;
	background: transparent;
	color: var(--white);
	font-size: 2.2rem;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.site-header__mobile-menu {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-height: calc(100dvh - 220px);
	overflow-y: auto;
}

.site-header__mobile-menu a {
	position: relative;
	display: inline-block;
	text-decoration: none;
	font-size: clamp(1.2rem, 5vw, 1.8rem);
	font-weight: 600;
	color: var(--white);
	padding: 4px 0;
}

.site-header__mobile-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

/* Hero */
.darbin-home {
	min-height: min(840px, calc(100vh - 92px));
	padding: clamp(14px, 2.5vw, 26px) 20px 52px;
	position: relative;
}

body.admin-bar .darbin-home {
	padding-top: clamp(24px, 4vw, 40px);
}

.hero-section {
	position: relative;
	width: min(1240px, 100%);
	margin-inline: auto;
	padding: clamp(22px, 3.4vw, 40px);
	border-radius: 26px;
	overflow: hidden;
	background:
		radial-gradient(circle at 84% 22%, rgba(53, 199, 232, 0.17), transparent 40%),
		radial-gradient(circle at 18% 82%, rgba(168, 212, 43, 0.13), transparent 38%),
		linear-gradient(145deg, rgba(7, 21, 47, 0.93), rgba(10, 26, 58, 0.9));
	border: 1px solid rgba(53, 199, 232, 0.16);
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
	isolation: isolate;
	scroll-margin-top: 110px;
}

body.admin-bar .hero-section {
	scroll-margin-top: 144px;
}

.hero-bg-layers {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.hero-dot-grid {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(184, 200, 224, 0.16) 1px, transparent 1px);
	background-size: 20px 20px;
	opacity: 0.24;
	mask-image: linear-gradient(to bottom, transparent 2%, black 32%, black 78%, transparent 100%);
}

.hero-circuit-lines {
	position: absolute;
	inset: 0;
	color: rgba(53, 199, 232, 0.22);
	opacity: 0.75;
}

.hero-circuit-lines svg {
	width: 100%;
	height: 100%;
}

.hero-watermark {
	position: absolute;
	inset-inline-end: -40px;
	bottom: -54px;
	width: clamp(260px, 32vw, 420px);
	opacity: 0.07;
	color: var(--white);
}

.hero-watermark svg {
	width: 100%;
	height: auto;
}

.hero-watermark text {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 172px;
	font-weight: 600;
	letter-spacing: 0.12em;
	fill: currentColor;
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
	align-items: center;
	gap: clamp(20px, 3.3vw, 42px);
	min-height: min(520px, 60vh);
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: flex-start;
	text-align: left;
	max-width: 60ch;
}

html[dir='rtl'] .hero-content {
	align-items: flex-end;
	text-align: right;
	justify-self: end;
}

html[dir='ltr'] .hero-content {
	align-items: flex-start;
	text-align: left;
	justify-self: start;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(4, 14, 32, 0.6);
	border: 1px solid rgba(53, 199, 232, 0.36);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	color: var(--cyan);
}

.hero-title {
	font-size: clamp(2rem, 4.8vw, 4.1rem);
	line-height: 1.12;
	font-weight: 700;
	color: var(--white);
	max-width: 20ch;
	text-wrap: balance;
}

.grad-text {
	background: linear-gradient(95deg, var(--cyan), var(--lime));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	padding-inline: 0.12em;
}

.hero-description {
	font-size: clamp(1rem, 1.45vw, 1.18rem);
	line-height: 1.82;
	color: var(--body-text);
	max-width: 54ch;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	padding-top: 4px;
}

.hero-capability-chips {
	list-style: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	width: min(640px, 100%);
	margin-top: 0;
}

.hero-capability-chip {
	display: inline-flex;
	align-items: center;
	padding: 5px 9px;
	border-radius: 999px;
	border: 1px solid rgba(184, 200, 224, 0.22);
	background: rgba(4, 14, 32, 0.52);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.65rem;
	line-height: 1.35;
	letter-spacing: 0.04em;
	color: var(--body-text);
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid rgba(184, 200, 224, 0.3);
	background: rgba(4, 14, 32, 0.45);
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.btn-outline:hover {
	border-color: rgba(53, 199, 232, 0.45);
	transform: translateY(-1px);
}

.btn-primary,
.btn-outline,
.nav-cta,
.package-card__cta,
.contact-card__cta,
.site-footer__cta-button,
.quote-submit,
.back-to-top {
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		border-color 0.2s ease,
		background-color 0.2s ease,
		color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
	.btn-primary:hover,
	.btn-outline:hover,
	.nav-cta:hover,
	.package-card__cta:hover,
	.contact-card__cta:hover,
	.site-footer__cta-button:hover,
	.quote-submit:hover,
	.back-to-top:hover {
		transform: translateY(-2px);
	}
}

.btn-primary:active,
.btn-outline:active,
.nav-cta:active,
.package-card__cta:active,
.contact-card__cta:active,
.site-footer__cta-button:active,
.quote-submit:active,
.back-to-top:active {
	transform: scale(0.98);
}

.btn-primary:focus-visible,
.btn-outline:focus-visible,
.nav-cta:focus-visible,
.package-card__cta:focus-visible,
.contact-card__cta:focus-visible,
.site-footer__cta-button:focus-visible,
.quote-submit:focus-visible,
.back-to-top:focus-visible,
.site-header__menu a:focus-visible,
.site-header__mobile-menu a:focus-visible {
	outline: 2px solid rgba(53, 199, 232, 0.62);
	outline-offset: 2px;
}

.hero-stats {
	margin-top: 8px;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, minmax(118px, 1fr));
	gap: 10px;
	width: min(560px, 100%);
}

.hero-stats li {
	padding: 11px 13px;
	border-radius: 14px;
	background: rgba(4, 14, 32, 0.56);
	border: 1px solid rgba(184, 200, 224, 0.16);
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.hero-stats strong {
	font-size: 1.08rem;
	line-height: 1.3;
	color: var(--white);
}

.hero-stats span {
	font-size: 0.83rem;
	color: var(--muted-text);
}

.hero-visual {
	position: relative;
	justify-self: end;
	width: min(100%, 500px);
}

html[dir='rtl'] .hero-visual {
	justify-self: start;
}

html[dir='ltr'] .hero-visual {
	justify-self: end;
}

.hero-image-frame,
.hero-dashboard {
	position: relative;
	padding: 14px;
	border-radius: 22px;
	background: linear-gradient(170deg, rgba(4, 14, 32, 0.9), rgba(9, 24, 52, 0.82));
	border: 1px solid rgba(53, 199, 232, 0.26);
	box-shadow:
		0 22px 56px rgba(0, 0, 0, 0.36),
		0 0 0 1px rgba(53, 199, 232, 0.14) inset,
		0 0 30px rgba(53, 199, 232, 0.2);
	backdrop-filter: blur(10px);
	overflow: hidden;
}

.hero-image-frame img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	border-radius: 14px;
	background: rgba(4, 14, 32, 0.55);
}

.hero-dashboard {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 350px;
}

.hero-dashboard__chrome {
	display: flex;
	align-items: center;
	gap: 10px;
}

.hero-dashboard__dots {
	display: inline-flex;
	gap: 7px;
	flex-shrink: 0;
}

.hero-dashboard__dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(184, 200, 224, 0.28);
}

.hero-dashboard__dots span:first-child {
	background: rgba(53, 199, 232, 0.8);
}

.hero-dashboard__dots span:nth-child(2) {
	background: rgba(168, 212, 43, 0.75);
}

.hero-dashboard__title {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--muted-text);
	line-height: 1.35;
}

.hero-dashboard__layout {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 10px;
	min-height: 240px;
}

.hero-dashboard__sidebar {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 8px;
	border-radius: 12px;
	background: rgba(4, 14, 32, 0.5);
	border: 1px solid rgba(184, 200, 224, 0.14);
}

.hero-dashboard__side-item {
	display: inline-flex;
	align-items: center;
	padding: 6px 8px;
	border-radius: 8px;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.63rem;
	line-height: 1.35;
	color: var(--muted-text);
	background: rgba(184, 200, 224, 0.06);
	border: 1px solid rgba(184, 200, 224, 0.12);
}


.hero-dashboard__side-item.is-active {
	color: var(--white);
	background: rgba(53, 199, 232, 0.14);
	border-color: rgba(53, 199, 232, 0.34);
}

.hero-dashboard__main {
	display: grid;
	gap: 10px;
	align-content: start;
}

.hero-dashboard__metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.hero-dashboard__metric {
	border-radius: 10px;
	padding: 8px 9px;
	background: linear-gradient(160deg, rgba(184, 200, 224, 0.14), rgba(4, 14, 32, 0.28));
	border: 1px solid rgba(184, 200, 224, 0.12);
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hero-dashboard__metric--primary {
	background: linear-gradient(155deg, rgba(53, 199, 232, 0.2), rgba(10, 26, 58, 0.4));
	border-color: rgba(53, 199, 232, 0.34);
}

.hero-dashboard__metric-label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.62rem;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--muted-text);
}

.hero-dashboard__metric-value {
	font-size: 0.95rem;
	line-height: 1.2;
	color: var(--white);
}

.hero-dashboard__chart {
	height: 120px;
	border-radius: 12px;
	padding: 8px;
	background: rgba(4, 14, 32, 0.52);
	border: 1px solid rgba(184, 200, 224, 0.14);
}

.hero-dashboard__chart-label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.62rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--muted-text);
	margin-bottom: 6px;
}

.hero-dashboard__chart svg {
	width: 100%;
	height: 100%;
}

.hero-dashboard__flow {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	padding: 10px 10px;
	border-radius: 10px;
	border: 1px solid rgba(184, 200, 224, 0.14);
	background: rgba(4, 14, 32, 0.44);
}

.hero-dashboard__flow-label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.6rem;
	line-height: 1.3;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--muted-text);
}

.hero-dashboard__flow-label--roles {
	color: rgba(168, 212, 43, 0.9);
}

.hero-dashboard__node {
	position: relative;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	border: 1px solid rgba(184, 200, 224, 0.34);
	background: rgba(184, 200, 224, 0.2);
	flex-shrink: 0;
}

.hero-dashboard__node::after {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 1px solid currentColor;
	opacity: 0.34;
	transform: scale(0.72);
	animation: hero-node-pulse 2.8s ease-in-out infinite;
}

.hero-dashboard__node--source {
	color: var(--lime);
	background: rgba(168, 212, 43, 0.48);
	border-color: rgba(168, 212, 43, 0.68);
}

.hero-dashboard__node--api {
	color: var(--cyan);
	background: rgba(53, 199, 232, 0.46);
	border-color: rgba(53, 199, 232, 0.64);
}

.hero-dashboard__node--target {
	color: rgba(184, 200, 224, 0.72);
	background: rgba(184, 200, 224, 0.3);
	border-color: rgba(184, 200, 224, 0.48);
}

.hero-dashboard__link {
	flex: 1;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(53, 199, 232, 0.25), rgba(168, 212, 43, 0.62));
}

.hero-dashboard__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hero-chip {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.66rem;
	letter-spacing: 0.04em;
	line-height: 1.3;
	background: rgba(4, 14, 32, 0.62);
	border: 1px solid rgba(184, 200, 224, 0.22);
	color: var(--body-text);
}

.hero-chip--saas,
.hero-chip--api {
	animation: hero-chip-float 5.4s ease-in-out infinite;
}

.hero-chip--api {
	animation-delay: 0.5s;
}

.hero-chip--dash {
	border-color: rgba(53, 199, 232, 0.34);
	color: rgba(215, 244, 255, 0.95);
}

.hero-chip--secure {
	border-color: rgba(168, 212, 43, 0.36);
	color: rgba(232, 247, 192, 0.98);
}

.hero-floating-badge {
	position: absolute;
	padding: 7px 12px;
	border-radius: 999px;
	font-size: 0.77rem;
	font-weight: 600;
	backdrop-filter: blur(6px);
	background: rgba(4, 14, 32, 0.7);
	color: var(--white);
	border: 1px solid rgba(53, 199, 232, 0.28);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
	white-space: nowrap;
}

.hero-floating-badge--top {
	top: -12px;
	inset-inline-start: -20px;
}

.hero-floating-badge--bottom {
	bottom: 16px;
	inset-inline-end: -22px;
	border-color: rgba(168, 212, 43, 0.36);
}

.float-gentle {
	animation: float-gentle 6.2s ease-in-out infinite;
}

@keyframes float-gentle {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-9px);
	}
}

@keyframes hero-node-pulse {
	0%,
	100% {
		opacity: 0.34;
		transform: scale(0.72);
	}
	50% {
		opacity: 0.08;
		transform: scale(1.22);
	}
}

@keyframes hero-chip-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-3px);
	}
}

.pulse-glow {
	animation: pulse-glow 2.7s ease-in-out infinite;
}

@keyframes pulse-glow {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(53, 199, 232, 0.05);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(53, 199, 232, 0.16);
	}
}

/* Services */
.services-section {
	position: relative;
	width: min(1240px, 100%);
	margin: 22px auto 0;
	padding: clamp(26px, 4.2vw, 44px);
	border-radius: 22px;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 12%, rgba(53, 199, 232, 0.13), transparent 40%),
		linear-gradient(160deg, rgba(10, 26, 58, 0.96), rgba(7, 21, 47, 0.93));
	border: 1px solid rgba(53, 199, 232, 0.15);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
	scroll-margin-top: 110px;
	isolation: isolate;
}

body.admin-bar .services-section {
	scroll-margin-top: 144px;
}

.services-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(184, 200, 224, 0.14) 1px, transparent 1px);
	background-size: 18px 18px;
	opacity: 0.2;
	pointer-events: none;
	mask-image: linear-gradient(to bottom, black, transparent 90%);
	z-index: 0;
}

.services-header,
.services-divider,
.services-grid,
.services-empty-message {
	position: relative;
	z-index: 1;
}

.services-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(16px, 2.4vw, 32px);
	align-items: end;
}

.services-title-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.services-title-wrap h2 {
	font-size: clamp(1.8rem, 3.6vw, 2.9rem);
	line-height: 1.2;
	color: var(--white);
}

.services-description {
	max-width: 52ch;
	font-size: clamp(0.98rem, 1.45vw, 1.12rem);
	line-height: 1.76;
	color: var(--body-text);
}

html[dir='rtl'] .services-title-wrap {
	justify-self: end;
	text-align: right;
	align-items: flex-end;
}

html[dir='rtl'] .services-description {
	justify-self: start;
	text-align: left;
}

html[dir='ltr'] .services-title-wrap {
	justify-self: start;
	text-align: left;
	align-items: flex-start;
}

html[dir='ltr'] .services-description {
	justify-self: end;
	text-align: right;
}

.services-divider {
	margin-top: 16px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(53, 199, 232, 0.62), rgba(168, 212, 43, 0.5), transparent);
}

.services-grid {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.service-card {
	position: relative;
	overflow: hidden;
	padding: 16px;
	border-radius: 16px;
	background: linear-gradient(165deg, rgba(4, 14, 32, 0.86), rgba(7, 21, 47, 0.72));
	border: 1px solid rgba(184, 200, 224, 0.16);
	backdrop-filter: blur(9px);
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-card::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0;
	transition: opacity 220ms ease;
	background: radial-gradient(circle at 14% 12%, rgba(53, 199, 232, 0.24), transparent 54%);
	z-index: 0;
}

.service-card > * {
	position: relative;
	z-index: 1;
}

.services-grid .service-card:nth-child(3n + 2) {
	margin-top: 18px;
}

.service-card__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.service-card__tag {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(4, 14, 32, 0.72);
	border: 1px solid rgba(184, 200, 224, 0.2);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	color: var(--body-text);
}

.service-card__icon {
	width: 42px;
	height: 42px;
	border-radius: 11px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(4, 14, 32, 0.66);
	border: 1px solid rgba(53, 199, 232, 0.2);
	color: var(--cyan);
	flex-shrink: 0;
	transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease, transform 220ms ease;
}

.service-card__icon svg {
	width: 22px;
	height: 22px;
}

.service-card__title {
	font-size: clamp(1.1rem, 1.7vw, 1.34rem);
	line-height: 1.34;
	color: var(--white);
	margin-bottom: 9px;
	transition: color 220ms ease;
}

.service-card__description {
	font-size: 0.95rem;
	line-height: 1.72;
	color: var(--muted-text);
}

.service-card__best-for {
	margin-top: 7px;
	font-size: 0.84rem;
	line-height: 1.62;
	color: var(--body-text);
}

.service-card__best-for span {
	color: var(--white);
	font-weight: 600;
}

.service-card__chips {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 7px;
}

.service-card__chip {
	display: inline-flex;
	align-items: center;
	padding: 4px 8px;
	border-radius: 999px;
	border: 1px solid rgba(184, 200, 224, 0.2);
	background: rgba(4, 14, 32, 0.5);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.65rem;
	line-height: 1.25;
	letter-spacing: 0.03em;
	color: var(--body-text);
}

.service-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: fit-content;
	margin-top: 10px;
	padding: 7px 11px;
	border-radius: 999px;
	border: 1px solid rgba(53, 199, 232, 0.34);
	background: rgba(53, 199, 232, 0.1);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.72rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--white);
	transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.service-card--lime .service-card__cta {
	border-color: rgba(168, 212, 43, 0.38);
	background: rgba(168, 212, 43, 0.1);
}

.service-card__cta:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(53, 199, 232, 0.16);
	border-color: rgba(53, 199, 232, 0.58);
}

.service-card--lime .service-card__cta:focus-visible {
	box-shadow: 0 0 0 3px rgba(168, 212, 43, 0.16);
	border-color: rgba(168, 212, 43, 0.6);
}

.service-card__line {
	display: block;
	margin-top: 12px;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(184, 200, 224, 0), rgba(53, 199, 232, 0.6), rgba(184, 200, 224, 0));
	transform: scaleX(1);
	transform-origin: center;
	opacity: 0.82;
	transition: transform 220ms ease, opacity 220ms ease, background 220ms ease;
}

.service-card--lime .service-card__icon {
	color: var(--lime);
	border-color: rgba(168, 212, 43, 0.28);
}

.service-card--lime .service-card__line {
	background: linear-gradient(90deg, rgba(184, 200, 224, 0), rgba(168, 212, 43, 0.7), rgba(184, 200, 224, 0));
}

.service-card--lime::before {
	background: radial-gradient(circle at 14% 12%, rgba(168, 212, 43, 0.22), transparent 54%);
}

.service-card:focus-within {
	transform: translateY(-6px);
	background: linear-gradient(165deg, rgba(4, 14, 32, 0.9), rgba(10, 26, 58, 0.74));
}

.service-card--cyan:focus-within {
	border-color: rgba(53, 199, 232, 0.46);
	box-shadow: 0 16px 34px rgba(53, 199, 232, 0.14), 0 0 0 1px rgba(53, 199, 232, 0.2) inset;
}

.service-card--lime:focus-within {
	border-color: rgba(168, 212, 43, 0.46);
	box-shadow: 0 16px 34px rgba(168, 212, 43, 0.13), 0 0 0 1px rgba(168, 212, 43, 0.2) inset;
}

.service-card:focus-within::before {
	opacity: 0.82;
}

.service-card:focus-within .service-card__icon {
	transform: translateY(-2px);
}

.service-card--cyan:focus-within .service-card__icon {
	border-color: rgba(53, 199, 232, 0.52);
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.18) inset, 0 0 14px rgba(53, 199, 232, 0.22);
}

.service-card--lime:focus-within .service-card__icon {
	border-color: rgba(168, 212, 43, 0.52);
	box-shadow: 0 0 0 1px rgba(168, 212, 43, 0.18) inset, 0 0 14px rgba(168, 212, 43, 0.22);
}

.service-card:focus-within .service-card__title {
	color: #f5fbff;
}

.service-card:focus-within .service-card__line {
	transform: scaleX(1.12);
	opacity: 1;
}

.service-card--cyan:focus-within .service-card__line {
	background: linear-gradient(90deg, rgba(184, 200, 224, 0), rgba(53, 199, 232, 0.9), rgba(184, 200, 224, 0));
}

.service-card--lime:focus-within .service-card__line {
	background: linear-gradient(90deg, rgba(184, 200, 224, 0), rgba(168, 212, 43, 0.9), rgba(184, 200, 224, 0));
}

@media (hover: hover) and (pointer: fine) {
	.service-card:hover {
		transform: translateY(-8px);
		background: linear-gradient(165deg, rgba(4, 14, 32, 0.9), rgba(10, 26, 58, 0.76));
	}

	.service-card:hover::before {
		opacity: 1;
	}

	.service-card--cyan:hover {
		border-color: rgba(53, 199, 232, 0.56);
		box-shadow: 0 18px 45px rgba(53, 199, 232, 0.18), 0 0 0 1px rgba(53, 199, 232, 0.26) inset;
	}

	.service-card--lime:hover {
		border-color: rgba(168, 212, 43, 0.58);
		box-shadow: 0 18px 45px rgba(168, 212, 43, 0.16), 0 0 0 1px rgba(168, 212, 43, 0.26) inset;
	}

	.service-card:hover .service-card__icon {
		transform: translateY(-3px);
	}

	.service-card:hover .service-card__cta {
		border-color: rgba(53, 199, 232, 0.56);
		background: rgba(53, 199, 232, 0.18);
		color: #f7fcff;
	}

	.service-card--lime:hover .service-card__cta {
		border-color: rgba(168, 212, 43, 0.58);
		background: rgba(168, 212, 43, 0.16);
	}

	.service-card--cyan:hover .service-card__icon {
		border-color: rgba(53, 199, 232, 0.56);
		box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.2) inset, 0 0 16px rgba(53, 199, 232, 0.28);
	}

	.service-card--lime:hover .service-card__icon {
		border-color: rgba(168, 212, 43, 0.56);
		box-shadow: 0 0 0 1px rgba(168, 212, 43, 0.2) inset, 0 0 16px rgba(168, 212, 43, 0.28);
	}

	.service-card:hover .service-card__line {
		transform: scaleX(1.15);
		opacity: 1;
	}

	.service-card:hover .service-card__title {
		color: #f7fcff;
	}

	.service-card--cyan:hover .service-card__line {
		background: linear-gradient(90deg, rgba(184, 200, 224, 0), rgba(53, 199, 232, 0.9), rgba(184, 200, 224, 0));
	}

	.service-card--lime:hover .service-card__line {
		background: linear-gradient(90deg, rgba(184, 200, 224, 0), rgba(168, 212, 43, 0.92), rgba(184, 200, 224, 0));
	}
}

.services-empty-message {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--muted-text);
	padding: 2px;
}

/* Process */
.process-section {
	position: relative;
	width: min(1240px, 100%);
	margin: 20px auto 0;
	padding: clamp(26px, 4.2vw, 44px);
	border-radius: 22px;
	overflow: hidden;
	background:
		radial-gradient(circle at 16% 18%, rgba(53, 199, 232, 0.13), transparent 42%),
		radial-gradient(circle at 84% 20%, rgba(168, 212, 43, 0.1), transparent 34%),
		linear-gradient(160deg, rgba(8, 22, 48, 0.96), rgba(4, 14, 32, 0.92));
	border: 1px solid rgba(184, 200, 224, 0.14);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
	scroll-margin-top: 110px;
	isolation: isolate;
}

body.admin-bar .process-section {
	scroll-margin-top: 144px;
}

.process-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(184, 200, 224, 0.14) 1px, transparent 1px);
	background-size: 18px 18px;
	opacity: 0.18;
	pointer-events: none;
	mask-image: linear-gradient(to bottom, black, transparent 90%);
	z-index: 0;
}

.process-header,
.process-shell,
.process-section .services-divider {
	position: relative;
	z-index: 1;
}

.process-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(16px, 2.4vw, 32px);
	align-items: end;
}


.process-shell {
	margin-top: 18px;
	display: grid;
	gap: 10px;
}

.process-shell--desktop {
	display: grid;
	gap: 12px;
}

.process-nav {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
	align-items: stretch;
}

.process-step {
	position: relative;
	display: flex;
	align-items: center;
	gap: 11px;
	width: 100%;
	padding: 11px 13px;
	border-radius: 14px;
	border: 1px solid rgba(184, 200, 224, 0.2);
	background: linear-gradient(165deg, rgba(5, 16, 36, 0.84), rgba(7, 21, 47, 0.72));
	color: var(--body-text);
	cursor: pointer;
	text-align: inherit;
	font: inherit;
	min-height: 64px;
	transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.process-step__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	border: 1px solid rgba(184, 200, 224, 0.24);
	background: rgba(4, 14, 32, 0.72);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--white);
	flex-shrink: 0;
	transition: border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.process-step__title {
	font-size: 0.94rem;
	line-height: 1.48;
	font-weight: 600;
	color: inherit;
	flex: 1;
}

.process-step__indicator {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(168, 212, 43, 0.34);
	box-shadow: 0 0 0 0 rgba(168, 212, 43, 0);
	flex-shrink: 0;
	transition: background-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.process-step.is-active {
	border-color: rgba(53, 199, 232, 0.6);
	background: linear-gradient(165deg, rgba(4, 14, 32, 0.9), rgba(10, 26, 58, 0.78));
	color: #f2fbff;
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.22) inset, 0 12px 24px rgba(53, 199, 232, 0.14);
}

.process-step.is-active .process-step__number {
	border-color: rgba(53, 199, 232, 0.56);
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.2) inset;
	color: var(--cyan);
}

.process-step.is-active .process-step__indicator {
	background: var(--lime);
	box-shadow: 0 0 0 4px rgba(168, 212, 43, 0.17);
	transform: scale(1.06);
}

.process-step:focus-visible {
	outline: 2px solid rgba(53, 199, 232, 0.7);
	outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
	.process-step:hover {
		border-color: rgba(53, 199, 232, 0.42);
		transform: translateY(-2px);
	}

	.process-step:hover .process-step__indicator {
		background: rgba(168, 212, 43, 0.56);
	}
}

.process-panels {
	display: grid;
	gap: 10px;
}

.process-panel {
	position: relative;
	padding: clamp(16px, 2vw, 22px);
	border-radius: 16px;
	border: 1px solid rgba(184, 200, 224, 0.16);
	background:
		radial-gradient(circle at 86% 14%, rgba(53, 199, 232, 0.15), transparent 36%),
		linear-gradient(160deg, rgba(5, 16, 36, 0.92), rgba(7, 21, 47, 0.82));
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
	backdrop-filter: blur(10px);
}

.process-panel.is-active {
	border-color: rgba(53, 199, 232, 0.56);
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.2) inset, 0 18px 34px rgba(0, 0, 0, 0.28);
}

.process-panel[hidden] {
	display: none !important;
}


.process-panel__number {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(168, 212, 43, 0.14);
	border: 1px solid rgba(168, 212, 43, 0.36);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.72rem;
	letter-spacing: 0.05em;
	color: var(--white);
	margin: 0;
	margin-bottom: 10px;
}

.process-panel__title {
	font-size: clamp(1.2rem, 2.1vw, 1.5rem);
	line-height: 1.35;
	color: var(--white);
	margin: 0;
	margin-bottom: 8px;
}

.process-panel__description {
	font-size: 0.97rem;
	line-height: 1.76;
	color: var(--body-text);
	margin: 0;
	max-width: 66ch;
}

.process-panel__outputs-title {
	margin-top: 8px;
	margin-bottom: 6px;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.72rem;
	line-height: 1.4;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--cyan);
}

.process-output-list {
	list-style: none;
	display: grid;
	gap: 5px;
	margin: 0;
	padding: 0;
}

.process-output-list li {
	position: relative;
	padding-inline-start: 16px;
	font-size: 0.87rem;
	line-height: 1.62;
	color: var(--body-text);
}

.process-output-list li::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 0.68em;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: linear-gradient(140deg, var(--cyan), var(--lime));
}

.process-shell--mobile {
	display: none;
}

.process-accordion-item {
	display: grid;
	gap: 7px;
}

.process-accordion-item + .process-accordion-item {
	margin-top: 8px;
}


.process-step--accordion {
	min-height: 60px;
	padding: 11px 12px;
}

.process-panel--accordion {
	padding: 13px;
}

.process-step--accordion .process-step__indicator {
	width: 10px;
	height: 10px;
	border-radius: 0;
	background: transparent;
	border-right: 2px solid rgba(184, 200, 224, 0.72);
	border-bottom: 2px solid rgba(184, 200, 224, 0.72);
	transform: rotate(45deg);
	box-shadow: none;
}

.process-step--accordion.is-active .process-step__indicator {
	border-color: var(--lime);
	transform: rotate(225deg);
}

.process-section.section--layout-centered .process-header {
	grid-template-columns: 1fr;
	align-items: center;
	text-align: center;
}

.process-section.section--layout-centered .services-title-wrap,
.process-section.section--layout-centered .services-description {
	justify-self: center;
	text-align: center;
	align-items: center;
}

.process-section.section--layout-centered .process-nav {
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.process-section.section--layout-split .process-shell--desktop {
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: clamp(14px, 2.2vw, 20px);
	align-items: start;
}

.process-section.section--layout-split .process-nav {
	grid-template-columns: 1fr;
}

html[dir='rtl'] .process-header,
html[dir='rtl'] .process-step,
html[dir='rtl'] .process-panel {
	text-align: right;
}

html[dir='ltr'] .process-header,
html[dir='ltr'] .process-step,
html[dir='ltr'] .process-panel {
	text-align: left;
}

@media (max-width: 1199px) {
	.process-nav {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.process-section.section--layout-split .process-shell--desktop {
		grid-template-columns: 1fr;
	}

	.process-section.section--layout-split .process-nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.process-nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.process-shell--desktop {
		display: none;
	}

	.process-shell--mobile {
		display: grid;
		gap: 10px;
	}

	.process-step__title {
		font-size: 0.92rem;
	}

	.process-panel__description {
		font-size: 0.94rem;
	}
}

/* Packages */
.packages-section {
	position: relative;
	width: min(1240px, 100%);
	margin: 20px auto 0;
	padding: clamp(26px, 4.2vw, 44px);
	border-radius: 22px;
	overflow: hidden;
	background:
		radial-gradient(circle at 88% 20%, rgba(168, 212, 43, 0.11), transparent 38%),
		linear-gradient(160deg, rgba(7, 21, 47, 0.96), rgba(4, 14, 32, 0.92));
	border: 1px solid rgba(184, 200, 224, 0.14);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
	scroll-margin-top: 110px;
	isolation: isolate;
}

body.admin-bar .packages-section {
	scroll-margin-top: 144px;
}

.packages-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(184, 200, 224, 0.13) 1px, transparent 1px);
	background-size: 18px 18px;
	opacity: 0.2;
	pointer-events: none;
	mask-image: linear-gradient(to bottom, black, transparent 90%);
	z-index: 0;
}

.packages-header,
.packages-grid,
.packages-section .services-divider,
.packages-section .services-empty-message {
	position: relative;
	z-index: 1;
}

.packages-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(16px, 2.4vw, 32px);
	align-items: end;
}

.packages-grid {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	align-items: stretch;
}

.packages-carousel {
	position: relative;
	z-index: 1;
	margin-top: 20px;
	--packages-gap: 24px;
	--packages-per-view: 3;
}

.packages-carousel__viewport {
	width: 100%;
	overflow: visible;
}

.packages-carousel__track {
	display: flex;
	gap: var(--packages-gap);
	direction: ltr;
	padding: 8px 0 6px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	will-change: auto;
}

.packages-carousel__track .package-card {
	flex: 0 0 calc((100% - (var(--packages-gap) * (var(--packages-per-view) - 1))) / var(--packages-per-view));
	scroll-snap-align: start;
}

.packages-carousel__track::-webkit-scrollbar {
	display: none;
}

.packages-carousel__track {
	scrollbar-width: none;
}

.packages-carousel__track:focus {
	outline: none;
}

.package-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 9px;
	padding: 16px;
	border-radius: 16px;
	background: linear-gradient(165deg, rgba(4, 14, 32, 0.88), rgba(7, 21, 47, 0.76));
	border: 1px solid rgba(184, 200, 224, 0.16);
	backdrop-filter: blur(9px);
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.package-card[data-clone='true'] {
	pointer-events: none;
}

.package-card[data-clone='true'].is-active {
	transform: none;
	box-shadow: none;
}

.package-card--featured {
	border-color: rgba(53, 199, 232, 0.42);
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.14) inset;
	transform: none;
}

@media (hover: hover) and (pointer: fine) {
	.package-card:hover {
		transform: translateY(-6px);
		border-color: rgba(53, 199, 232, 0.3);
		box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
	}

	.package-card--featured:hover {
		border-color: rgba(168, 212, 43, 0.4);
		box-shadow: 0 0 0 1px rgba(168, 212, 43, 0.16) inset, 0 18px 32px rgba(0, 0, 0, 0.32);
	}
}

.package-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(53, 199, 232, 0.15);
	border: 1px solid rgba(53, 199, 232, 0.4);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	color: var(--white);
}

.package-card__title {
	font-size: clamp(1.16rem, 1.8vw, 1.45rem);
	line-height: 1.35;
	color: var(--white);
}

.package-card__description {
	font-size: 0.95rem;
	line-height: 1.72;
	color: var(--muted-text);
	min-height: 74px;
}

.package-card__best-for,
.package-card__scope {
	font-size: 0.82rem;
	line-height: 1.62;
	color: var(--body-text);
	margin: 0;
}

.package-card__best-for span,
.package-card__scope span {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.7rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--white);
}

.package-card__price-wrap {
	padding: 9px 0 7px;
	border-top: 1px solid rgba(184, 200, 224, 0.16);
	border-bottom: 1px solid rgba(184, 200, 224, 0.16);
	margin-top: 2px;
}

.package-card__price {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	font-size: clamp(1.28rem, 2.3vw, 1.8rem);
	line-height: 1.2;
	font-weight: 700;
	color: var(--white);
}

.package-card__currency {
	font-size: 0.86rem;
	font-family: 'IBM Plex Mono', monospace;
	letter-spacing: 0.04em;
	color: var(--cyan);
}

.package-card__period {
	margin-top: 3px;
	font-size: 0.83rem;
	color: var(--muted-text);
}

.package-card__features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 7px;
	padding: 2px 0;
	margin: 0;
	flex: 1;
}

.package-card__features li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--body-text);
}

.package-card__features li span {
	color: var(--lime);
	line-height: 1.35;
	margin-top: 1px;
	font-weight: 700;
}

.package-card__cta {
	margin-top: 2px;
	width: 100%;
	justify-content: center;
}

.packages-carousel__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 12px;
	position: relative;
	z-index: 2;
}

.packages-carousel__arrow {
	appearance: none;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid rgba(184, 200, 224, 0.28);
	background: rgba(4, 14, 32, 0.6);
	color: var(--white);
	cursor: pointer;
	pointer-events: auto;
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.packages-carousel__arrow:hover {
	transform: translateY(-1px);
	border-color: rgba(53, 199, 232, 0.52);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
}

.packages-carousel__arrow:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
	border-color: rgba(184, 200, 224, 0.22);
}

.packages-carousel__dots {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.packages-carousel__dot {
	appearance: none;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: 0;
	background: rgba(184, 200, 224, 0.35);
	cursor: pointer;
	padding: 0;
	pointer-events: auto;
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

html[dir='rtl'] .packages-carousel__track .package-card {
	text-align: right;
}

html[dir='ltr'] .packages-carousel__track .package-card {
	text-align: left;
}

.packages-carousel__dot.is-active {
	background: var(--dl-cyan, var(--cyan));
	transform: scale(1.15);
	box-shadow: 0 0 0 3px rgba(53, 199, 232, 0.16);
}

/* Clients */
.clients-section {
	position: relative;
	width: min(1240px, 100%);
	margin: 20px auto 0;
	padding: clamp(26px, 4.2vw, 44px);
	border-radius: 22px;
	overflow: hidden;
	background:
		radial-gradient(circle at 14% 18%, rgba(53, 199, 232, 0.1), transparent 38%),
		radial-gradient(circle at 84% 26%, rgba(168, 212, 43, 0.09), transparent 34%),
		linear-gradient(160deg, rgba(8, 22, 48, 0.96), rgba(4, 14, 32, 0.92));
	border: 1px solid rgba(184, 200, 224, 0.14);
	box-shadow: 0 28px 64px rgba(0, 0, 0, 0.29);
	scroll-margin-top: 110px;
	isolation: isolate;
}

body.admin-bar .clients-section {
	scroll-margin-top: 144px;
}

.clients-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(184, 200, 224, 0.13) 1px, transparent 1px);
	background-size: 18px 18px;
	opacity: 0.17;
	pointer-events: none;
	mask-image: linear-gradient(to bottom, black, transparent 92%);
	z-index: 0;
}

.clients-header,
.clients-grid,
.clients-section .services-divider,
.clients-section .services-empty-message {
	position: relative;
	z-index: 1;
}

.clients-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(16px, 2.4vw, 32px);
	align-items: end;
}

.clients-grid {
	margin-top: 16px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	align-items: stretch;
}

.clients-intro-note {
	position: relative;
	z-index: 1;
	margin-top: 8px;
	font-size: 0.9rem;
	line-height: 1.68;
	color: var(--body-text);
	padding: 9px 11px;
	border-radius: 11px;
	border: 1px solid rgba(184, 200, 224, 0.18);
	background: rgba(4, 14, 32, 0.48);
}

.client-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 7px;
	padding: 13px;
	border-radius: 14px;
	background: linear-gradient(165deg, rgba(5, 16, 36, 0.9), rgba(7, 21, 47, 0.76));
	border: 1px solid rgba(184, 200, 224, 0.16);
	backdrop-filter: blur(8px);
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.client-card--featured {
	border-color: rgba(53, 199, 232, 0.44);
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.14) inset;
}

@media (hover: hover) and (pointer: fine) {
	.client-card:hover {
		transform: translateY(-4px);
		border-color: rgba(53, 199, 232, 0.36);
		box-shadow: 0 14px 28px rgba(0, 0, 0, 0.27), 0 0 0 1px rgba(53, 199, 232, 0.16) inset;
	}

	.client-card--featured:hover {
		border-color: rgba(168, 212, 43, 0.44);
		box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(168, 212, 43, 0.2) inset;
	}
}

.client-card__logo {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(145deg, rgba(4, 14, 32, 0.85), rgba(10, 26, 58, 0.72));
	border: 1px solid rgba(184, 200, 224, 0.2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.client-card__logo-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.client-card__initials {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--white);
}

.client-card__name {
	font-size: 1.05rem;
	line-height: 1.45;
	color: var(--white);
	margin: 2px 0 0;
}

.client-card__meta,
.client-card__project {
	font-size: 0.84rem;
	line-height: 1.6;
	color: var(--body-text);
	margin: 0;
}

.client-card__meta span,
.client-card__project span,
.client-card__testimonial span {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.68rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--muted-text);
}

.client-card__project {
	color: var(--muted-text);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.client-card__testimonial {
	font-size: 0.88rem;
	line-height: 1.68;
	color: var(--body-text);
	margin: 2px 0 0;
	padding-inline-start: 9px;
	border-inline-start: 2px solid rgba(53, 199, 232, 0.35);
}

.client-card__link {
	margin-top: 2px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	width: fit-content;
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--cyan);
	transition: color 0.2s ease;
}

.client-card__link:hover,
.client-card__link:focus-visible {
	color: var(--lime);
}

html[dir='rtl'] .clients-header,
html[dir='rtl'] .client-card {
	text-align: right;
}

html[dir='ltr'] .clients-header,
html[dir='ltr'] .client-card {
	text-align: left;
}

@media (max-width: 1024px) {
	.clients-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Why Darbin */
.why-section {
	position: relative;
	width: min(1240px, 100%);
	margin: 22px auto 0;
	padding: clamp(28px, 4.8vw, 46px);
	border-radius: 22px;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 16%, rgba(53, 199, 232, 0.11), transparent 40%),
		radial-gradient(circle at 86% 24%, rgba(168, 212, 43, 0.1), transparent 34%),
		linear-gradient(160deg, rgba(7, 21, 47, 0.96), rgba(4, 14, 32, 0.92));
	border: 1px solid rgba(184, 200, 224, 0.14);
	box-shadow: 0 28px 62px rgba(0, 0, 0, 0.28);
	scroll-margin-top: 110px;
	isolation: isolate;
}

body.admin-bar .why-section {
	scroll-margin-top: 144px;
}

.why-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(184, 200, 224, 0.13) 1px, transparent 1px);
	background-size: 18px 18px;
	opacity: 0.16;
	pointer-events: none;
	mask-image: linear-gradient(to bottom, black, transparent 92%);
	z-index: 0;
}

.why-header,
.why-grid,
.why-section .services-divider {
	position: relative;
	z-index: 1;
}

.why-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(18px, 3vw, 42px);
	align-items: end;
}

.why-grid {
	margin-top: 18px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	align-items: stretch;
}

.why-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 9px;
	padding: 16px;
	border-radius: 15px;
	background: linear-gradient(165deg, rgba(5, 16, 36, 0.9), rgba(7, 21, 47, 0.76));
	border: 1px solid rgba(184, 200, 224, 0.16);
	backdrop-filter: blur(9px);
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.why-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: rgba(53, 199, 232, 0.16);
	border: 1px solid rgba(53, 199, 232, 0.44);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--white);
}

.why-card__title {
	font-size: 1.02rem;
	line-height: 1.45;
	color: var(--white);
	margin: 0;
}

.why-card__description {
	font-size: 0.9rem;
	line-height: 1.78;
	color: var(--body-text);
	margin: 0;
}

@media (hover: hover) and (pointer: fine) {
	.why-card:hover {
		transform: translateY(-4px);
		border-color: rgba(53, 199, 232, 0.42);
		box-shadow: 0 14px 30px rgba(0, 0, 0, 0.27), 0 0 0 1px rgba(53, 199, 232, 0.16) inset;
	}
}

html[dir='rtl'] .why-header,
html[dir='rtl'] .why-card {
	text-align: right;
}

html[dir='ltr'] .why-header,
html[dir='ltr'] .why-card {
	text-align: left;
}

@media (max-width: 1024px) {
	.why-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.why-grid {
		grid-template-columns: 1fr;
	}
}

/* Use Cases */
.use-cases-section {
	position: relative;
	width: min(1240px, 100%);
	margin: 22px auto 0;
	padding: clamp(28px, 4.8vw, 46px);
	border-radius: 22px;
	overflow: hidden;
	background:
		radial-gradient(circle at 14% 18%, rgba(53, 199, 232, 0.12), transparent 38%),
		radial-gradient(circle at 84% 22%, rgba(168, 212, 43, 0.1), transparent 34%),
		linear-gradient(160deg, rgba(7, 21, 47, 0.96), rgba(4, 14, 32, 0.92));
	border: 1px solid rgba(184, 200, 224, 0.14);
	box-shadow: 0 28px 64px rgba(0, 0, 0, 0.29);
	scroll-margin-top: 110px;
	isolation: isolate;
}

body.admin-bar .use-cases-section {
	scroll-margin-top: 144px;
}

.use-cases-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(184, 200, 224, 0.13) 1px, transparent 1px);
	background-size: 18px 18px;
	opacity: 0.16;
	pointer-events: none;
	mask-image: linear-gradient(to bottom, black, transparent 92%);
	z-index: 0;
}

.use-cases-header,
.use-cases-grid,
.use-cases-section .services-divider,
.use-cases-section .services-empty-message {
	position: relative;
	z-index: 1;
}

.use-cases-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(18px, 3vw, 42px);
	align-items: end;
}

.use-cases-grid {
	margin-top: 18px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	align-items: stretch;
}

.use-case-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 9px;
	padding: 16px;
	border-radius: 15px;
	background: linear-gradient(165deg, rgba(5, 16, 36, 0.9), rgba(7, 21, 47, 0.76));
	border: 1px solid rgba(184, 200, 224, 0.16);
	backdrop-filter: blur(9px);
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.use-case-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: rgba(53, 199, 232, 0.16);
	border: 1px solid rgba(53, 199, 232, 0.44);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--white);
}

.use-case-card__title {
	font-size: 1.04rem;
	line-height: 1.45;
	color: var(--white);
	margin: 0;
}

.use-case-card__description {
	font-size: 0.9rem;
	line-height: 1.78;
	color: var(--body-text);
	margin: 0;
	flex: 1;
}

.use-case-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	text-decoration: none;
	font-size: 0.84rem;
	font-weight: 600;
	color: var(--cyan);
	transition: color 0.22s ease;
}

.use-case-card__cta-arrow {
	font-size: 0.9rem;
	line-height: 1;
	transform: translateX(0);
	transition: transform 0.22s ease;
}

.use-case-card__cta:focus-visible {
	outline: 2px solid rgba(53, 199, 232, 0.65);
	outline-offset: 2px;
	border-radius: 6px;
}

.use-case-card__cta:hover,
.use-case-card__cta:focus-visible {
	color: var(--lime);
}

@media (hover: hover) and (pointer: fine) {
	.use-case-card:hover {
		transform: translateY(-4px);
		border-color: rgba(53, 199, 232, 0.42);
		box-shadow: 0 14px 30px rgba(0, 0, 0, 0.27), 0 0 0 1px rgba(53, 199, 232, 0.16) inset;
	}

	.use-case-card:hover .use-case-card__cta-arrow {
		transform: translateX(3px);
	}
}

html[dir='rtl'] .use-cases-header,
html[dir='rtl'] .use-case-card {
	text-align: right;
}

html[dir='rtl'] .use-case-card__cta-arrow {
	transform: rotate(180deg);
}

@media (hover: hover) and (pointer: fine) {
	html[dir='rtl'] .use-case-card:hover .use-case-card__cta-arrow {
		transform: translateX(-3px) rotate(180deg);
	}
}

html[dir='ltr'] .use-cases-header,
html[dir='ltr'] .use-case-card {
	text-align: left;
}

@media (max-width: 1024px) {
	.use-cases-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.use-cases-grid {
		grid-template-columns: 1fr;
	}
}

.section-anchor {
	display: block;
	position: relative;
	top: -110px;
	visibility: hidden;
	pointer-events: none;
}

#home,
#services,
#process,
#packages,
#clients,
#why-darbin,
#use-cases,
#quote-form,
#faq,
#contact {
	scroll-margin-top: 110px;
}

body.admin-bar .section-anchor {
	top: -144px;
}

body.admin-bar #home,
body.admin-bar #services,
body.admin-bar #process,
body.admin-bar #packages,
body.admin-bar #clients,
body.admin-bar #why-darbin,
body.admin-bar #use-cases,
body.admin-bar #quote-form,
body.admin-bar #faq,
body.admin-bar #contact {
	scroll-margin-top: 144px;
}

/* Solutions */
.solutions-section {
	position: relative;
	width: min(1240px, 100%);
	margin: 22px auto 0;
	padding: clamp(28px, 4.8vw, 48px);
	border-radius: 22px;
	overflow: hidden;
	background:
		radial-gradient(circle at 20% 20%, rgba(53, 199, 232, 0.1), transparent 36%),
		radial-gradient(circle at 82% 28%, rgba(168, 212, 43, 0.09), transparent 32%),
		linear-gradient(160deg, rgba(8, 22, 48, 0.96), rgba(4, 14, 32, 0.93));
	border: 1px solid rgba(184, 200, 224, 0.14);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
	scroll-margin-top: 110px;
	isolation: isolate;
}

body.admin-bar .solutions-section {
	scroll-margin-top: 144px;
}

.solutions-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(184, 200, 224, 0.14) 1px, transparent 1px);
	background-size: 18px 18px;
	opacity: 0.18;
	pointer-events: none;
	mask-image: linear-gradient(to bottom, black, transparent 90%);
	z-index: 0;
}

.solutions-header,
.solutions-groups,
.solutions-section .services-divider,
.solutions-section .services-empty-message {
	position: relative;
	z-index: 1;
}

.solutions-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(18px, 3vw, 42px);
	align-items: end;
}

.solutions-groups {
	margin-top: 18px;
	display: grid;
	gap: 18px;
}

.solutions-group {
	position: relative;
	padding: clamp(16px, 2.4vw, 22px);
	border-radius: 16px;
	background: linear-gradient(165deg, rgba(4, 14, 32, 0.72), rgba(7, 21, 47, 0.58));
	border: 1px solid rgba(184, 200, 224, 0.14);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
	scroll-margin-top: 110px;
}

body.admin-bar .solutions-group {
	scroll-margin-top: 144px;
}

.solutions-group--saas {
	border-color: rgba(53, 199, 232, 0.26);
	background: linear-gradient(158deg, rgba(6, 19, 44, 0.78), rgba(4, 14, 32, 0.62));
}

.solutions-group--business {
	border-color: rgba(168, 212, 43, 0.2);
	background: linear-gradient(160deg, rgba(8, 22, 48, 0.72), rgba(4, 14, 32, 0.58));
}

.solutions-group__header {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 12px;
}

.solutions-group__title {
	font-size: clamp(1.16rem, 1.9vw, 1.46rem);
	line-height: 1.28;
	color: var(--white);
}

.solutions-group__description {
	font-size: 0.93rem;
	line-height: 1.75;
	color: var(--muted-text);
	max-width: 72ch;
}

.solutions-grid {
	display: grid;
	gap: 14px;
	align-items: stretch;
}

.solutions-grid--saas {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solutions-grid--business {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 9px;
	padding: 15px;
	border-radius: 16px;
	background: linear-gradient(165deg, rgba(5, 16, 36, 0.92), rgba(7, 21, 47, 0.84));
	border: 1px solid rgba(184, 200, 224, 0.18);
	backdrop-filter: blur(9px);
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.solution-card--featured {
	border-color: rgba(53, 199, 232, 0.42);
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.16) inset, 0 16px 28px rgba(0, 0, 0, 0.24);
}

@media (hover: hover) and (pointer: fine) {
	.solution-card:hover {
		transform: translateY(-3px);
		border-color: rgba(53, 199, 232, 0.32);
		box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
	}
}

.solution-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
}

.solution-card__status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 4px 9px;
	border-radius: 999px;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	border: 1px solid rgba(184, 200, 224, 0.28);
	background: rgba(184, 200, 224, 0.08);
	color: var(--white);
}

.solution-card__icon-badge {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	border-radius: 999px;
	border: 1px solid rgba(53, 199, 232, 0.5);
	background:
		radial-gradient(circle at 50% 50%, rgba(53, 199, 232, 0.95) 0 34%, transparent 36%),
		linear-gradient(145deg, rgba(53, 199, 232, 0.3), rgba(4, 14, 32, 0.2));
	box-shadow: 0 0 0 3px rgba(53, 199, 232, 0.1);
}

.solution-card--available .solution-card__status {
	background: rgba(168, 212, 43, 0.12);
	border-color: rgba(168, 212, 43, 0.34);
}

.solution-card--coming-soon .solution-card__status {
	background: rgba(53, 199, 232, 0.12);
	border-color: rgba(53, 199, 232, 0.36);
}

.solution-card--development .solution-card__status {
	background: rgba(255, 191, 92, 0.14);
	border-color: rgba(255, 191, 92, 0.34);
}

.solution-card--private-beta .solution-card__status {
	background: rgba(184, 200, 224, 0.14);
	border-color: rgba(184, 200, 224, 0.36);
}

.solution-card__title {
	font-size: clamp(1.12rem, 1.7vw, 1.32rem);
	line-height: 1.35;
	color: var(--white);
}

.solution-card__description {
	font-size: 0.94rem;
	line-height: 1.8;
	color: var(--muted-text);
	flex: 1;
}

.solution-card__cta {
	width: fit-content;
	margin-top: 4px;
}

/* Quote */
.quote-section {
	position: relative;
	width: min(1240px, 100%);
	margin: 20px auto 0;
	padding: clamp(26px, 4.2vw, 44px);
	border-radius: 22px;
	overflow: hidden;
	background:
		radial-gradient(circle at 18% 16%, rgba(53, 199, 232, 0.12), transparent 36%),
		linear-gradient(160deg, rgba(10, 26, 58, 0.96), rgba(4, 14, 32, 0.93));
	border: 1px solid rgba(184, 200, 224, 0.14);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
	scroll-margin-top: 110px;
	isolation: isolate;
}

body.admin-bar .quote-section {
	scroll-margin-top: 144px;
}

.quote-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(184, 200, 224, 0.13) 1px, transparent 1px);
	background-size: 18px 18px;
	opacity: 0.2;
	pointer-events: none;
	mask-image: linear-gradient(to bottom, black, transparent 90%);
	z-index: 0;
}

.quote-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
	gap: clamp(16px, 2.6vw, 30px);
	align-items: start;
}

.quote-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.quote-content h2 {
	font-size: clamp(1.8rem, 3.6vw, 2.9rem);
	line-height: 1.2;
	color: var(--white);
}

.quote-content p {
	font-size: 1rem;
	line-height: 1.78;
	color: var(--body-text);
	max-width: 54ch;
}

.quote-next-steps {
	margin-top: 2px;
	padding: 11px 12px;
	border-radius: 12px;
	border: 1px solid rgba(184, 200, 224, 0.18);
	background: rgba(4, 14, 32, 0.5);
}

.quote-next-steps h3 {
	font-size: 0.95rem;
	line-height: 1.45;
	color: var(--white);
	margin-bottom: 7px;
}

.quote-next-steps ol {
	margin: 0;
	padding-inline-start: 18px;
	display: grid;
	gap: 3px;
}

.quote-next-steps__item {
	font-size: 0.9rem;
	line-height: 1.62;
	color: var(--body-text);
}

.quote-reassurance {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 5px;
}

.quote-reassurance__chip {
	display: inline-flex;
	align-items: center;
	padding: 4px 9px;
	border-radius: 999px;
	border: 1px solid rgba(53, 199, 232, 0.26);
	background: rgba(53, 199, 232, 0.1);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.64rem;
	line-height: 1.3;
	letter-spacing: 0.03em;
	color: var(--body-text);
}

.quote-helper-note {
	font-size: 0.9rem;
	line-height: 1.68;
	color: var(--muted-text);
	max-width: 56ch;
}

.quote-benefits {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 6px;
}

.quote-benefits li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
	color: var(--white);
}

.quote-benefits li::before {
	content: '';
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--cyan), var(--lime));
	flex-shrink: 0;
}

.quote-form-card {
	background: linear-gradient(165deg, rgba(4, 14, 32, 0.88), rgba(7, 21, 47, 0.76));
	border: 1px solid rgba(53, 199, 232, 0.28);
	border-radius: 16px;
	padding: 16px;
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.12) inset, 0 16px 30px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(9px);
}

.quote-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.quote-selected-interest {
	grid-column: span 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 9px 11px;
	border-radius: 10px;
	border: 1px solid rgba(53, 199, 232, 0.34);
	background: rgba(53, 199, 232, 0.12);
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--white);
}

.quote-selected-interest.is-hidden {
	display: none;
}

.quote-selected-interest__text {
	flex: 1;
	word-break: break-word;
}

.quote-selected-interest__clear {
	appearance: none;
	border: 1px solid rgba(53, 199, 232, 0.38);
	background: rgba(4, 14, 32, 0.5);
	color: var(--body-text);
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-family: 'IBM Plex Mono', monospace;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.quote-selected-interest__clear:hover,
.quote-selected-interest__clear:focus-visible {
	color: var(--white);
	border-color: rgba(53, 199, 232, 0.6);
	background: rgba(53, 199, 232, 0.14);
	outline: none;
}

.quote-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	grid-column: span 2;
}

.quote-field--half {
	grid-column: span 1;
}

.quote-field--full {
	grid-column: span 2;
}

.quote-field label {
	font-size: 0.86rem;
	font-weight: 500;
	color: var(--body-text);
}

.quote-field input,
.quote-field select,
.quote-field textarea {
	appearance: none;
	width: 100%;
	padding: 9px 11px;
	border-radius: 10px;
	border: 1px solid rgba(184, 200, 224, 0.2);
	background: rgba(4, 14, 32, 0.68);
	color: var(--white);
	line-height: 1.5;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-field textarea {
	resize: vertical;
	min-height: 118px;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
	color: var(--muted-text);
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
	outline: 0;
	border-color: rgba(53, 199, 232, 0.56);
	box-shadow: 0 0 0 3px rgba(53, 199, 232, 0.16);
}

.quote-status {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	border-radius: 10px;
	padding: 9px 11px;
	font-size: 0.9rem;
	line-height: 1.65;
	margin-bottom: 10px;
}

.quote-status.is-hidden {
	display: none;
}

.quote-status__dismiss {
	appearance: none;
	border: 0;
	background: transparent;
	color: inherit;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	padding: 0 2px;
	opacity: 0.8;
}

.quote-status__dismiss:hover {
	opacity: 1;
}

.quote-status--success {
	background: rgba(168, 212, 43, 0.14);
	border: 1px solid rgba(168, 212, 43, 0.35);
	color: var(--white);
}

.quote-status--error {
	background: rgba(255, 108, 108, 0.12);
	border: 1px solid rgba(255, 108, 108, 0.34);
	color: #ffd7d7;
}

.quote-submit {
	width: 100%;
	grid-column: span 2;
	margin-top: 2px;
	justify-content: center;
}

.quote-honeypot {
	position: absolute !important;
	left: -9999px !important;
	opacity: 0 !important;
	pointer-events: none !important;
	width: 1px !important;
	height: 1px !important;
}

html[dir='rtl'] .quote-content {
	text-align: right;
	align-items: flex-end;
}

html[dir='rtl'] .quote-form-card,
html[dir='rtl'] .quote-field input,
html[dir='rtl'] .quote-field select,
html[dir='rtl'] .quote-field textarea {
	text-align: right;
}

html[dir='ltr'] .quote-content {
	text-align: left;
	align-items: flex-start;
}

html[dir='ltr'] .quote-form-card,
html[dir='ltr'] .quote-field input,
html[dir='ltr'] .quote-field select,
html[dir='ltr'] .quote-field textarea {
	text-align: left;
}

/* FAQ */
.faq-section {
	position: relative;
	width: min(1240px, 100%);
	margin: 22px auto 0;
	padding: clamp(28px, 4.8vw, 46px);
	border-radius: 22px;
	overflow: hidden;
	background:
		radial-gradient(circle at 16% 16%, rgba(53, 199, 232, 0.11), transparent 35%),
		radial-gradient(circle at 84% 24%, rgba(168, 212, 43, 0.08), transparent 34%),
		linear-gradient(160deg, rgba(8, 22, 48, 0.96), rgba(4, 14, 32, 0.92));
	border: 1px solid rgba(184, 200, 224, 0.14);
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
	scroll-margin-top: 110px;
	isolation: isolate;
}

body.admin-bar .faq-section {
	scroll-margin-top: 144px;
}

.faq-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(184, 200, 224, 0.13) 1px, transparent 1px);
	background-size: 18px 18px;
	opacity: 0.18;
	pointer-events: none;
	mask-image: linear-gradient(to bottom, black, transparent 92%);
	z-index: 0;
}

.faq-header,
.faq-list,
.faq-section .services-divider,
.faq-section .services-empty-message {
	position: relative;
	z-index: 1;
}

.faq-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(18px, 3vw, 42px);
	align-items: end;
}

.faq-search-wrap {
	position: relative;
	z-index: 1;
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.faq-search__label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--muted-text);
}

.faq-search__input {
	appearance: none;
	width: min(100%, 560px);
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid rgba(184, 200, 224, 0.22);
	background: rgba(4, 14, 32, 0.62);
	color: var(--white);
	line-height: 1.5;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-search__input::placeholder {
	color: var(--muted-text);
}

.faq-search__input:focus {
	outline: none;
	border-color: rgba(53, 199, 232, 0.56);
	box-shadow: 0 0 0 3px rgba(53, 199, 232, 0.16);
}

.faq-list {
	display: grid;
	gap: 12px;
	margin-top: 16px;
}

.faq-item {
	position: relative;
	border-radius: 14px;
	background: linear-gradient(165deg, rgba(5, 16, 36, 0.88), rgba(7, 21, 47, 0.74));
	border: 1px solid rgba(184, 200, 224, 0.16);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
	.faq-item:hover {
		border-color: rgba(53, 199, 232, 0.34);
		box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
	}
}

.faq-question {
	appearance: none;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border: 0;
	background: transparent;
	padding: 15px 16px;
	font-size: 1rem;
	line-height: 1.65;
	font-weight: 600;
	color: var(--white);
	cursor: pointer;
	text-align: inherit;
	transition: background 0.2s ease;
}

.faq-question:hover,
.faq-question:focus-visible {
	background: rgba(53, 199, 232, 0.08);
	outline: none;
}

.faq-question__text {
	flex: 1;
}

.faq-icon {
	position: relative;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	border-radius: 999px;
	border: 1px solid rgba(53, 199, 232, 0.42);
	background: rgba(53, 199, 232, 0.1);
}

.faq-icon::before,
.faq-icon::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 10px;
	height: 1.8px;
	background: var(--cyan);
	transform: translate(-50%, -50%);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.faq-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(90deg) scaleX(0.1);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.32s ease, opacity 0.24s ease;
	will-change: max-height;
}

.faq-item.is-open .faq-answer {
	opacity: 1;
	max-height: 540px;
}

.faq-answer__content {
	padding: 0 16px 16px;
	font-size: 0.95rem;
	line-height: 1.9;
	color: var(--body-text);
}

.faq-answer__content p:last-child {
	margin-bottom: 0;
}

.faq-empty-state {
	position: relative;
	z-index: 1;
	margin-top: 14px;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px dashed rgba(184, 200, 224, 0.28);
	background: rgba(4, 14, 32, 0.52);
	font-size: 0.9rem;
	line-height: 1.7;
	color: var(--body-text);
}

.faq-empty-state.is-hidden {
	display: none;
}

html[dir='rtl'] .faq-header,
html[dir='rtl'] .faq-item,
html[dir='rtl'] .faq-answer__content,
html[dir='rtl'] .faq-search-wrap,
html[dir='rtl'] .faq-empty-state {
	text-align: right;
}

html[dir='ltr'] .faq-header,
html[dir='ltr'] .faq-item,
html[dir='ltr'] .faq-answer__content,
html[dir='ltr'] .faq-search-wrap,
html[dir='ltr'] .faq-empty-state {
	text-align: left;
}

/* Contact */
.contact-section {
	position: relative;
	width: min(1240px, 100%);
	margin: 20px auto 0;
	padding: clamp(26px, 4.2vw, 44px);
	border-radius: 22px;
	overflow: hidden;
	background:
		radial-gradient(circle at 18% 18%, rgba(53, 199, 232, 0.12), transparent 36%),
		radial-gradient(circle at 84% 24%, rgba(168, 212, 43, 0.1), transparent 34%),
		linear-gradient(160deg, rgba(8, 22, 48, 0.96), rgba(4, 14, 32, 0.92));
	border: 1px solid rgba(184, 200, 224, 0.14);
	box-shadow: 0 28px 64px rgba(0, 0, 0, 0.3);
	scroll-margin-top: 110px;
	isolation: isolate;
}

body.admin-bar .contact-section {
	scroll-margin-top: 144px;
}

.contact-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(184, 200, 224, 0.13) 1px, transparent 1px);
	background-size: 18px 18px;
	opacity: 0.18;
	pointer-events: none;
	mask-image: linear-gradient(to bottom, black, transparent 90%);
	z-index: 0;
}

.contact-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
	gap: clamp(16px, 2.6vw, 30px);
	align-items: stretch;
}

.contact-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.contact-content h2 {
	font-size: clamp(1.82rem, 3.7vw, 2.92rem);
	line-height: 1.22;
	color: var(--white);
}

.contact-content > p {
	font-size: 1rem;
	line-height: 1.78;
	color: var(--body-text);
	max-width: 56ch;
}

.contact-info-list {
	list-style: none;
	margin-top: 4px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 9px;
}

.contact-info-item {
	padding: 9px 10px;
	border-radius: 12px;
	background: rgba(4, 14, 32, 0.54);
	border: 1px solid rgba(184, 200, 224, 0.18);
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-height: 84px;
}

.contact-info-item__label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.69rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--muted-text);
}

.contact-info-item__value {
	font-size: 0.94rem;
	line-height: 1.58;
	color: var(--white);
	text-decoration: none;
	word-break: break-word;
}

.contact-info-item__value--muted {
	font-size: 0.82rem;
	color: var(--muted-text);
}

.contact-copy-button {
	appearance: none;
	align-self: flex-start;
	margin-top: 3px;
	padding: 4px 9px;
	border-radius: 999px;
	border: 1px solid rgba(53, 199, 232, 0.34);
	background: rgba(53, 199, 232, 0.1);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.69rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	line-height: 1.2;
	color: var(--body-text);
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-copy-button:hover,
.contact-copy-button:focus-visible {
	border-color: rgba(53, 199, 232, 0.58);
	background: rgba(53, 199, 232, 0.18);
	color: var(--white);
	outline: none;
}

.contact-copy-button.is-copied {
	border-color: rgba(168, 212, 43, 0.5);
	background: rgba(168, 212, 43, 0.18);
	color: var(--white);
}

a.contact-info-item__value:hover {
	color: var(--cyan);
}

.contact-actions {
	margin-top: 2px;
	display: flex;
	align-items: center;
	gap: 9px;
	flex-wrap: wrap;
}

.contact-best-ways {
	margin-top: 6px;
	padding: 11px;
	border-radius: 12px;
	border: 1px solid rgba(184, 200, 224, 0.18);
	background: rgba(4, 14, 32, 0.5);
}

.contact-best-ways__title {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.72rem;
	line-height: 1.4;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--cyan);
	margin-bottom: 7px;
}

.contact-best-ways ul {
	margin: 0;
	padding-inline-start: 18px;
	display: grid;
	gap: 3px;
}

.contact-best-ways li {
	font-size: 0.9rem;
	line-height: 1.62;
	color: var(--body-text);
}

.contact-card {
	position: relative;
	padding: 20px;
	border-radius: 16px;
	background: linear-gradient(165deg, rgba(4, 14, 32, 0.88), rgba(7, 21, 47, 0.76));
	border: 1px solid rgba(53, 199, 232, 0.3);
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.12) inset, 0 18px 34px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(9px);
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
}

.contact-card::before {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	background: linear-gradient(140deg, rgba(53, 199, 232, 0.18), rgba(168, 212, 43, 0.08));
	opacity: 0.6;
	pointer-events: none;
	mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	mask-composite: exclude;
	padding: 1px;
}

.contact-card__logo {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	color: var(--cyan);
	background: rgba(53, 199, 232, 0.12);
	border: 1px solid rgba(53, 199, 232, 0.35);
	border-radius: 14px;
	box-shadow: 0 10px 20px rgba(53, 199, 232, 0.18);
}

.contact-card__title {
	font-size: clamp(1.12rem, 2vw, 1.42rem);
	line-height: 1.35;
	color: var(--white);
}

.contact-card__description {
	font-size: 0.94rem;
	line-height: 1.72;
	color: var(--body-text);
}

.contact-card__cta {
	margin-top: 4px;
	width: fit-content;
}

html[dir='rtl'] .contact-content,
html[dir='rtl'] .contact-info-item,
html[dir='rtl'] .contact-card {
	text-align: right;
}

html[dir='rtl'] .contact-copy-button {
	align-self: flex-end;
}

html[dir='ltr'] .contact-content,
html[dir='ltr'] .contact-info-item,
html[dir='ltr'] .contact-card {
	text-align: left;
}

html[dir='ltr'] .contact-copy-button {
	align-self: flex-start;
}

/* Section Media & Layout Engine */
.darbin-section {
	--section-bg-image: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.darbin-section.section--bg-plain {
	background: linear-gradient(165deg, rgba(6, 18, 40, 0.96), rgba(5, 15, 34, 0.94));
}

.darbin-section.section--bg-gradient {
	background:
		radial-gradient(circle at 16% 16%, rgba(53, 199, 232, 0.16), transparent 40%),
		radial-gradient(circle at 84% 24%, rgba(168, 212, 43, 0.12), transparent 36%),
		linear-gradient(160deg, rgba(8, 22, 48, 0.97), rgba(4, 14, 32, 0.93));
}

.darbin-section.section--bg-glow {
	box-shadow:
		0 0 0 1px rgba(53, 199, 232, 0.18) inset,
		0 0 34px rgba(53, 199, 232, 0.14),
		0 24px 56px rgba(0, 0, 0, 0.3);
}

.darbin-section.section--bg-image.section--has-bg-image {
	background:
		linear-gradient(158deg, rgba(6, 18, 40, 0.78), rgba(4, 14, 32, 0.76)),
		var(--section-bg-image);
	border-color: rgba(184, 200, 224, 0.2);
}

.darbin-section.section--bg-image.section--has-bg-image::before {
	opacity: 0.1;
}

.hero-section.section--bg-image.section--has-bg-image .hero-bg-layers {
	opacity: 0.48;
}

.darbin-section.section--layout-compact {
	padding: clamp(20px, 3.4vw, 34px);
}

.darbin-section .section-media {
	display: none;
	position: relative;
	z-index: 1;
	margin-top: 16px;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(184, 200, 224, 0.2);
	background: rgba(4, 14, 32, 0.52);
}

.darbin-section.section--has-image .section-media {
	display: block;
}

.darbin-section .section-media img {
	width: 100%;
	display: block;
	max-height: 280px;
	object-fit: cover;
	object-position: center;
}

.darbin-section.section--layout-image-left .section-media img {
	object-position: left center;
}

.darbin-section.section--layout-image-right .section-media img {
	object-position: right center;
}

.hero-section.section--layout-image-left .hero-content {
	order: 2;
}

.hero-section.section--layout-image-left .hero-visual {
	order: 1;
}

.hero-section.section--layout-centered .hero-grid {
	grid-template-columns: 1fr;
	justify-items: center;
	text-align: center;
	min-height: unset;
}

.hero-section.section--layout-centered .hero-content {
	align-items: center;
	text-align: center;
	justify-self: center;
}

.hero-section.section--layout-centered .hero-visual {
	justify-self: center;
	order: 2;
}

.hero-section.section--layout-centered .hero-stats {
	justify-items: stretch;
}

.hero-section.section--layout-split .hero-grid {
	grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
}

.services-section.section--layout-centered .services-header,
.why-section.section--layout-centered .why-header,
.use-cases-section.section--layout-centered .use-cases-header {
	grid-template-columns: 1fr;
	align-items: center;
	gap: 12px;
	text-align: center;
}

.services-section.section--layout-centered .services-title-wrap,
.why-section.section--layout-centered .services-title-wrap,
.use-cases-section.section--layout-centered .services-title-wrap {
	justify-self: center;
	text-align: center;
	align-items: center;
}

.services-section.section--layout-centered .services-description,
.why-section.section--layout-centered .services-description,
.use-cases-section.section--layout-centered .services-description {
	justify-self: center;
	text-align: center;
	max-width: 68ch;
}

.services-section.section--layout-split .services-header,
.why-section.section--layout-split .why-header,
.use-cases-section.section--layout-split .use-cases-header {
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.contact-section.section--layout-centered .contact-grid {
	grid-template-columns: 1fr;
	justify-items: center;
	text-align: center;
}

.contact-section.section--layout-centered .contact-content,
.contact-section.section--layout-centered .contact-card,
.contact-section.section--layout-centered .contact-info-item {
	text-align: center;
}

.contact-section.section--layout-centered .contact-copy-button {
	align-self: center;
}

.contact-section.section--layout-centered .contact-actions {
	justify-content: center;
}

.contact-section.section--layout-split .contact-grid {
	grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
}

/* Custom Sections (Batch T5) */
.custom-section {
	position: relative;
	isolation: isolate;
	margin-top: 18px;
	padding: clamp(24px, 4.1vw, 38px);
	border-radius: 20px;
	border: 1px solid rgba(184, 200, 224, 0.2);
	background:
		radial-gradient(circle at 14% 16%, rgba(53, 199, 232, 0.09), transparent 38%),
		radial-gradient(circle at 86% 18%, rgba(168, 212, 43, 0.07), transparent 36%),
		linear-gradient(160deg, rgba(5, 16, 36, 0.96), rgba(4, 13, 30, 0.95));
	overflow: hidden;
}

.custom-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, rgba(53, 199, 232, 0.06), transparent 46%, rgba(168, 212, 43, 0.05));
	opacity: 0.72;
	pointer-events: none;
	z-index: 0;
}

.custom-section__inner {
	position: relative;
	z-index: 1;
	width: min(1180px, 100%);
	margin-inline: auto;
	display: grid;
	gap: clamp(14px, 2.2vw, 24px);
}

.custom-section__header {
	display: grid;
	gap: 8px;
	max-width: 72ch;
}

.custom-section__label {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 6px 12px;
	border-radius: 999px;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(232, 244, 255, 0.9);
	background: rgba(53, 199, 232, 0.16);
	border: 1px solid rgba(53, 199, 232, 0.3);
	margin: 0;
	max-width: 100%;
	overflow-wrap: anywhere;
}

.custom-section__title {
	margin: 0;
	font-size: clamp(1.45rem, 3.2vw, 2.24rem);
	line-height: 1.24;
	letter-spacing: -0.01em;
	color: var(--white);
	overflow-wrap: anywhere;
}

.custom-section__description {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.78;
	color: var(--body-text);
	overflow-wrap: anywhere;
}

.custom-section__split {
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(260px, 0.94fr);
	align-items: center;
	gap: clamp(16px, 2.6vw, 32px);
}

.custom-section__body {
	display: grid;
	gap: 12px;
	align-content: start;
	min-width: 0;
}

.custom-section__content {
	color: var(--body-text);
	font-size: 0.98rem;
	line-height: 1.82;
	max-width: 74ch;
	min-width: 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.custom-section__content > *:first-child {
	margin-top: 0;
}

.custom-section__content > *:last-child {
	margin-bottom: 0;
}

.custom-section__button {
	width: fit-content;
	max-width: 100%;
	white-space: normal;
	overflow-wrap: anywhere;
}

.custom-section__media {
	margin: 0;
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: rgba(4, 14, 32, 0.5);
	border: 1px solid rgba(184, 200, 224, 0.22);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
	min-height: 220px;
}

.custom-section__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.custom-section__banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: clamp(12px, 1.8vw, 18px);
	border-radius: 14px;
	border: 1px solid rgba(53, 199, 232, 0.24);
	background: linear-gradient(150deg, rgba(8, 22, 48, 0.86), rgba(5, 15, 34, 0.82));
	flex-wrap: wrap;
}

.custom-section__banner .custom-section__body {
	gap: 10px;
	flex: 1 1 320px;
	max-width: 72ch;
}

.custom-section__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.custom-section__item {
	padding: 14px;
	border-radius: 12px;
	border: 1px solid rgba(184, 200, 224, 0.16);
	background: rgba(8, 22, 48, 0.42);
	min-width: 0;
	overflow-wrap: anywhere;
}

.custom-section__item h3 {
	margin: 0;
	font-size: 1rem;
	line-height: 1.42;
	color: var(--white);
}

.custom-section__item p {
	margin: 8px 0 0;
	font-size: 0.9rem;
	line-height: 1.72;
	color: var(--body-text);
}

.custom-section__stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.custom-section__stat {
	padding: 12px;
	border-radius: 12px;
	background: rgba(10, 25, 54, 0.54);
	border: 1px solid rgba(184, 200, 224, 0.17);
	display: grid;
	gap: 4px;
	min-width: 0;
	overflow-wrap: anywhere;
}

.custom-section__stat-label {
	font-size: 0.74rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--muted-text);
	font-family: 'IBM Plex Mono', monospace;
}

.custom-section__stat-value {
	font-size: clamp(1.02rem, 2.6vw, 1.52rem);
	line-height: 1.28;
	color: var(--white);
	font-weight: 600;
	overflow-wrap: anywhere;
}

.custom-section.custom-section--feature-grid .custom-section__content,
.custom-section.custom-section--stats-strip .custom-section__content {
	max-width: 100%;
}

.custom-section.custom-section--rich-text .custom-section__split {
	grid-template-columns: minmax(0, 1fr);
	gap: 14px;
}

.custom-section.custom-section--rich-text .custom-section__body {
	max-width: 78ch;
}

.custom-section.custom-section--layout-image-left .custom-section__body {
	order: 2;
}

.custom-section.custom-section--layout-image-left .custom-section__media {
	order: 1;
}

.custom-section.custom-section--layout-image-right .custom-section__body {
	order: 1;
}

.custom-section.custom-section--layout-image-right .custom-section__media {
	order: 2;
}

.custom-section.custom-section--layout-centered .custom-section__header,
.custom-section.custom-section--layout-centered .custom-section__body,
.custom-section.custom-section--layout-centered .custom-section__content {
	margin-inline: auto;
	text-align: center;
	justify-items: center;
}

.custom-section.custom-section--layout-centered .custom-section__split {
	grid-template-columns: minmax(0, 1fr);
	justify-items: center;
	text-align: center;
}

.custom-section.custom-section--layout-centered .custom-section__media {
	width: min(640px, 100%);
	justify-self: center;
}

.custom-section.custom-section--layout-split .custom-section__split {
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.custom-section.custom-section--layout-compact {
	padding: clamp(18px, 2.8vw, 28px);
}

.custom-section.custom-section--bg-default {
	background:
		radial-gradient(circle at 14% 16%, rgba(53, 199, 232, 0.09), transparent 38%),
		radial-gradient(circle at 86% 18%, rgba(168, 212, 43, 0.07), transparent 36%),
		linear-gradient(160deg, rgba(5, 16, 36, 0.96), rgba(4, 13, 30, 0.95));
}

.custom-section.custom-section--bg-plain {
	background: linear-gradient(165deg, rgba(6, 18, 40, 0.96), rgba(5, 15, 34, 0.94));
}

.custom-section.custom-section--bg-gradient {
	background:
		radial-gradient(circle at 13% 14%, rgba(53, 199, 232, 0.2), transparent 44%),
		radial-gradient(circle at 82% 20%, rgba(168, 212, 43, 0.15), transparent 42%),
		linear-gradient(158deg, rgba(10, 27, 58, 0.95), rgba(5, 15, 34, 0.92));
}

.custom-section.custom-section--bg-glow {
	background:
		radial-gradient(circle at 50% -12%, rgba(53, 199, 232, 0.22), transparent 52%),
		linear-gradient(160deg, rgba(7, 21, 47, 0.95), rgba(4, 13, 30, 0.94));
	box-shadow:
		0 0 0 1px rgba(53, 199, 232, 0.24) inset,
		0 0 36px rgba(53, 199, 232, 0.14),
		0 24px 52px rgba(0, 0, 0, 0.28);
}

.custom-section.custom-section--bg-image.section--has-bg-image {
	background:
		linear-gradient(160deg, rgba(6, 18, 40, 0.78), rgba(4, 14, 32, 0.76)),
		var(--section-bg-image);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.custom-section.custom-section--bg-image.section--has-bg-image::before {
	opacity: 0.16;
}

html[dir='rtl'] .custom-section__header,
html[dir='rtl'] .custom-section__body,
html[dir='rtl'] .custom-section__item,
html[dir='rtl'] .custom-section__stat {
	text-align: right;
}

html[dir='ltr'] .custom-section__header,
html[dir='ltr'] .custom-section__body,
html[dir='ltr'] .custom-section__item,
html[dir='ltr'] .custom-section__stat {
	text-align: left;
}

html[dir='rtl'] .custom-section.custom-section--layout-centered .custom-section__header,
html[dir='rtl'] .custom-section.custom-section--layout-centered .custom-section__body,
html[dir='rtl'] .custom-section.custom-section--layout-centered .custom-section__item,
html[dir='rtl'] .custom-section.custom-section--layout-centered .custom-section__stat,
html[dir='ltr'] .custom-section.custom-section--layout-centered .custom-section__header,
html[dir='ltr'] .custom-section.custom-section--layout-centered .custom-section__body,
html[dir='ltr'] .custom-section.custom-section--layout-centered .custom-section__item,
html[dir='ltr'] .custom-section.custom-section--layout-centered .custom-section__stat {
	text-align: center;
}

/* Footer */
.site-footer {
	position: relative;
	background:
		radial-gradient(circle at 12% 16%, rgba(53, 199, 232, 0.1), transparent 34%),
		radial-gradient(circle at 84% 22%, rgba(168, 212, 43, 0.08), transparent 34%),
		linear-gradient(160deg, rgba(4, 14, 32, 0.98), rgba(3, 11, 24, 0.98));
	border-top: 1px solid rgba(184, 200, 224, 0.16);
	padding: 0 20px;
	overflow: hidden;
	isolation: isolate;
}

.site-footer::before {
	content: 'DL';
	position: absolute;
	inset-inline-end: clamp(16px, 3vw, 32px);
	top: 24px;
	font-size: clamp(3.2rem, 9vw, 6rem);
	font-family: 'IBM Plex Mono', monospace;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: rgba(184, 200, 224, 0.06);
	pointer-events: none;
	z-index: 0;
}

.site-footer__top-line {
	position: relative;
	z-index: 1;
	width: min(1240px, 100%);
	height: 2px;
	margin-inline: auto;
	background: linear-gradient(90deg, transparent, rgba(53, 199, 232, 0.65), rgba(168, 212, 43, 0.65), transparent);
}

.site-footer__cta,
.site-footer__grid,
.site-footer__bottom {
	position: relative;
	z-index: 1;
	width: min(1240px, 100%);
	margin-inline: auto;
}

.site-footer__cta {
	margin-top: 14px;
	padding: 12px 14px;
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(8, 22, 48, 0.9), rgba(4, 14, 32, 0.8));
	border: 1px solid rgba(53, 199, 232, 0.24);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.site-footer__cta-title {
	font-size: 1rem;
	color: var(--white);
	font-weight: 600;
}

.site-footer__cta-description {
	font-size: 0.9rem;
	color: var(--body-text);
	margin-top: 2px;
}

.site-footer__cta-button {
	white-space: nowrap;
}

.site-footer__grid {
	margin-top: 20px;
	padding-bottom: 14px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: clamp(12px, 2.1vw, 20px);
}

.site-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.site-footer__logo {
	display: inline-flex;
	align-items: center;
	color: var(--cyan);
	text-decoration: none;
	width: fit-content;
}

.site-footer__logo img {
	max-height: 50px;
	width: auto;
	object-fit: contain;
}

.site-footer__logo-fallback {
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: rgba(53, 199, 232, 0.1);
	border: 1px solid rgba(53, 199, 232, 0.3);
}

.site-footer__title {
	font-size: 1.18rem;
	line-height: 1.35;
	color: var(--white);
}

.site-footer__tagline {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--cyan);
}

.site-footer__description {
	font-size: 0.92rem;
	line-height: 1.72;
	color: var(--body-text);
	max-width: 48ch;
}

.site-footer__links h4,
.site-footer__quick-links h4,
.site-footer__contact h4,
.site-footer__social h4 {
	font-size: 0.9rem;
	font-family: 'IBM Plex Mono', monospace;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 10px;
}

.site-footer__links ul,
.site-footer__quick-links ul,
.site-footer__contact ul,
.site-footer__social ul {
	list-style: none;
	display: grid;
	gap: 6px;
}

.site-footer__links a,
.site-footer__quick-links a,
.site-footer__contact a,
.site-footer__social a {
	color: var(--body-text);
	text-decoration: none;
	font-size: 0.88rem;
	line-height: 1.62;
	transition: color 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__quick-links a:hover,
.site-footer__contact a:hover,
.site-footer__social a:hover {
	color: var(--cyan);
}

.footer-quick-links {
	list-style: none;
	display: grid;
	gap: 6px;
}

.site-footer__contact span {
	display: block;
	font-size: 0.72rem;
	font-family: 'IBM Plex Mono', monospace;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--muted-text);
}

.site-footer__contact strong {
	display: block;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.72;
	color: var(--body-text);
}

.site-footer__bottom {
	padding: 10px 0 14px;
	border-top: 1px solid rgba(184, 200, 224, 0.16);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	font-size: 0.82rem;
	color: var(--muted-text);
	flex-wrap: wrap;
}

html[dir='rtl'] .site-footer__brand,
html[dir='rtl'] .site-footer__links,
html[dir='rtl'] .site-footer__contact,
html[dir='rtl'] .site-footer__social,
html[dir='rtl'] .site-footer__bottom {
	text-align: right;
}

html[dir='ltr'] .site-footer__brand,
html[dir='ltr'] .site-footer__links,
html[dir='ltr'] .site-footer__contact,
html[dir='ltr'] .site-footer__social,
html[dir='ltr'] .site-footer__bottom {
	text-align: left;
}

/* Back To Top */
.back-to-top {
	position: fixed;
	right: 18px;
	bottom: 92px;
	z-index: 915;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid rgba(53, 199, 232, 0.44);
	background: linear-gradient(160deg, rgba(7, 21, 47, 0.9), rgba(4, 14, 32, 0.84));
	color: var(--white);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(10px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(10px);
	text-decoration: none;
}

.back-to-top svg {
	width: 18px;
	height: 18px;
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

html[dir='rtl'] .back-to-top {
	left: 18px;
	right: auto;
}

/* WhatsApp */
.whatsapp-float {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 920;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	border-radius: 999px;
	text-decoration: none;
	border: 1px solid rgba(37, 211, 102, 0.5);
	background: linear-gradient(125deg, rgba(37, 211, 102, 0.92), rgba(53, 199, 232, 0.88));
	color: #042015;
	font-weight: 700;
	box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

html[dir='rtl'] .whatsapp-float {
	left: 18px;
	right: auto;
}

@media (hover: hover) and (pointer: fine) {
	.whatsapp-float:hover {
		transform: translateY(-2px);
		box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
	}
}

.whatsapp-float__icon {
	width: 19px;
	height: 19px;
	display: grid;
	place-items: center;
}

.whatsapp-float__icon svg {
	width: 19px;
	height: 19px;
}

.whatsapp-float__text {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.75rem;
	letter-spacing: 0.03em;
}

.darbin-foundation {
	display: grid;
	place-items: center;
	padding: 42px 20px 72px;
}

.darbin-foundation-panel {
	width: min(860px, 100%);
	background: linear-gradient(170deg, rgba(4, 14, 32, 0.96), rgba(10, 26, 58, 0.92));
	border: 1px solid rgba(53, 199, 232, 0.2);
	border-radius: 18px;
	padding: 40px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.darbin-kicker {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	color: var(--cyan);
	margin-bottom: 16px;
}

.darbin-foundation-panel h1 {
	font-size: clamp(1.8rem, 3.2vw, 2.8rem);
	line-height: 1.25;
	color: var(--white);
	margin-bottom: 14px;
}

.darbin-foundation-panel p {
	max-width: 65ch;
	color: var(--muted-text);
}

.darbin-logo-preview {
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid rgba(184, 200, 224, 0.2);
}

.darbin-logo-preview img {
	max-height: 84px;
	width: auto;
}

.darbin-page {
	padding: 64px 20px;
}

.darbin-container {
	width: min(980px, 100%);
	margin-inline: auto;
}

.darbin-page-title {
	font-size: clamp(1.6rem, 3vw, 2.3rem);
	color: var(--white);
	margin-bottom: 16px;
}

.darbin-page-content {
	color: var(--body-text);
}

@media (max-width: 1024px) {
	.site-header {
		height: 68px;
	}

	.site-wrapper {
		padding-top: 88px;
	}

	.site-header__inner {
		width: min(1240px, calc(100% - 24px));
		grid-template-columns: 1fr auto;
		gap: 10px;
	}

	.site-header__nav,
	.site-header__actions {
		display: none;
	}

	.site-header__toggle {
		display: inline-flex;
		width: 46px;
		height: 46px;
	}

	html[dir='rtl'] .site-header__brand {
		grid-column: 2;
		justify-self: end;
	}

	html[dir='rtl'] .site-header__toggle {
		grid-column: 1;
		justify-self: start;
	}

	html[dir='ltr'] .site-header__brand {
		grid-column: 1;
		justify-self: start;
	}

	html[dir='ltr'] .site-header__toggle {
		grid-column: 2;
		justify-self: end;
	}

	.site-header__mobile-overlay {
		inset: 0;
		padding: 18px 16px 28px;
	}

	.site-header__mobile-menu {
		max-height: min(56vh, 420px);
		overflow-y: auto;
		padding-inline: 6px;
		gap: 14px;
	}

	.site-header__mobile-menu a {
		font-size: clamp(1.05rem, 3.8vw, 1.4rem);
	}

	.site-header__mobile-actions {
		width: min(320px, 100%);
		gap: 10px;
	}

	.site-header__mobile-actions .btn-primary,
	.site-header__mobile-actions .language-switch {
		min-height: 42px;
	}

	.why-section,
	.use-cases-section,
	.solutions-section,
	.faq-section {
		padding: clamp(24px, 4.1vw, 34px);
	}

	.packages-carousel__viewport {
		overflow: hidden;
	}

	.packages-carousel__track {
		scroll-padding-inline: 8px;
	}

	.hero-dashboard {
		min-height: 320px;
	}
}

@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 991px) {
	.darbin-home {
		padding-top: clamp(26px, 5vw, 42px);
	}

	.packages-header {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.solutions-header {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.solutions-grid--saas,
	.solutions-grid--business {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.quote-grid {
		grid-template-columns: 1fr;
	}

	.packages-carousel {
		--packages-per-view: 2;
	}

	.faq-header {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.services-section,
	.process-section,
	.packages-section,
	.clients-section,
	.quote-section,
	.contact-section {
		padding: clamp(24px, 4.1vw, 34px);
	}

	.custom-section {
		padding: clamp(22px, 4vw, 32px);
	}

	.custom-section__split,
	.custom-section.custom-section--layout-split .custom-section__split {
		grid-template-columns: minmax(0, 1fr);
	}

	.custom-section__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.custom-section__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.custom-section__media {
		min-height: 200px;
	}

	.services-grid,
	.packages-grid,
	.clients-grid {
		gap: 12px;
	}

	.quote-grid {
		gap: 18px;
	}

	.contact-info-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__cta {
		flex-direction: column;
		align-items: flex-start;
	}

	html[dir='rtl'] .site-footer__cta {
		align-items: flex-end;
	}

	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.quote-form-card {
		order: 2;
	}

	.packages-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.package-card {
		flex-basis: calc((100% - var(--packages-gap)) / 2);
	}

	.package-card--featured {
		transform: translateY(0);
	}

	.services-header {
		grid-template-columns: 1fr;
		align-items: start;
	}

	html[dir='rtl'] .services-description,
	html[dir='ltr'] .services-description {
		justify-self: stretch;
	}

	html[dir='rtl'] .services-description {
		text-align: right;
	}

	html[dir='ltr'] .services-description {
		text-align: left;
	}

	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.services-grid .service-card:nth-child(3n + 2) {
		margin-top: 0;
	}

	.hero-section {
		padding: clamp(24px, 4.5vw, 34px);
	}

	.hero-grid {
		grid-template-columns: 1fr;
		min-height: unset;
		gap: 24px;
	}

	.hero-content,
	html[dir='rtl'] .hero-content,
	html[dir='ltr'] .hero-content {
		justify-self: stretch;
	}

	.hero-title {
		max-width: 100%;
	}

	.hero-visual,
	html[dir='rtl'] .hero-visual,
	html[dir='ltr'] .hero-visual {
		justify-self: center;
		order: 2;
		width: min(100%, 620px);
	}

	.hero-stats {
		grid-template-columns: repeat(2, minmax(124px, 1fr));
	}

	.hero-capability-chips {
		width: 100%;
		gap: 6px;
	}

	.contact-best-ways {
		margin-top: 4px;
	}

	.site-header__menu {
		gap: 14px;
	}

	.site-header__menu a {
		font-size: 0.9rem;
	}

	.site-header__actions .nav-cta {
		padding: 9px 13px;
	}
}

@media (max-width: 767px) {
	body.admin-bar .site-header {
		top: 46px;
	}

	body.admin-bar .darbin-home {
		padding-top: clamp(34px, 8vw, 48px);
	}

	.site-wrapper {
		padding-top: 86px;
	}

	.darbin-home {
		padding: 14px 14px 44px;
	}

	.services-section {
		margin-top: 16px;
		padding: 20px 14px;
		border-radius: 16px;
		scroll-margin-top: 94px;
	}

	.process-section {
		margin-top: 16px;
		padding: 20px 14px;
		border-radius: 16px;
		scroll-margin-top: 94px;
	}

	.packages-section {
		margin-top: 16px;
		padding: 20px 14px;
		border-radius: 16px;
		scroll-margin-top: 94px;
	}

	.clients-section {
		margin-top: 16px;
		padding: 20px 14px;
		border-radius: 16px;
		scroll-margin-top: 94px;
	}

	.why-section {
		margin-top: 16px;
		padding: 20px 14px;
		border-radius: 16px;
		scroll-margin-top: 94px;
	}

	.use-cases-section {
		margin-top: 16px;
		padding: 20px 14px;
		border-radius: 16px;
		scroll-margin-top: 94px;
	}

	.solutions-section {
		margin-top: 16px;
		padding: 20px 14px;
		border-radius: 16px;
		scroll-margin-top: 94px;
	}

	.solutions-group {
		scroll-margin-top: 94px;
	}

	.quote-section {
		margin-top: 16px;
		padding: 20px 14px;
		border-radius: 16px;
		scroll-margin-top: 94px;
	}

	.quote-next-steps,
	.contact-best-ways {
		padding: 10px;
	}

	.faq-section {
		margin-top: 16px;
		padding: 20px 14px;
		border-radius: 16px;
		scroll-margin-top: 94px;
	}

	.contact-section {
		margin-top: 16px;
		padding: 20px 14px;
		border-radius: 16px;
		scroll-margin-top: 94px;
	}

	.custom-section {
		margin-top: 16px;
		padding: 20px 14px;
		border-radius: 16px;
		scroll-margin-top: 94px;
	}

	.hero-capability-chip {
		font-size: 0.62rem;
	}

	#home,
	#services,
	#process,
	#packages,
	#clients,
	#why-darbin,
	#use-cases,
	#quote-form,
	#faq,
	#contact {
		scroll-margin-top: 94px;
	}

	.packages-carousel {
		--packages-per-view: 1;
	}

	body.admin-bar .services-section {
		scroll-margin-top: 128px;
	}

	body.admin-bar .process-section {
		scroll-margin-top: 128px;
	}

	body.admin-bar .packages-section {
		scroll-margin-top: 128px;
	}

	body.admin-bar .clients-section {
		scroll-margin-top: 128px;
	}

	body.admin-bar .why-section {
		scroll-margin-top: 128px;
	}

	body.admin-bar .use-cases-section {
		scroll-margin-top: 128px;
	}

	body.admin-bar .solutions-section {
		scroll-margin-top: 128px;
	}

	body.admin-bar .solutions-group {
		scroll-margin-top: 128px;
	}

	body.admin-bar .quote-section {
		scroll-margin-top: 128px;
	}

	body.admin-bar .faq-section {
		scroll-margin-top: 128px;
	}

	body.admin-bar .contact-section {
		scroll-margin-top: 128px;
	}

	body.admin-bar .custom-section {
		scroll-margin-top: 128px;
	}

	body.admin-bar #home,
	body.admin-bar #services,
	body.admin-bar #process,
	body.admin-bar #packages,
	body.admin-bar #clients,
	body.admin-bar #why-darbin,
	body.admin-bar #use-cases,
	body.admin-bar #quote-form,
	body.admin-bar #faq,
	body.admin-bar #contact {
		scroll-margin-top: 128px;
	}

	.services-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.packages-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.clients-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.package-card {
		flex-basis: 100%;
	}

	.solutions-grid--saas,
	.solutions-grid--business {
		grid-template-columns: 1fr;
	}

	.solution-card__cta {
		width: 100%;
		justify-content: center;
	}

	.packages-controls {
		margin-top: 12px;
	}

	.quote-form {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.quote-field,
	.quote-field--half,
	.quote-field--full,
	.quote-submit {
		grid-column: span 1;
	}

	.service-card__cta,
	.package-card__cta,
	.solution-card__cta,
	.use-case-card__cta,
	.contact-card__cta,
	.quote-submit,
	.btn-primary,
	.btn-outline,
	.site-footer__cta-button {
		min-height: 42px;
	}

	.quote-selected-interest {
		grid-column: span 1;
		align-items: flex-start;
		flex-direction: column;
	}

	.quote-selected-interest__clear {
		width: 100%;
	}

	.service-card__cta {
		width: 100%;
		justify-content: center;
	}

	.faq-question {
		padding: 14px;
		font-size: 0.96rem;
	}

	.faq-answer__content {
		padding: 0 14px 14px;
	}

	.contact-info-list {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.contact-card__cta {
		width: 100%;
		justify-content: center;
	}

	.custom-section__grid,
	.custom-section__stats {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.custom-section__banner {
		padding: 12px;
		gap: 10px;
	}

	.custom-section__button {
		width: 100%;
		justify-content: center;
	}

	.custom-section__media {
		min-height: 180px;
	}

	.custom-section__title {
		font-size: clamp(1.46rem, 8.4vw, 2rem);
	}

	.custom-section__description,
	.custom-section__content {
		font-size: 0.95rem;
		line-height: 1.74;
	}

	.site-footer {
		padding: 0 14px;
		padding-bottom: 80px;
	}

	.quote-form {
		padding-bottom: 64px;
	}

	.site-footer__cta {
		padding: 12px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.site-footer__bottom {
		justify-content: center;
		text-align: center;
	}

	.whatsapp-float {
		padding: 10px;
		bottom: 16px;
	}

	.back-to-top {
		width: 42px;
		height: 42px;
		bottom: 82px;
	}

	.whatsapp-float__text {
		display: none;
	}

	html[dir='rtl'] .service-card,
	html[dir='rtl'] .services-empty-message {
		text-align: right;
	}

	html[dir='ltr'] .service-card,
	html[dir='ltr'] .services-empty-message {
		text-align: left;
	}

	.hero-section {
		border-radius: 18px;
		padding: 22px 16px 24px;
	}

	.hero-title {
		font-size: clamp(1.72rem, 9vw, 2.25rem);
	}

	.hero-description {
		line-height: 1.82;
	}

	.hero-actions {
		width: 100%;
	}

	.hero-capability-chips {
		gap: 6px;
	}

	.hero-actions .btn-primary,
	.hero-actions .btn-outline {
		flex: 1 1 auto;
		min-width: 142px;
	}

	.hero-stats {
		grid-template-columns: 1fr;
	}

	.hero-image-frame,
	.hero-dashboard {
		padding: 12px;
		border-radius: 18px;
	}

	.hero-dashboard {
		min-height: 300px;
	}

	.hero-dashboard__layout {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.hero-dashboard__sidebar {
		flex-direction: row;
		overflow-x: auto;
		padding: 6px;
	}

	.hero-dashboard__side-item {
		white-space: nowrap;
		flex: 0 0 auto;
	}

	.hero-dashboard__metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero-dashboard__metric:last-child {
		grid-column: span 2;
	}

	.hero-chip {
		font-size: 0.62rem;
		padding: 5px 8px;
	}

	.site-brand__logo-wrap {
		max-height: 42px;
		max-width: 180px;
	}

	.site-brand__logo,
	.site-brand .custom-logo {
		max-height: 40px;
	}

	.hero-floating-badge {
		font-size: 0.72rem;
		padding: 6px 10px;
	}

	.hero-floating-badge--top {
		top: 8px;
		inset-inline-start: 8px;
	}

	.hero-floating-badge--bottom {
		bottom: 8px;
		inset-inline-end: 8px;
	}

	.site-header {
		height: 66px;
	}

	.site-header__inner {
		width: min(1240px, calc(100% - 24px));
		grid-template-columns: 1fr auto;
		gap: 8px;
	}

	.site-header__nav,
	.site-header__actions {
		display: none;
	}

	.site-header__toggle {
		display: inline-flex;
	}

	html[dir='rtl'] .site-header__brand {
		grid-column: 2;
		justify-self: end;
	}

	html[dir='rtl'] .site-header__toggle {
		grid-column: 1;
		justify-self: start;
	}

	html[dir='ltr'] .site-header__brand {
		grid-column: 1;
		justify-self: start;
	}

	html[dir='ltr'] .site-header__toggle {
		grid-column: 2;
		justify-self: end;
	}
}

@media (min-width: 414px) and (max-width: 480px) {
	.hero-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.site-header {
		height: 64px;
	}

	.site-wrapper {
		padding-top: 82px;
	}

	.darbin-home {
		padding: 12px 12px 40px;
	}

	.hero-section,
	.services-section,
	.process-section,
	.packages-section,
	.clients-section,
	.why-section,
	.use-cases-section,
	.solutions-section,
	.quote-section,
	.faq-section,
	.contact-section {
		padding: 18px 12px;
		border-radius: 14px;
	}

	.custom-section {
		padding: 18px 12px;
		border-radius: 14px;
	}

	.hero-title {
		font-size: clamp(1.56rem, 8.6vw, 2.05rem);
		line-height: 1.16;
	}

	.hero-description {
		font-size: 0.95rem;
		line-height: 1.74;
	}

	.hero-actions {
		gap: 8px;
	}

	.hero-actions .btn-primary,
	.hero-actions .btn-outline {
		min-width: 0;
	}

	.hero-stats {
		gap: 8px;
	}

	.hero-stats li {
		padding: 10px 11px;
	}

	.hero-dashboard {
		min-height: 260px;
	}

	.hero-dashboard__metrics {
		grid-template-columns: 1fr;
	}

	.hero-dashboard__metric:last-child {
		grid-column: span 1;
	}

	.service-card,
	.package-card,
	.client-card,
	.why-card,
	.use-case-card {
		padding: 14px;
	}

	.custom-section__item,
	.custom-section__stat {
		padding: 12px;
	}

	.custom-section__label {
		font-size: 0.68rem;
		padding: 5px 10px;
	}

	.process-step {
		min-height: 56px;
		padding: 10px 11px;
	}

	.process-panel,
	.process-panel--accordion {
		padding: 12px;
	}

	.package-card__description {
		min-height: 0;
	}

	.packages-carousel__track {
		padding: 6px 0 4px;
		scroll-padding-inline: 4px;
	}

	.packages-carousel__arrow {
		width: 40px;
		height: 40px;
	}

	.quote-form-card {
		padding: 14px;
	}

	.quote-field input,
	.quote-field select,
	.quote-field textarea {
		min-height: 44px;
	}

	.quote-field textarea {
		min-height: 108px;
	}

	.contact-info-item {
		min-height: 78px;
	}

	.site-footer {
		padding: 0 12px;
		padding-bottom: 96px;
	}

	.site-footer__grid {
		gap: 14px;
	}

	.site-footer__bottom {
		padding-bottom: 16px;
	}

	.whatsapp-float {
		right: 12px;
		bottom: 12px;
		padding: 9px;
		width: 44px;
		height: 44px;
		justify-content: center;
	}

	html[dir='rtl'] .whatsapp-float {
		left: 12px;
		right: auto;
	}

	.back-to-top {
		right: 12px;
		bottom: 64px;
		width: 40px;
		height: 40px;
	}

	html[dir='rtl'] .back-to-top {
		left: 12px;
		right: auto;
	}
}

@media (max-width: 390px) {
	.site-brand__logo-wrap {
		max-width: 158px;
	}

	.site-header__mobile-menu a {
		font-size: 1.02rem;
	}

	.hero-stats {
		grid-template-columns: 1fr;
	}

	.hero-capability-chip {
		font-size: 0.6rem;
		padding: 4px 8px;
	}

	.hero-actions .btn-primary,
	.hero-actions .btn-outline {
		width: 100%;
	}
}

/* Batch T6: Visual Flow and Story Compression */
.process-shell--desktop {
	display: grid !important;
}

.process-shell--mobile {
	display: none !important;
}

.services-section.section--bg-default {
	background:
		radial-gradient(circle at 10% 14%, rgba(53, 199, 232, 0.08), transparent 38%),
		linear-gradient(162deg, rgba(8, 22, 48, 0.94), rgba(5, 15, 34, 0.92));
	border-color: rgba(53, 199, 232, 0.12);
}

.process-section.section--bg-default {
	background:
		radial-gradient(circle at 82% 18%, rgba(168, 212, 43, 0.11), transparent 34%),
		linear-gradient(160deg, rgba(6, 18, 40, 0.95), rgba(4, 14, 32, 0.92));
	border-color: rgba(168, 212, 43, 0.16);
}

.use-cases-section.section--bg-default {
	background:
		linear-gradient(160deg, rgba(6, 19, 42, 0.9), rgba(4, 14, 32, 0.86));
	border-color: rgba(184, 200, 224, 0.18);
}

.packages-section.section--bg-default {
	background:
		radial-gradient(circle at 18% 16%, rgba(53, 199, 232, 0.09), transparent 34%),
		linear-gradient(160deg, rgba(9, 24, 52, 0.96), rgba(4, 14, 32, 0.92));
	border-color: rgba(184, 200, 224, 0.16);
}

.quote-section.section--bg-default {
	background:
		radial-gradient(circle at 16% 12%, rgba(53, 199, 232, 0.18), transparent 34%),
		radial-gradient(circle at 86% 18%, rgba(168, 212, 43, 0.12), transparent 36%),
		linear-gradient(156deg, rgba(8, 24, 52, 0.97), rgba(4, 14, 32, 0.93));
	border-color: rgba(53, 199, 232, 0.22);
}

.why-section.section--bg-default {
	background:
		linear-gradient(160deg, rgba(7, 21, 47, 0.9), rgba(4, 14, 32, 0.86));
	border-color: rgba(184, 200, 224, 0.18);
}

.faq-section.section--bg-default {
	background:
		linear-gradient(162deg, rgba(5, 16, 36, 0.88), rgba(4, 13, 30, 0.84));
	border-color: rgba(184, 200, 224, 0.2);
}

.services-section.section--bg-default::before,
.process-section.section--bg-default::before,
.use-cases-section.section--bg-default::before,
.packages-section.section--bg-default::before,
.quote-section.section--bg-default::before,
.why-section.section--bg-default::before,
.faq-section.section--bg-default::before {
	opacity: 0.12;
}

.services-grid {
	margin-top: 16px;
	gap: 10px;
}

.services-grid .service-card:nth-child(3n + 2) {
	margin-top: 0;
}

.service-card {
	padding: 13px;
	border-radius: 13px;
	border-color: rgba(184, 200, 224, 0.14);
	background: linear-gradient(165deg, rgba(5, 16, 36, 0.78), rgba(7, 21, 47, 0.64));
	backdrop-filter: none;
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.service-card__top {
	margin-bottom: 9px;
}

.service-card__title {
	font-size: clamp(1.02rem, 1.55vw, 1.22rem);
	margin-bottom: 6px;
}

.service-card__description {
	font-size: 0.9rem;
	line-height: 1.64;
	color: var(--body-text);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.service-card__best-for {
	margin-top: 5px;
	font-size: 0.8rem;
	line-height: 1.52;
}

.service-card__chips {
	margin-top: 6px;
	gap: 4px;
}

.service-card__chip {
	font-size: 0.61rem;
	padding: 3px 7px;
}

.service-card__cta {
	margin-top: 8px;
	padding: 6px 10px;
	font-size: 0.68rem;
	border-color: rgba(184, 200, 224, 0.28);
	background: rgba(184, 200, 224, 0.08);
	color: var(--body-text);
}

.service-card__line {
	margin-top: 9px;
	height: 1px;
	opacity: 0.58;
}

@media (hover: hover) and (pointer: fine) {
	.service-card:hover,
	.service-card:focus-within {
		transform: translateY(-3px);
	}
}

.use-cases-section.use-cases-section--compact {
	padding: clamp(20px, 3.4vw, 30px);
}

.use-cases-section.use-cases-section--compact .services-divider {
	margin-top: 12px;
}

.use-cases-section.use-cases-section--compact .use-cases-grid--shortcuts {
	margin-top: 12px;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(230px, 1fr);
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 2px;
	scroll-snap-type: x proximity;
	align-items: stretch;
}

.use-cases-section.use-cases-section--compact .use-cases-grid--shortcuts::-webkit-scrollbar {
	height: 6px;
}

.use-cases-section.use-cases-section--compact .use-cases-grid--shortcuts::-webkit-scrollbar-thumb {
	background: rgba(184, 200, 224, 0.28);
	border-radius: 999px;
}

.use-cases-section.use-cases-section--compact .use-case-card {
	padding: 12px;
	border-radius: 12px;
	gap: 7px;
	background: linear-gradient(165deg, rgba(5, 16, 36, 0.72), rgba(7, 21, 47, 0.58));
	border-color: rgba(184, 200, 224, 0.15);
	backdrop-filter: none;
	min-width: 0;
	scroll-snap-align: start;
	box-shadow: none;
}

.use-cases-section.use-cases-section--compact .use-case-card__badge {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	font-size: 0.66rem;
}

.use-cases-section.use-cases-section--compact .use-case-card__title {
	font-size: 0.98rem;
	line-height: 1.38;
}

.use-cases-section.use-cases-section--compact .use-case-card__description {
	font-size: 0.84rem;
	line-height: 1.58;
	color: var(--muted-text);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.use-cases-section.use-cases-section--compact .use-case-card__cta {
	margin-top: auto;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid rgba(53, 199, 232, 0.42);
	background: rgba(53, 199, 232, 0.12);
	font-size: 0.76rem;
	font-family: 'IBM Plex Mono', monospace;
	letter-spacing: 0.03em;
	font-weight: 500;
	color: var(--white);
}

.use-cases-section.use-cases-section--compact .use-case-card__cta:hover,
.use-cases-section.use-cases-section--compact .use-case-card__cta:focus-visible {
	color: var(--white);
	border-color: rgba(168, 212, 43, 0.48);
	background: rgba(168, 212, 43, 0.14);
}

.package-card__custom-note {
	margin: 5px 0 0;
	font-size: 0.76rem;
	line-height: 1.55;
	color: var(--muted-text);
}

.package-card__period {
	margin-top: 2px;
}

.quote-content {
	gap: 8px;
}

.quote-next-steps {
	padding: 10px 11px;
	border-color: rgba(53, 199, 232, 0.24);
	background: rgba(4, 14, 32, 0.56);
}

.quote-next-steps ol {
	gap: 4px;
}

.quote-reassurance {
	margin-top: 6px;
	gap: 5px;
}

.quote-reassurance__chip {
	padding: 4px 8px;
	font-size: 0.62rem;
	letter-spacing: 0.02em;
}

.quote-form-card {
	border-color: rgba(53, 199, 232, 0.36);
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.16) inset, 0 18px 34px rgba(0, 0, 0, 0.32);
}

.why-grid {
	gap: 10px;
}

.why-card {
	padding: 13px;
	border-radius: 12px;
	background: linear-gradient(165deg, rgba(5, 16, 36, 0.74), rgba(7, 21, 47, 0.6));
	border-color: rgba(184, 200, 224, 0.14);
	backdrop-filter: none;
}

.why-card__description {
	font-size: 0.88rem;
	line-height: 1.7;
}

@media (hover: hover) and (pointer: fine) {
	.why-card:hover {
		transform: translateY(-2px);
		box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
	}
}

.faq-item {
	border-radius: 12px;
	border-color: rgba(184, 200, 224, 0.14);
	background: rgba(5, 16, 36, 0.72);
	box-shadow: none;
}

.faq-question {
	padding: 13px 14px;
	font-size: 0.96rem;
	line-height: 1.58;
	font-weight: 500;
}

.faq-answer__content {
	padding: 0 14px 14px;
	font-size: 0.92rem;
	line-height: 1.8;
}

@media (max-width: 991px) {
	.use-cases-section.use-cases-section--compact .use-cases-grid--shortcuts {
		grid-auto-columns: minmax(210px, 72vw);
	}
}

@media (max-width: 767px) {
	.process-shell--desktop {
		display: none !important;
	}

	.process-shell--mobile {
		display: grid !important;
		gap: 10px;
	}

	.use-cases-section.use-cases-section--compact .use-cases-grid--shortcuts {
		grid-auto-columns: minmax(210px, 84vw);
		gap: 8px;
	}

	.use-cases-section.use-cases-section--compact .use-case-card__cta {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.use-cases-section.use-cases-section--compact .use-cases-grid--shortcuts {
		grid-auto-columns: minmax(190px, 86vw);
	}

	.service-card {
		padding: 12px;
	}

	.service-card__description {
		font-size: 0.88rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.reveal-on-scroll,
	.reveal-on-scroll.is-visible {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}

	.float-gentle,
	.pulse-glow,
	.hero-chip--saas,
	.hero-chip--api,
	.hero-dashboard__node::after {
		animation: none !important;
	}

	.btn-primary,
	.btn-outline,
	.nav-cta,
	.package-card__cta,
	.contact-card__cta,
	.site-footer__cta-button,
	.quote-submit,
	.back-to-top,
	.whatsapp-float,
	.packages-carousel__track {
		transition: none !important;
		scroll-behavior: auto;
	}
}

/* Batch T6.1: Homepage Flow Cleanup + Service Detail Pages */
.services-section {
	--services-gap: 16px;
	--services-per-view: 3;
}

.services-section .services-carousel {
	position: relative;
	margin-top: 14px;
	z-index: 1;
}

.services-section .services-carousel__viewport {
	width: 100%;
	overflow: visible;
}

.services-section .services-carousel__track {
	display: flex;
	gap: var(--services-gap);
	direction: ltr;
	padding: 6px 2px 5px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.services-section .services-carousel__track::-webkit-scrollbar {
	display: none;
}

.services-section .services-carousel__track:focus {
	outline: none;
}

.services-section .services-carousel__track .service-card {
	flex: 0 0 calc((100% - (var(--services-gap) * (var(--services-per-view) - 1))) / var(--services-per-view));
	scroll-snap-align: start;
	min-width: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.services-section .service-card__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: auto;
	padding-top: 6px;
}

.services-section .service-card__learn-more {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--cyan);
	text-decoration: none;
	border-bottom: 1px solid rgba(53, 199, 232, 0.4);
	padding-bottom: 1px;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.services-section .service-card__learn-more:hover,
.services-section .service-card__learn-more:focus-visible {
	color: var(--lime);
	border-color: rgba(168, 212, 43, 0.5);
}

.services-section .service-card__cta {
	margin-top: 0;
	padding: 6px 9px;
	font-size: 0.67rem;
	line-height: 1.3;
	white-space: nowrap;
}

.services-section .services-carousel__controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}

.services-section .services-carousel__arrow {
	appearance: none;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(184, 200, 224, 0.26);
	background: rgba(7, 21, 47, 0.7);
	color: var(--white);
	cursor: pointer;
	transition: border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.services-section .services-carousel__arrow:hover:not(:disabled),
.services-section .services-carousel__arrow:focus-visible:not(:disabled) {
	border-color: rgba(53, 199, 232, 0.5);
	transform: translateY(-1px);
}

.services-section .services-carousel__arrow:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.process-shell--journey {
	grid-template-columns: minmax(250px, 0.95fr) minmax(0, 1.2fr);
	gap: 16px;
	align-items: start;
	margin-top: 12px;
}

.process-nav--journey {
	position: relative;
	display: grid;
	gap: 10px;
	padding-inline-start: 16px;
}

.process-nav--journey::before {
	content: '';
	position: absolute;
	inset-inline-start: 6px;
	inset-block: 12px 12px;
	width: 2px;
	background: linear-gradient(180deg, rgba(53, 199, 232, 0.45), rgba(168, 212, 43, 0.3));
	border-radius: 999px;
	opacity: 0.8;
}

.process-nav--journey .process-step {
	position: relative;
	align-items: start;
	gap: 4px;
	padding: 11px 12px 11px 14px;
	border-radius: 13px;
	text-align: start;
}

.process-nav--journey .process-step::before {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	inset-inline-start: -15px;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(53, 199, 232, 0.75);
	box-shadow: 0 0 0 3px rgba(53, 199, 232, 0.2);
}

.process-nav--journey .process-step.is-active::before {
	background: rgba(168, 212, 43, 0.9);
	box-shadow: 0 0 0 4px rgba(168, 212, 43, 0.22);
}

.process-step__meta {
	display: inline-flex;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.62rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(184, 200, 224, 0.78);
	margin-top: -2px;
}

.process-panels--journey .process-panel {
	border-radius: 14px;
	border: 1px solid rgba(184, 200, 224, 0.18);
	background: linear-gradient(162deg, rgba(6, 19, 42, 0.78), rgba(4, 14, 32, 0.64));
	box-shadow: none;
}

.process-panels--journey .process-panel__number {
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(184, 200, 224, 0.78);
}

.faq-section.faq-section--split .faq-split {
	display: grid;
	grid-template-columns: minmax(260px, 0.94fr) minmax(0, 1.34fr);
	gap: 12px;
	margin-top: 10px;
	align-items: start;
}

.faq-section.faq-section--split .faq-header {
	gap: clamp(14px, 2.2vw, 28px);
	align-items: start;
}

.faq-section.faq-section--split .services-description {
	max-width: 56ch;
	line-height: 1.74;
}

.faq-support {
	border: 1px solid rgba(184, 200, 224, 0.2);
	border-radius: 13px;
	background: linear-gradient(160deg, rgba(7, 21, 47, 0.76), rgba(4, 14, 32, 0.66));
	padding: 13px;
	display: grid;
	gap: 8px;
	align-content: start;
}

.faq-support h3 {
	margin: 0;
	font-size: clamp(1.02rem, 1.38vw, 1.16rem);
	line-height: 1.35;
	color: var(--white);
}

.faq-support p {
	margin: 0;
	color: var(--body-text);
	line-height: 1.6;
	font-size: 0.89rem;
}

.faq-support__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 5px;
}

.faq-support__list li {
	position: relative;
	padding-inline-start: 15px;
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--body-text);
}

.faq-support__list li::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 0.56em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(168, 212, 43, 0.82);
}

.faq-support__topics {
	padding: 9px 10px;
	border-radius: 10px;
	border: 1px solid rgba(53, 199, 232, 0.2);
	background: rgba(4, 14, 32, 0.46);
	display: grid;
	gap: 6px;
}

.faq-support__topics-title {
	margin: 0;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.7rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(53, 199, 232, 0.9);
	line-height: 1.4;
}

.faq-support__topics-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.faq-support__topics-list li {
	padding: 3px 8px;
	border-radius: 999px;
	border: 1px solid rgba(184, 200, 224, 0.2);
	background: rgba(53, 199, 232, 0.08);
	font-size: 0.72rem;
	line-height: 1.34;
	color: var(--body-text);
	font-family: 'IBM Plex Mono', monospace;
}

.faq-support__actions {
	display: grid;
	gap: 7px;
	margin-top: 1px;
}

.faq-support__actions .btn-primary,
.faq-support__actions .btn-outline {
	width: 100%;
	justify-content: center;
}

.faq-support__note {
	font-size: 0.81rem;
	line-height: 1.56;
	color: var(--muted-text);
	margin-top: 1px;
}

.faq-main .faq-search-wrap {
	margin-top: 0;
	padding: 10px 11px;
	border-radius: 12px;
	background: linear-gradient(162deg, rgba(4, 14, 32, 0.6), rgba(7, 21, 47, 0.5));
	border: 1px solid rgba(184, 200, 224, 0.18);
}

.faq-main .faq-search__label {
	font-size: 0.68rem;
	letter-spacing: 0.05em;
	color: rgba(184, 200, 224, 0.86);
}

.faq-main .faq-search__input {
	width: 100%;
	padding: 9px 11px;
	font-size: 0.9rem;
}

.faq-main .faq-topics {
	margin-top: 8px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.faq-main .faq-topic-chip {
	appearance: none;
	border: 1px solid rgba(53, 199, 232, 0.28);
	background: rgba(53, 199, 232, 0.09);
	color: var(--body-text);
	padding: 4px 9px;
	border-radius: 999px;
	font-size: 0.69rem;
	line-height: 1.35;
	font-family: 'IBM Plex Mono', monospace;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	cursor: default;
}

.faq-main .faq-topic-chip.is-active {
	border-color: rgba(53, 199, 232, 0.5);
	background: rgba(53, 199, 232, 0.16);
	color: var(--white);
}

.faq-main .faq-list {
	margin-top: 8px;
	gap: 8px;
}

.faq-main .faq-item {
	border-color: rgba(184, 200, 224, 0.18);
	background: linear-gradient(164deg, rgba(5, 16, 36, 0.84), rgba(7, 21, 47, 0.7));
}

.faq-main .faq-question {
	padding: 14px 14px;
	line-height: 1.58;
}

.faq-main .faq-answer__content {
	padding: 0 14px 14px;
	line-height: 1.82;
}

.faq-toggle-more {
	margin-top: 10px;
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 12px;
	border-radius: 999px;
	border: 1px solid rgba(53, 199, 232, 0.38);
	background: rgba(53, 199, 232, 0.12);
	color: var(--white);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.7rem;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.faq-toggle-more:hover,
.faq-toggle-more:focus-visible {
	border-color: rgba(168, 212, 43, 0.5);
	background: rgba(168, 212, 43, 0.16);
}

@media (max-width: 1099px) {
	.faq-section.faq-section--split .faq-split {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
	}
}

@media (max-width: 767px) {
	.faq-support {
		padding: 11px;
		gap: 7px;
	}

	.faq-support__topics {
		padding: 8px;
	}

	.faq-main .faq-topics {
		gap: 5px;
	}

	.faq-main .faq-topic-chip {
		font-size: 0.66rem;
		padding: 4px 8px;
	}
}

.contact-section .contact-grid {
	grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.88fr);
	align-items: stretch;
	gap: 14px;
}

.contact-section .contact-content {
	display: grid;
	gap: 11px;
}

.contact-section .contact-actions {
	margin-top: 2px;
	gap: 8px;
	flex-wrap: wrap;
}

.contact-section .contact-actions .btn-primary,
.contact-section .contact-actions .btn-outline {
	min-width: 160px;
	justify-content: center;
}

.contact-card {
	display: grid;
	gap: 12px;
	align-content: start;
}

.contact-card .contact-best-ways {
	margin: 0;
	padding: 10px 11px;
	border-radius: 12px;
	border: 1px solid rgba(184, 200, 224, 0.18);
	background: rgba(7, 21, 47, 0.5);
}

.contact-card .contact-best-ways ul {
	margin: 4px 0 0;
	padding-inline-start: 18px;
	display: grid;
	gap: 5px;
}

.contact-card__actions {
	display: grid;
	gap: 8px;
}

.contact-card__actions .btn-outline,
.contact-card__actions .btn-primary {
	width: 100%;
	justify-content: center;
}

.use-cases-section.use-cases-section--compact .use-cases-grid--shortcuts {
	gap: 14px;
	padding: 2px 2px 9px;
	scroll-padding-inline: 2px;
}

.use-cases-section.use-cases-section--compact .use-case-card {
	padding: 14px 14px 13px;
	border-radius: 14px;
	border-color: rgba(184, 200, 224, 0.18);
}

.use-cases-section.use-cases-section--compact .use-case-card__description {
	line-height: 1.66;
	-webkit-line-clamp: 3;
}

.package-card--business-website {
	border-color: rgba(53, 199, 232, 0.32);
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.1) inset;
}

.package-card--featured.package-card--business-website {
	border-color: rgba(53, 199, 232, 0.4);
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.13) inset;
}

.package-card--business-website .package-card__badge {
	border-color: rgba(53, 199, 232, 0.48);
	background: rgba(53, 199, 232, 0.2);
}

@media (hover: hover) and (pointer: fine) {
	.package-card--business-website:hover {
		border-color: rgba(53, 199, 232, 0.46);
		box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.15) inset, 0 16px 30px rgba(0, 0, 0, 0.32);
	}

	.package-card--featured.package-card--business-website:hover {
		border-color: rgba(168, 212, 43, 0.38);
		box-shadow: 0 0 0 1px rgba(168, 212, 43, 0.14) inset, 0 18px 32px rgba(0, 0, 0, 0.33);
	}
}

.service-single-page {
	padding: calc(var(--header-height, 86px) + 28px) 0 68px;
	background:
		radial-gradient(circle at 14% 8%, rgba(53, 199, 232, 0.11), transparent 36%),
		radial-gradient(circle at 86% 12%, rgba(168, 212, 43, 0.09), transparent 34%),
		linear-gradient(165deg, rgba(4, 14, 32, 0.98), rgba(6, 19, 42, 0.96));
	min-height: 70vh;
}

body.admin-bar .service-single-page {
	padding-top: calc(var(--header-height, 86px) + 56px);
}

.service-single__container {
	width: min(1140px, calc(100% - 30px));
	margin-inline: auto;
}

.service-single {
	padding: clamp(20px, 3.4vw, 34px);
	border-radius: 20px;
	border: 1px solid rgba(184, 200, 224, 0.18);
	background: linear-gradient(162deg, rgba(7, 21, 47, 0.86), rgba(4, 14, 32, 0.78));
	box-shadow: 0 24px 44px rgba(0, 0, 0, 0.3);
	display: grid;
	gap: 12px;
}

.service-single__breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	font-size: 0.74rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(184, 200, 224, 0.84);
	font-family: 'IBM Plex Mono', monospace;
}

.service-single__breadcrumb a {
	color: var(--cyan);
	text-decoration: none;
}

.service-single__breadcrumb a:hover,
.service-single__breadcrumb a:focus-visible {
	color: var(--lime);
}


.service-single__hero {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(220px, 0.82fr);
	gap: 12px;
	align-items: stretch;
}

.service-single__hero-copy {
	display: grid;
	align-content: start;
	gap: 8px;
}

.service-single__tag {
	margin: 0;
	width: fit-content;
	padding: 5px 10px;
	border-radius: 999px;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.7rem;
	line-height: 1.3;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(53, 199, 232, 0.95);
	border: 1px solid rgba(53, 199, 232, 0.3);
	background: rgba(53, 199, 232, 0.08);
}

.service-single__title {
	margin: 0;
	font-size: clamp(1.72rem, 3.3vw, 2.5rem);
	line-height: 1.2;
	color: var(--white);
}

.service-single__intro {
	margin: 0;
	max-width: 64ch;
	color: var(--body-text);
	font-size: 0.95rem;
	line-height: 1.76;
}

.service-single__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 2px;
}

.service-single__actions .btn-primary,
.service-single__actions .btn-outline {
	min-width: 170px;
	justify-content: center;
}

.service-single__visual {
	position: relative;
	min-height: 210px;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(184, 200, 224, 0.2);
	background: linear-gradient(162deg, rgba(5, 16, 36, 0.84), rgba(7, 21, 47, 0.72));
	display: grid;
	place-items: center;
}

.service-single__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.service-single__visual-fallback {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	background:
		radial-gradient(circle at 22% 18%, rgba(53, 199, 232, 0.22), transparent 42%),
		radial-gradient(circle at 78% 78%, rgba(168, 212, 43, 0.18), transparent 45%),
		linear-gradient(160deg, rgba(6, 19, 42, 0.94), rgba(4, 14, 32, 0.88));
}

.service-single__visual-fallback span {
	display: inline-flex;
	width: 64px;
	height: 64px;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	border: 1px solid rgba(53, 199, 232, 0.34);
	background: rgba(53, 199, 232, 0.1);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 1.36rem;
	font-weight: 600;
	line-height: 1;
	color: var(--white);
}

.service-detail-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.service-detail-card {
	padding: 13px;
	border-radius: 14px;
	border: 1px solid rgba(184, 200, 224, 0.2);
	background: linear-gradient(162deg, rgba(5, 16, 36, 0.78), rgba(7, 21, 47, 0.64));
	display: grid;
	gap: 7px;
	align-content: start;
}

.service-detail-card h2 {
	margin: 0;
	font-size: 0.84rem;
	line-height: 1.45;
	color: rgba(53, 199, 232, 0.94);
	font-family: 'IBM Plex Mono', monospace;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.service-detail-card p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.72;
	color: var(--body-text);
}

.service-detail-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 7px;
}

.service-detail-list li {
	position: relative;
	padding-inline-start: 14px;
	color: var(--body-text);
	font-size: 0.86rem;
	line-height: 1.56;
}

.service-detail-list li::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 0.62em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(168, 212, 43, 0.88);
}

.service-detail-card--content {
	margin-top: 2px;
	padding: 14px;
	border-radius: 13px;
	border: 1px solid rgba(184, 200, 224, 0.18);
	background: rgba(4, 14, 32, 0.52);
}

.service-detail-card--content p {
	margin: 0 0 10px;
	font-size: 0.92rem;
	line-height: 1.8;
	color: var(--body-text);
}

.service-detail-card--content p:last-child {
	margin-bottom: 0;
}

.service-single__cta {
	margin-top: 2px;
	padding: 14px;
	border-radius: 14px;
	border: 1px solid rgba(53, 199, 232, 0.28);
	background: linear-gradient(162deg, rgba(4, 14, 32, 0.72), rgba(7, 21, 47, 0.62));
	display: grid;
	gap: 8px;
}

.service-single__cta h2 {
	margin: 0;
	font-size: clamp(1.02rem, 1.9vw, 1.28rem);
	line-height: 1.35;
	color: var(--white);
}

.service-single__cta p {
	margin: 0;
	max-width: 64ch;
	font-size: 0.92rem;
	line-height: 1.74;
	color: var(--body-text);
}

.service-single__actions--cta {
	margin-top: 2px;
}

@media (max-width: 1099px) {
	.services-section {
		--services-per-view: 2;
	}

	.service-single__hero {
		grid-template-columns: 1fr;
	}

	.service-single__visual {
		min-height: 220px;
	}
}

@media (max-width: 991px) {
	.process-shell--journey {
		grid-template-columns: 1fr;
	}

	.process-nav--journey {
		padding-inline-start: 0;
	}

	.process-nav--journey::before,
	.process-nav--journey .process-step::before {
		display: none;
	}

	.faq-section.faq-section--split .faq-split {
		grid-template-columns: 1fr;
	}

	.contact-section .contact-grid {
		grid-template-columns: 1fr;
	}

	.service-detail-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.services-section {
		--services-per-view: 1;
		--services-gap: 12px;
	}

	.services-section .service-card__actions {
		flex-wrap: wrap;
	}

	.services-section .service-card__learn-more,
	.services-section .service-card__cta {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.use-cases-section.use-cases-section--compact .use-cases-grid--shortcuts {
		gap: 10px;
	}

	.service-single-page {
		padding: calc(var(--header-height, 86px) + 24px) 0 54px;
		overflow-x: hidden;
	}

	body.admin-bar .service-single-page {
		padding-top: calc(var(--header-height, 86px) + 52px);
	}

	.service-single__container {
		width: min(1120px, calc(100% - 20px));
	}

	.service-single {
		padding: 16px 14px;
		gap: 10px;
	}

	.service-single__actions,
	.service-single__actions--cta {
		flex-direction: column;
	}

	.service-single__actions .btn-primary,
	.service-single__actions .btn-outline,
	.service-single__actions--cta .btn-primary,
	.service-single__actions--cta .btn-outline {
		width: 100%;
		min-width: 0;
	}

	.service-single__visual {
		min-height: 200px;
	}

	.service-detail-card,
	.service-single__cta,
	.service-detail-card--content {
		padding: 11px;
	}
}

/* Batch T6.1A: Services Carousel Motion Fix */
.services-section .services-carousel .service-card.reveal-on-scroll:not(:hover):not(:focus-within),
.services-section .services-carousel .service-card.reveal-on-scroll.is-visible:not(:hover):not(:focus-within) {
	opacity: 1;
	transform: none;
	transition-delay: 0ms;
	will-change: auto;
}

@media (hover: hover) and (pointer: fine) {
	.services-section .services-carousel .service-card:hover,
	.services-section .services-carousel .service-card:focus-within {
		transform: translateY(-2px);
	}
}

@media (hover: none), (pointer: coarse) {
	.services-section .services-carousel .service-card:hover,
	.services-section .services-carousel .service-card:focus-within {
		transform: none;
	}
}

/* Batch T6.1B: Process Section Layout Fix */
.process-section .process-header,
.process-section .services-divider,
.process-section .process-stepper,
.process-section .process-accordion {
	position: relative;
	z-index: 1;
}

.process-section .process-header {
	grid-template-columns: 1fr;
	gap: 12px;
	align-items: start;
}

.process-section .process-stepper,
.process-section .process-accordion {
	margin-top: 14px;
}

.process-section .process-stepper {
	display: grid;
	gap: 14px;
}

.process-section .process-stepper__nav {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	align-items: stretch;
}

.process-section .process-stepper__button {
	appearance: none;
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	min-height: 62px;
	padding: 10px 12px;
	border-radius: 14px;
	border: 1px solid rgba(184, 200, 224, 0.2);
	background: linear-gradient(162deg, rgba(5, 16, 36, 0.86), rgba(7, 21, 47, 0.72));
	color: var(--body-text);
	cursor: pointer;
	text-align: inherit;
	font: inherit;
	transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.process-section .process-stepper__button-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	border: 1px solid rgba(184, 200, 224, 0.25);
	background: rgba(4, 14, 32, 0.76);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--white);
	flex-shrink: 0;
	transition: border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.process-section .process-stepper__button-title {
	font-size: 0.9rem;
	line-height: 1.35;
	font-weight: 600;
	white-space: nowrap;
	overflow-wrap: normal;
	word-break: normal;
	flex: 1;
	min-width: 0;
	color: inherit;
}

.process-section .process-stepper__button.is-active {
	border-color: rgba(53, 199, 232, 0.62);
	background: linear-gradient(162deg, rgba(4, 14, 32, 0.94), rgba(10, 26, 58, 0.78));
	color: #f4fbff;
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.22) inset, 0 12px 24px rgba(53, 199, 232, 0.16);
}

.process-section .process-stepper__button.is-active .process-stepper__button-number {
	border-color: rgba(53, 199, 232, 0.56);
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.2) inset;
	color: var(--cyan);
}

.process-section .process-stepper__button:focus-visible,
.process-section .process-accordion__button:focus-visible {
	outline: 2px solid rgba(53, 199, 232, 0.74);
	outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
	.process-section .process-stepper__button:hover {
		border-color: rgba(53, 199, 232, 0.44);
		transform: translateY(-1px);
	}
}

.process-section .process-stepper__panel,
.process-section .process-accordion__panel {
	padding: clamp(16px, 2vw, 22px);
	border-radius: 16px;
	border: 1px solid rgba(184, 200, 224, 0.16);
	background:
		radial-gradient(circle at 86% 14%, rgba(53, 199, 232, 0.15), transparent 36%),
		linear-gradient(160deg, rgba(5, 16, 36, 0.92), rgba(7, 21, 47, 0.82));
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.process-section .process-stepper__panel.is-active,
.process-section .process-accordion__panel.is-active {
	border-color: rgba(53, 199, 232, 0.56);
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.2) inset, 0 18px 34px rgba(0, 0, 0, 0.28);
}

.process-section .process-stepper__panel[hidden],
.process-section .process-accordion__panel[hidden] {
	display: none !important;
}

.process-section .process-stepper__badge {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(168, 212, 43, 0.14);
	border: 1px solid rgba(168, 212, 43, 0.38);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.72rem;
	letter-spacing: 0.05em;
	color: var(--white);
	margin: 0;
	margin-bottom: 10px;
}

.process-section .process-stepper__title {
	margin: 0;
	margin-bottom: 8px;
	font-size: clamp(1.2rem, 2.1vw, 1.5rem);
	line-height: 1.35;
	color: var(--white);
}

.process-section .process-stepper__description {
	margin: 0;
	max-width: 70ch;
	font-size: 0.97rem;
	line-height: 1.76;
	color: var(--body-text);
}

.process-section .process-panel__outputs-title {
	margin-top: 8px;
	margin-bottom: 6px;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.72rem;
	line-height: 1.4;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--cyan);
}

.process-section .process-output-list {
	list-style: none;
	display: grid;
	gap: 5px;
	margin: 0;
	padding: 0;
}

.process-section .process-output-list li {
	position: relative;
	padding-inline-start: 16px;
	font-size: 0.87rem;
	line-height: 1.62;
	color: var(--body-text);
}

.process-section .process-output-list li::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 0.68em;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: linear-gradient(140deg, var(--cyan), var(--lime));
}

.process-section .process-accordion {
	display: grid;
	gap: 8px;
}

.process-section .process-accordion__item {
	display: grid;
	gap: 8px;
}

.process-section .process-accordion__button {
	appearance: none;
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	min-height: 60px;
	padding: 10px 12px;
	border-radius: 14px;
	border: 1px solid rgba(184, 200, 224, 0.2);
	background: linear-gradient(162deg, rgba(5, 16, 36, 0.84), rgba(7, 21, 47, 0.72));
	color: var(--body-text);
	text-align: inherit;
	font: inherit;
	cursor: pointer;
	transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.process-section .process-accordion__button.is-active {
	border-color: rgba(53, 199, 232, 0.52);
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.18) inset;
	color: #f2fbff;
}

.process-section .process-accordion__icon {
	margin-inline-start: auto;
	width: 9px;
	height: 9px;
	border-right: 2px solid rgba(184, 200, 224, 0.76);
	border-bottom: 2px solid rgba(184, 200, 224, 0.76);
	transform: rotate(45deg);
	transition: transform 0.2s ease, border-color 0.2s ease;
	flex-shrink: 0;
}

.process-section .process-accordion__button.is-active .process-accordion__icon {
	transform: rotate(225deg);
	border-color: var(--lime);
}

.process-section .process-accordion__panel {
	display: grid;
	grid-template-rows: 0fr;
	padding: 0;
	opacity: 0;
	overflow: hidden;
	border-color: rgba(184, 200, 224, 0.14);
	box-shadow: none;
	transition: grid-template-rows 260ms ease, opacity 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.process-section .process-accordion__panel-inner {
	min-height: 0;
	overflow: hidden;
	padding: 12px;
	display: grid;
	gap: 0;
}

.process-section .process-accordion__panel.is-active {
	grid-template-rows: 1fr;
	opacity: 1;
	border-color: rgba(53, 199, 232, 0.56);
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.2) inset, 0 14px 28px rgba(0, 0, 0, 0.24);
}

.process-section .process-accordion__item.is-active .process-accordion__button {
	border-color: rgba(53, 199, 232, 0.56);
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.18) inset;
	background: linear-gradient(162deg, rgba(4, 14, 32, 0.92), rgba(10, 26, 58, 0.76));
}

@media (max-width: 1100px) {
	.process-section .process-stepper__nav {
		display: flex;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		gap: 10px;
		padding-bottom: 4px;
	}

	.process-section .process-stepper__nav::-webkit-scrollbar {
		height: 6px;
	}

	.process-section .process-stepper__nav::-webkit-scrollbar-thumb {
		background: rgba(184, 200, 224, 0.34);
		border-radius: 999px;
	}

	.process-section .process-stepper__button {
		flex: 0 0 220px;
		min-width: 220px;
		scroll-snap-align: start;
	}
}

@media (min-width: 768px) {
	.process-section .process-stepper {
		display: grid !important;
	}

	.process-section .process-accordion {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.process-section .process-stepper {
		display: none !important;
	}

	.process-section .process-accordion {
		display: grid !important;
	}

	.process-section .process-stepper__button-title {
		white-space: normal;
	}

	.process-section .process-stepper__description {
		font-size: 0.94rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.process-section .process-accordion__panel,
	.process-section .process-accordion__icon,
	.process-section .process-accordion__button {
		transition: none !important;
	}
}

html[dir='rtl'] .process-section .process-header,
html[dir='rtl'] .process-section .process-stepper__button,
html[dir='rtl'] .process-section .process-stepper__panel,
html[dir='rtl'] .process-section .process-accordion__button,
html[dir='rtl'] .process-section .process-accordion__panel {
	text-align: right;
}

html[dir='ltr'] .process-section .process-header,
html[dir='ltr'] .process-section .process-stepper__button,
html[dir='ltr'] .process-section .process-stepper__panel,
html[dir='ltr'] .process-section .process-accordion__button,
html[dir='ltr'] .process-section .process-accordion__panel {
	text-align: left;
}

/* Batch T6.1D: Process Empty Space Fix */
.process-section .process-stepper__panel {
	padding: 15px 16px;
	min-height: 0;
}

.process-section .process-panel__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	gap: 32px;
	align-items: start;
}

.process-section .process-panel__main {
	display: grid;
	gap: 0;
	min-width: 0;
}

.process-section .process-panel__main .process-stepper__description {
	max-width: 62ch;
}

.process-section .process-panel__support {
	display: grid;
	gap: 10px;
	padding: 12px;
	border-radius: 13px;
	border: 1px solid rgba(53, 199, 232, 0.28);
	background: linear-gradient(160deg, rgba(4, 14, 32, 0.68), rgba(7, 21, 47, 0.58));
	align-content: start;
}

.process-section .process-panel__support-label {
	margin: 0;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.69rem;
	line-height: 1.35;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(184, 200, 224, 0.86);
}

.process-section .process-panel__support-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 7px;
}

.process-section .process-panel__support-list li {
	position: relative;
	margin: 0;
	padding-inline-start: 14px;
	font-size: 0.84rem;
	line-height: 1.55;
	color: var(--body-text);
}

.process-section .process-panel__support-list li::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 0.63em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: linear-gradient(145deg, rgba(53, 199, 232, 0.92), rgba(168, 212, 43, 0.9));
}

@media (max-width: 1100px) {
	.process-section .process-panel__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 12px;
	}

	.process-section .process-panel__support {
		padding: 11px;
	}
}

@media (max-width: 767px) {
	.process-section .process-stepper__panel {
		padding: 12px;
	}
}

@media (max-width: 767px) {
	.process-section .process-accordion {
		gap: 12px;
	}

	.process-section .process-accordion__item {
		gap: 8px;
		margin: 0;
	}

	.process-section .process-accordion__panel {
		margin: 0;
		padding: 0;
		min-height: 0;
	}

	.process-section .process-accordion__panel-inner {
		padding: 16px;
		gap: 0;
	}

	.process-section .process-accordion__button {
		min-height: 56px;
		padding: 10px 12px;
	}

	.process-section .process-stepper__badge,
	.process-section .process-accordion .process-stepper__badge {
		display: inline-flex;
		width: fit-content;
		max-width: max-content;
		padding: 4px 9px;
		font-size: 0.68rem;
		margin-bottom: 8px;
	}

	.process-section .process-stepper__title {
		margin-bottom: 6px;
		font-size: clamp(1.08rem, 4.3vw, 1.22rem);
	}

	.process-section .process-stepper__description {
		font-size: 0.92rem;
		line-height: 1.7;
	}

	.process-section .process-panel__outputs-title {
		margin-top: 6px;
		margin-bottom: 5px;
	}

	.process-section .process-output-list {
		gap: 6px;
	}

	.process-section .process-output-list li {
		font-size: 0.85rem;
		line-height: 1.55;
	}
}

@media (max-width: 430px) {
	.process-section .process-accordion__panel-inner {
		padding: 14px;
	}

	.process-section .process-accordion__button {
		min-height: 54px;
	}

	.process-section .process-stepper__button-title {
		font-size: 0.88rem;
	}
}

/* Batch T6.1C: Use Cases Layout Fix */
.use-cases-section.use-cases-section--compact .use-cases-grid {
	margin-top: 16px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
	overflow: visible;
}

.use-cases-section.use-cases-section--compact .use-case-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
	padding: 14px;
	min-height: 228px;
	border-radius: 14px;
	border-color: rgba(184, 200, 224, 0.2);
	background: linear-gradient(165deg, rgba(5, 16, 36, 0.78), rgba(7, 21, 47, 0.64));
	box-shadow: none;
	backdrop-filter: none;
	position: relative;
	overflow: hidden;
}

.use-cases-section.use-cases-section--compact .use-case-card__badge {
	width: 30px;
	height: 30px;
	border-radius: 9px;
	font-size: 0.68rem;
	border-color: rgba(53, 199, 232, 0.46);
}

.use-cases-section.use-cases-section--compact .use-case-card__title {
	font-size: 1rem;
	line-height: 1.45;
	white-space: normal;
	word-break: normal;
	overflow-wrap: break-word;
	margin: 0;
}

.use-cases-section.use-cases-section--compact .use-case-card__description {
	font-size: 0.88rem;
	line-height: 1.62;
	color: var(--body-text);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
}

.use-cases-section.use-cases-section--compact .use-case-card__cta {
	margin-top: auto;
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 10px 15px;
	border-radius: 999px;
	border: 1px solid rgba(53, 199, 232, 0.4);
	background: rgba(53, 199, 232, 0.12);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.2;
	color: var(--white);
	text-decoration: none;
	white-space: nowrap;
	width: auto;
	max-width: 100%;
}

.use-cases-section.use-cases-section--compact .use-case-card__cta-arrow {
	font-size: 0.86rem;
	line-height: 1;
}

.use-cases-section.use-cases-section--compact .use-case-card__cta:hover,
.use-cases-section.use-cases-section--compact .use-case-card__cta:focus-visible {
	color: var(--white);
	border-color: rgba(168, 212, 43, 0.44);
	background: rgba(168, 212, 43, 0.14);
}

@media (hover: hover) and (pointer: fine) {
	.use-cases-section.use-cases-section--compact .use-case-card:hover {
		transform: translateY(-2px);
		border-color: rgba(53, 199, 232, 0.3);
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(53, 199, 232, 0.12) inset;
	}

	.use-cases-section.use-cases-section--compact .use-case-card:hover .use-case-card__cta-arrow {
		transform: translateX(2px);
	}

	html[dir='rtl'] .use-cases-section.use-cases-section--compact .use-case-card:hover .use-case-card__cta-arrow {
		transform: translateX(-2px) rotate(180deg);
	}
}

@media (max-width: 1024px) {
	.use-cases-section.use-cases-section--compact .use-cases-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.use-cases-section.use-cases-section--compact .use-cases-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.use-cases-section.use-cases-section--compact .use-case-card {
		min-height: 0;
	}

	.use-cases-section.use-cases-section--compact .use-case-card__description {
		-webkit-line-clamp: 2;
	}
}

@media (max-width: 400px) {
	.use-cases-section.use-cases-section--compact .use-case-card__cta {
		white-space: normal;
		text-align: center;
	}
}

/* Batch T6.1E.1: Quote Section Balance Polish */
.quote-section .quote-grid {
	align-items: start;
	gap: clamp(16px, 2.6vw, 30px);
}

.quote-section .quote-content {
	gap: 11px;
	min-height: 0;
}

.quote-section .quote-support-grid {
	margin-top: 6px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	align-items: stretch;
}

.quote-section .quote-support-card {
	display: grid;
	align-content: start;
	gap: 8px;
	padding: 12px;
	border-radius: 13px;
	border: 1px solid rgba(184, 200, 224, 0.2);
	background: linear-gradient(160deg, rgba(5, 16, 36, 0.72), rgba(7, 21, 47, 0.58));
	box-shadow: inset 0 0 0 1px rgba(53, 199, 232, 0.08);
	min-height: 0;
}

.quote-section .quote-support-card--primary {
	grid-column: 1 / -1;
	padding: 12px 13px;
}

.quote-section .quote-support-card--before,
.quote-section .quote-support-card--review,
.quote-section .quote-support-card--types,
.quote-section .quote-support-card--helper {
	grid-column: auto;
}

.quote-section .quote-next-steps {
	margin: 0;
	border: 1px solid rgba(53, 199, 232, 0.24);
	background: linear-gradient(162deg, rgba(4, 14, 32, 0.72), rgba(7, 21, 47, 0.62));
}

.quote-section .quote-support-card__title,
.quote-section .quote-next-steps h3 {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.45;
	font-family: 'IBM Plex Mono', monospace;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(53, 199, 232, 0.94);
}

.quote-section .quote-next-steps__list {
	margin: 0;
	padding-inline-start: 18px;
	display: grid;
	gap: 4px;
}

.quote-section .quote-next-steps__item,
.quote-section .quote-support-card__text {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.58;
	color: var(--body-text);
}

.quote-section .quote-support-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 6px;
}

.quote-section .quote-support-list li {
	position: relative;
	margin: 0;
	padding-inline-start: 14px;
	font-size: 0.84rem;
	line-height: 1.52;
	color: var(--body-text);
}

.quote-section .quote-support-list li::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 0.63em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(168, 212, 43, 0.88);
}

.quote-section .quote-support-card--helper .quote-reassurance {
	list-style: none;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.quote-section .quote-support-card--helper .quote-reassurance__chip {
	display: inline-flex;
	align-items: center;
	padding: 4px 8px;
	border-radius: 999px;
	border: 1px solid rgba(53, 199, 232, 0.26);
	background: rgba(53, 199, 232, 0.09);
	font-size: 0.62rem;
	line-height: 1.32;
	letter-spacing: 0.03em;
	color: var(--body-text);
	font-family: 'IBM Plex Mono', monospace;
}

.quote-section .quote-form-card {
	min-height: 0;
}

.quote-section .quote-form {
	gap: 10px 10px;
}

.quote-section .quote-selected-interest {
	padding: 9px 11px;
	margin-bottom: 1px;
	line-height: 1.52;
}

.quote-section .quote-field {
	gap: 5px;
}

.quote-section .quote-field label {
	margin: 0;
	line-height: 1.35;
}

.quote-section .quote-field textarea {
	margin-top: 1px;
	min-height: 116px;
}

.quote-section .quote-submit {
	margin-top: 4px;
}

@media (max-width: 1080px) {
	.quote-section .quote-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.quote-section .quote-form-card {
		order: 2;
	}
}

@media (max-width: 860px) {
	.quote-section .quote-support-grid {
		grid-template-columns: 1fr;
	}

	.quote-section .quote-support-card--primary {
		grid-column: auto;
	}
}

@media (max-width: 767px) {
	.quote-section .quote-content {
		gap: 8px;
	}

	.quote-section .quote-support-grid {
		gap: 8px;
	}

	.quote-section .quote-support-card {
		padding: 10px;
		gap: 6px;
	}

	.quote-section .quote-support-card__title,
	.quote-section .quote-next-steps h3 {
		font-size: 0.78rem;
	}

	.quote-section .quote-next-steps__item,
	.quote-section .quote-support-card__text,
	.quote-section .quote-support-list li {
		font-size: 0.82rem;
		line-height: 1.5;
	}

	.quote-section .quote-form {
		gap: 9px;
	}

	.quote-section .quote-submit {
		margin-top: 3px;
		margin-bottom: 4px;
	}
}

/* Batch T6.3: Global Spacing, Text Margins, Mobile Motion, RTL Polish */
:root {
	--section-padding-y: clamp(24px, 3.9vw, 42px);
	--section-padding-x: clamp(16px, 2.5vw, 28px);
	--card-padding: clamp(18px, 2.2vw, 26px);
	--card-gap: clamp(8px, 1.4vw, 14px);
	--content-gap: clamp(10px, 1.8vw, 18px);
}

.services-section,
.process-section,
.packages-section,
.clients-section,
.why-section,
.use-cases-section,
.quote-section,
.faq-section,
.contact-section,
.custom-section,
.site-footer,
.service-single {
	padding: var(--section-padding-y) var(--section-padding-x);
}

.hero-content,
.services-header,
.process-header,
.packages-header,
.why-header,
.use-cases-header,
.faq-header,
.contact-content {
	row-gap: var(--content-gap);
}

.services-description,
.quote-content p,
.faq-answer__content,
.contact-card__description,
.site-footer__description,
.custom-section__description,
.service-single__intro,
.service-detail-card p {
	max-width: 66ch;
}

.service-card,
.use-case-card,
.package-card,
.contact-card,
.faq-support,
.faq-main .faq-search-wrap,
.quote-section .quote-support-card,
.process-section .process-stepper__panel,
.process-section .process-accordion__panel,
.service-detail-card,
.custom-section__item,
.custom-section__stat,
.custom-section__banner,
.site-footer__cta {
	padding: var(--card-padding);
	gap: var(--card-gap);
}

.service-card__title,
.use-case-card__title,
.package-card__title,
.contact-card__title,
.service-single__title,
.custom-section__title,
.site-footer__cta-title {
	line-height: 1.34;
}

.service-card__description,
.use-case-card__description,
.package-card__description,
.contact-card__description,
.quote-section .quote-support-card__text,
.faq-support p,
.service-detail-list li,
.custom-section__item p,
.custom-section__content p,
.site-footer__cta-description {
	line-height: 1.66;
}

.service-card__top,
.package-card__badge,
.use-case-card__badge,
.quote-section .quote-support-card__title,
.faq-support__topics-title {
	margin-bottom: 2px;
}

.service-card__actions,
.service-single__actions,
.quote-section .quote-form,
.faq-support__actions,
.contact-actions,
.custom-section__actions {
	margin-top: 2px;
	gap: 8px;
}

.service-card__chips,
.quote-reassurance,
.faq-support__topics-list,
.faq-main .faq-topics,
.custom-section__actions,
.site-footer__social ul {
	row-gap: 6px;
	column-gap: 6px;
}

.service-card__chip,
.quote-reassurance__chip,
.faq-main .faq-topic-chip,
.faq-support__topics-list li,
.package-card__badge,
.service-single__tag {
	line-height: 1.34;
}

.service-card,
.use-case-card,
.package-card,
.contact-card,
.service-detail-card,
.custom-section__item,
.custom-section__stat,
.faq-support,
.faq-item,
.quote-section .quote-support-card,
.site-footer__cta {
	border-color: rgba(184, 200, 224, 0.17);
	box-shadow: none;
}

.services-section,
.packages-section,
.use-cases-section,
.quote-section,
.faq-section,
.contact-section,
.custom-section,
.service-single {
	background-blend-mode: normal;
	backdrop-filter: none;
}

.services-section,
.process-section,
.packages-section,
.why-section,
.use-cases-section,
.quote-section,
.faq-section,
.contact-section,
.custom-section,
.site-footer,
.service-single {
	overflow-x: clip;
}

.service-single__hero {
	align-items: start;
	gap: 14px;
}

.service-detail-grid {
	gap: 12px;
}

.service-single__cta {
	margin-top: 4px;
	gap: 8px;
}

.custom-section__split {
	gap: 14px;
}

.custom-section__media,
.custom-section__image {
	min-height: clamp(180px, 30vw, 300px);
}

.custom-section.section--has-bg-image .custom-section__content,
.custom-section.section--has-bg-image .custom-section__item,
.custom-section.section--has-bg-image .custom-section__stat,
.custom-section.section--has-bg-image .custom-section__banner {
	background: rgba(4, 14, 32, 0.6);
}

@media (hover: none), (pointer: coarse) {
	.service-card:hover,
	.use-case-card:hover,
	.package-card:hover,
	.contact-card:hover,
	.faq-item:hover,
	.custom-section__item:hover,
	.custom-section__stat:hover,
	.custom-section__banner:hover,
	.service-single__actions .btn-primary:hover,
	.service-single__actions .btn-outline:hover {
		transform: none !important;
		box-shadow: none !important;
	}

	.services-section .services-carousel .service-card,
	.packages-carousel__track .package-card {
		transition: border-color 0.2s ease, background 0.2s ease !important;
	}

	.services-section .services-carousel__arrow,
	.packages-carousel__arrow {
		min-width: 40px;
		min-height: 40px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.service-card,
	.use-case-card,
	.package-card,
	.contact-card,
	.faq-item,
	.custom-section__item,
	.custom-section__stat,
	.custom-section__banner,
	.services-carousel__track,
	.packages-carousel__track {
		transition: none !important;
		transform: none !important;
	}
}

html[dir='rtl'] .service-card,
html[dir='rtl'] .use-case-card,
html[dir='rtl'] .package-card,
html[dir='rtl'] .contact-card,
html[dir='rtl'] .faq-item,
html[dir='rtl'] .faq-support,
html[dir='rtl'] .quote-section .quote-support-card,
html[dir='rtl'] .custom-section__content,
html[dir='rtl'] .service-detail-card,
html[dir='rtl'] .service-single__hero-copy,
html[dir='rtl'] .site-footer__cta,
html[dir='rtl'] .site-footer__brand,
html[dir='rtl'] .site-footer__links,
html[dir='rtl'] .site-footer__contact,
html[dir='rtl'] .site-footer__social,
html[dir='rtl'] .site-footer__bottom {
	text-align: right;
}

html[dir='rtl'] .service-card__actions,
html[dir='rtl'] .faq-support__actions,
html[dir='rtl'] .service-single__actions,
html[dir='rtl'] .custom-section__actions,
html[dir='rtl'] .contact-actions {
	justify-content: flex-end;
}

html[dir='rtl'] .service-card__chips,
html[dir='rtl'] .quote-reassurance,
html[dir='rtl'] .faq-support__topics-list,
html[dir='rtl'] .faq-main .faq-topics,
html[dir='rtl'] .site-footer__social ul {
	justify-content: flex-end;
}

html[dir='rtl'] .faq-question {
	flex-direction: row-reverse;
}

html[dir='rtl'] .faq-question__text {
	text-align: right;
}

html[dir='rtl'] .faq-icon {
	margin-inline-end: 0;
	margin-inline-start: 2px;
}

html[dir='ltr'] .service-card,
html[dir='ltr'] .use-case-card,
html[dir='ltr'] .package-card,
html[dir='ltr'] .contact-card,
html[dir='ltr'] .faq-item,
html[dir='ltr'] .faq-support,
html[dir='ltr'] .quote-section .quote-support-card,
html[dir='ltr'] .custom-section__content,
html[dir='ltr'] .service-detail-card,
html[dir='ltr'] .service-single__hero-copy,
html[dir='ltr'] .site-footer__cta,
html[dir='ltr'] .site-footer__brand,
html[dir='ltr'] .site-footer__links,
html[dir='ltr'] .site-footer__contact,
html[dir='ltr'] .site-footer__social,
html[dir='ltr'] .site-footer__bottom {
	text-align: left;
}

@media (max-width: 1024px) {
	.services-section,
	.process-section,
	.packages-section,
	.clients-section,
	.why-section,
	.use-cases-section,
	.quote-section,
	.faq-section,
	.contact-section,
	.custom-section,
	.site-footer,
	.service-single {
		padding: clamp(18px, 3.6vw, 26px) clamp(14px, 2.6vw, 20px);
	}

	.service-single__hero {
		grid-template-columns: 1fr;
	}

	.service-single__visual {
		min-height: 210px;
	}

	.faq-section.faq-section--split .faq-split,
	.contact-section .contact-grid,
	.custom-section__split {
		gap: 12px;
	}
}

@media (max-width: 768px) {
	.service-card,
	.use-case-card,
	.package-card,
	.contact-card,
	.faq-support,
	.faq-main .faq-search-wrap,
	.quote-section .quote-support-card,
	.process-section .process-stepper__panel,
	.process-section .process-accordion__panel,
	.service-detail-card,
	.custom-section__item,
	.custom-section__stat,
	.custom-section__banner,
	.site-footer__cta {
		padding: clamp(16px, 4.2vw, 20px);
	}

	.service-card__actions,
	.service-single__actions,
	.quote-section .quote-form,
	.faq-support__actions,
	.contact-actions,
	.custom-section__actions,
	.site-footer__cta {
		gap: 7px;
	}

	.service-card__cta,
	.package-card__cta,
	.use-case-card__cta,
	.contact-card__cta,
	.site-footer__cta-button,
	.faq-support__actions .btn-primary,
	.faq-support__actions .btn-outline,
	.service-single__actions .btn-primary,
	.service-single__actions .btn-outline {
		width: 100%;
		justify-content: center;
	}

	.why-grid,
	.services-grid,
	.use-cases-grid,
	.packages-grid,
	.clients-grid,
	.custom-section__grid,
	.custom-section__stats,
	.service-detail-grid {
		gap: 10px;
	}

	#quote-form,
	#contact,
	.site-footer {
		padding-bottom: 108px;
	}

	.whatsapp-float {
		bottom: 12px;
	}

	.back-to-top {
		bottom: 74px;
	}
}

@media (max-width: 430px) {
	.hero-title,
	.service-single__title,
	.quote-content h2,
	.services-title-wrap h2,
	.process-header h2,
	.packages-header h2,
	.why-header h2,
	.use-cases-header h2,
	.faq-header h2,
	.contact-content h2 {
		font-size: clamp(1.34rem, 6.8vw, 1.8rem);
		line-height: 1.26;
	}

	.service-card,
	.use-case-card,
	.package-card,
	.contact-card,
	.faq-support,
	.service-detail-card,
	.custom-section__item,
	.custom-section__stat,
	.custom-section__banner,
	.site-footer__cta {
		padding: 16px;
	}

	.service-card__chips,
	.quote-reassurance,
	.faq-main .faq-topics,
	.faq-support__topics-list {
		gap: 5px;
	}

	.services-section .services-carousel__controls,
	.packages-controls {
		gap: 6px;
	}
}

@media (max-width: 390px) {
	.site-wrapper,
	.darbin-home,
	.service-single-page {
		overflow-x: hidden;
	}

	.service-card__title,
	.use-case-card__title,
	.package-card__title,
	.contact-card__title,
	.faq-question__text,
	.custom-section__title {
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.service-card__chips,
	.quote-reassurance,
	.faq-main .faq-topics,
	.faq-support__topics-list,
	.custom-section__actions {
		max-width: 100%;
	}
}

/* Batch T6.2B: Packages Section Polish */
.packages-section .packages-header {
	grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
	align-items: start;
	gap: clamp(10px, 1.8vw, 20px);
}

.packages-section .services-title-wrap {
	gap: 6px;
}

.packages-section .services-description {
	max-width: 56ch;
	line-height: 1.72;
	margin-top: 1px;
}

.packages-section .packages-carousel {
	margin-top: 14px;
}

.packages-section .package-card {
	gap: 7px;
	padding: 14px;
	border-color: rgba(184, 200, 224, 0.17);
	box-shadow: none;
}

.packages-section .package-card__title {
	line-height: 1.32;
}

.packages-section .package-card__description {
	min-height: 0;
	font-size: 0.92rem;
	line-height: 1.64;
	color: var(--body-text);
}

.packages-section .package-card__best-for,
.packages-section .package-card__scope {
	font-size: 0.8rem;
	line-height: 1.58;
}

.packages-section .package-card__price-wrap {
	margin-top: 1px;
	padding: 8px 0 6px;
	border-top-color: rgba(184, 200, 224, 0.14);
	border-bottom-color: rgba(184, 200, 224, 0.14);
	gap: 2px;
	display: grid;
}

.packages-section .package-card__price {
	font-size: clamp(1.12rem, 1.8vw, 1.48rem);
	line-height: 1.2;
	font-weight: 650;
}

.packages-section .package-card__price.package-card__price--custom {
	font-size: clamp(1.02rem, 1.6vw, 1.28rem);
	letter-spacing: 0.01em;
}

.packages-section .package-card__currency {
	font-size: 0.78rem;
	letter-spacing: 0.03em;
}

.packages-section .package-card__period {
	margin-top: 1px;
	font-size: 0.79rem;
	line-height: 1.45;
	color: rgba(184, 200, 224, 0.88);
}

.packages-section .package-card__custom-note {
	margin-top: 2px;
	font-size: 0.73rem;
	line-height: 1.48;
	color: var(--muted-text);
}

.packages-section .package-card__features {
	gap: 6px;
	padding: 1px 0;
	margin-top: 2px;
	flex: 1;
}

.packages-section .package-card__features li {
	gap: 7px;
	font-size: 0.86rem;
	line-height: 1.5;
}

.packages-section .package-card__cta {
	margin-top: auto;
	padding-top: 8px;
	min-height: 40px;
}

.packages-section .package-card--featured {
	border-color: rgba(53, 199, 232, 0.34);
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.1) inset;
}

.packages-section .package-card--business-website {
	border-color: rgba(53, 199, 232, 0.28);
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.08) inset;
}

.packages-section .package-card--featured.package-card--business-website {
	border-color: rgba(53, 199, 232, 0.32);
	box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.1) inset;
}

.packages-section .package-card--business-website .package-card__badge {
	border-color: rgba(53, 199, 232, 0.42);
	background: rgba(53, 199, 232, 0.16);
}

@media (hover: hover) and (pointer: fine) {
	.packages-section .package-card:hover {
		transform: translateY(-4px);
		border-color: rgba(53, 199, 232, 0.34);
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
	}

	.packages-section .package-card--featured:hover,
	.packages-section .package-card--featured.package-card--business-website:hover {
		border-color: rgba(53, 199, 232, 0.42);
		box-shadow: 0 0 0 1px rgba(53, 199, 232, 0.14) inset, 0 14px 26px rgba(0, 0, 0, 0.29);
	}
}

.packages-section .packages-carousel__controls {
	margin-top: 8px;
	gap: 8px;
}

.packages-section .packages-carousel__arrow {
	width: 38px;
	height: 38px;
	border-color: rgba(184, 200, 224, 0.24);
	background: rgba(4, 14, 32, 0.68);
}

.packages-section .packages-carousel__arrow:disabled {
	opacity: 0.46;
	border-color: rgba(184, 200, 224, 0.2);
	background: rgba(4, 14, 32, 0.46);
}

html[dir='rtl'] .packages-section .packages-header {
	text-align: right;
}

html[dir='rtl'] .packages-section .services-title-wrap {
	align-items: flex-end;
	justify-self: end;
}

html[dir='rtl'] .packages-section .services-description {
	justify-self: end;
	text-align: right;
}

html[dir='ltr'] .packages-section .packages-header {
	text-align: left;
}

html[dir='ltr'] .packages-section .services-title-wrap {
	align-items: flex-start;
	justify-self: start;
}

html[dir='ltr'] .packages-section .services-description {
	justify-self: start;
	text-align: left;
}

@media (max-width: 991px) {
	.packages-section .packages-header {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	html[dir='ltr'] .packages-section .services-title-wrap,
	html[dir='ltr'] .packages-section .services-description {
		justify-self: start;
		text-align: start;
		align-items: flex-start;
	}

	html[dir='rtl'] .packages-section .services-title-wrap,
	html[dir='rtl'] .packages-section .services-description {
		justify-self: end;
		text-align: right;
		align-items: flex-end;
	}

	.packages-section .package-card {
		padding: 13px;
	}

	.packages-section .package-card__description {
		font-size: 0.9rem;
	}
}

@media (max-width: 767px) {
	.packages-section .packages-carousel__controls {
		margin-top: 7px;
	}

	.packages-section .packages-carousel__arrow {
		width: 40px;
		height: 40px;
	}

	.packages-section .package-card__features li {
		font-size: 0.85rem;
	}

	.packages-section .package-card__cta {
		min-height: 42px;
	}
}

/* Batch T6.3A: Arabic RTL Direction and Typography Polish */
html[dir='rtl'] .site-header__brand {
	justify-self: start;
}

html[dir='rtl'] .site-header__actions {
	justify-self: end;
}

html[dir='rtl'] .site-header__inner {
	grid-template-areas: 'brand nav actions';
}

html[dir='rtl'] .site-header__menu,
html[dir='rtl'] .site-header__mobile-menu {
	direction: rtl;
}

html[dir='rtl'] .site-header__mobile-overlay {
	text-align: right;
}

html[dir='rtl'] .site-header__mobile-nav,
html[dir='rtl'] .site-header__mobile-menu,
html[dir='rtl'] .site-header__mobile-menu a,
html[dir='rtl'] .site-header__mobile-actions {
	width: min(360px, 100%);
	text-align: right;
}

html[dir='rtl'] .services-header,
html[dir='rtl'] .process-header,
html[dir='rtl'] .packages-header,
html[dir='rtl'] .why-header,
html[dir='rtl'] .use-cases-header,
html[dir='rtl'] .faq-header {
	align-items: start;
	gap: clamp(10px, 1.9vw, 20px);
}

html[dir='rtl'] .services-header .services-title-wrap,
html[dir='rtl'] .process-header .services-title-wrap,
html[dir='rtl'] .packages-header .services-title-wrap,
html[dir='rtl'] .why-header .services-title-wrap,
html[dir='rtl'] .use-cases-header .services-title-wrap,
html[dir='rtl'] .faq-header .services-title-wrap {
	justify-self: end;
	align-items: flex-end;
	text-align: right;
}

html[dir='rtl'] .services-header .services-description,
html[dir='rtl'] .process-header .services-description,
html[dir='rtl'] .packages-header .services-description,
html[dir='rtl'] .why-header .services-description,
html[dir='rtl'] .use-cases-header .services-description,
html[dir='rtl'] .faq-header .services-description {
	justify-self: end;
	text-align: right;
	max-width: 56ch;
	line-height: 1.74;
	unicode-bidi: plaintext;
}

html[dir='rtl'] .service-card__description,
html[dir='rtl'] .service-card__best-for,
html[dir='rtl'] .package-card__description,
html[dir='rtl'] .package-card__best-for,
html[dir='rtl'] .package-card__scope,
html[dir='rtl'] .use-case-card__description,
html[dir='rtl'] .process-panel__description,
html[dir='rtl'] .faq-answer__content,
html[dir='rtl'] .contact-card__description,
html[dir='rtl'] .service-single__intro,
html[dir='rtl'] .service-detail-card p,
html[dir='rtl'] .service-detail-list li,
html[dir='rtl'] .quote-next-steps__item,
html[dir='rtl'] .quote-support-list li,
html[dir='rtl'] .contact-best-ways li,
html[dir='rtl'] .faq-support__list li,
html[dir='rtl'] .faq-support__topics-list li,
html[dir='rtl'] .custom-section__item p {
	unicode-bidi: plaintext;
}

html[dir='rtl'] .package-card__features li {
	flex-direction: row-reverse;
	text-align: right;
}

html[dir='rtl'] .package-card__features li span {
	margin-top: 0;
}

html[dir='rtl'] .quote-support-list li,
html[dir='rtl'] .faq-support__list li,
html[dir='rtl'] .service-detail-list li {
	text-align: right;
}

html[dir='rtl'] .quote-support-card--helper .quote-reassurance {
	justify-content: flex-end;
}

html[dir='rtl'] .quote-selected-interest {
	flex-direction: row-reverse;
	text-align: right;
}

html[dir='rtl'] .quote-field input,
html[dir='rtl'] .quote-field select,
html[dir='rtl'] .quote-field textarea {
	direction: rtl;
	text-align: right;
}

html[dir='rtl'] .quote-field input[type='email'],
html[dir='rtl'] .quote-field input[type='url'],
html[dir='rtl'] #quote_phone {
	direction: ltr;
	text-align: left;
}

html[dir='rtl'] .faq-search__input {
	text-align: right;
	direction: rtl;
}

html[dir='rtl'] .faq-topic-chip,
html[dir='rtl'] .faq-toggle-more {
	text-align: center;
}

html[dir='rtl'] .services-section .services-carousel__arrow span,
html[dir='rtl'] .packages-carousel__arrow span {
	display: inline-block;
	transform: scaleX(-1);
}

html[dir='rtl'] .service-single__breadcrumb {
	flex-direction: row-reverse;
	justify-content: flex-end;
}

html[dir='rtl'] .service-single__tag {
	margin-inline-start: auto;
	margin-inline-end: 0;
}

html[dir='rtl'] .service-single__actions {
	justify-content: flex-end;
}

html[dir='rtl'] .contact-best-ways ul,
html[dir='rtl'] .contact-card .contact-best-ways ul {
	padding-inline-start: 0;
	padding-inline-end: 18px;
}

html[dir='rtl'] .site-footer__quick-links,
html[dir='rtl'] .site-footer__links,
html[dir='rtl'] .site-footer__contact {
	text-align: right;
}

@media (max-width: 1024px) {
	html[dir='rtl'] .site-header__brand {
		grid-column: 1;
		justify-self: start;
	}

	html[dir='rtl'] .site-header__toggle {
		grid-column: 2;
		justify-self: end;
	}
}

@media (max-width: 991px) {
	html[dir='rtl'] .services-header,
	html[dir='rtl'] .process-header,
	html[dir='rtl'] .packages-header,
	html[dir='rtl'] .why-header,
	html[dir='rtl'] .use-cases-header,
	html[dir='rtl'] .faq-header {
		grid-template-columns: 1fr;
	}

	html[dir='rtl'] .services-header .services-description,
	html[dir='rtl'] .process-header .services-description,
	html[dir='rtl'] .packages-header .services-description,
	html[dir='rtl'] .why-header .services-description,
	html[dir='rtl'] .use-cases-header .services-description,
	html[dir='rtl'] .faq-header .services-description {
		max-width: 100%;
	}
}

@media (max-width: 430px) {
	html[dir='rtl'] .site-header__mobile-menu a {
		width: 100%;
	}
}

/* Batch T6.3C: Arabic RTL Direction, Typography, and Layout Polish */
html[dir='rtl'] .hero-badge,
html[dir='rtl'] .service-card__tag,
html[dir='rtl'] .package-card__badge,
html[dir='rtl'] .process-stepper__badge,
html[dir='rtl'] .process-panel__outputs-title,
html[dir='rtl'] .quote-support-card__title,
html[dir='rtl'] .quote-next-steps h3,
html[dir='rtl'] .faq-search__label,
html[dir='rtl'] .faq-support__topics-title,
html[dir='rtl'] .contact-best-ways__title,
html[dir='rtl'] .service-single__tag,
html[dir='rtl'] .service-single__breadcrumb {
	letter-spacing: 0;
}

html[dir='rtl'] .hero-description,
html[dir='rtl'] .services-description,
html[dir='rtl'] .process-stepper__description,
html[dir='rtl'] .use-case-card__description,
html[dir='rtl'] .package-card__description,
html[dir='rtl'] .quote-content p,
html[dir='rtl'] .faq-answer__content,
html[dir='rtl'] .contact-content > p,
html[dir='rtl'] .custom-section__description,
html[dir='rtl'] .service-single__intro {
	line-height: 1.8;
}

html[dir='rtl'] .site-header__menu a,
html[dir='rtl'] .site-header__mobile-menu a {
	letter-spacing: 0;
}

html[dir='rtl'] .service-card__actions,
html[dir='rtl'] .package-card__cta,
html[dir='rtl'] .use-case-card__cta,
html[dir='rtl'] .contact-actions,
html[dir='rtl'] .contact-card__actions,
html[dir='rtl'] .service-single__actions,
html[dir='rtl'] .custom-section__actions {
	justify-content: flex-end;
}

html[dir='rtl'] .custom-section.custom-section--layout-centered .custom-section__actions,
html[dir='rtl'] .quote-submit,
html[dir='rtl'] .faq-toggle-more,
html[dir='rtl'] .package-card__cta {
	justify-content: center;
}

html[dir='rtl'] .quote-selected-interest__clear {
	margin-inline-start: 0;
	margin-inline-end: auto;
}

html[dir='rtl'] .quote-field input[name='quote_phone'],
html[dir='rtl'] input[type='tel'] {
	direction: ltr;
	text-align: left;
}

html[dir='rtl'] .faq-support__topics-list,
html[dir='rtl'] .faq-main .faq-topics,
html[dir='rtl'] .service-card__chips,
html[dir='rtl'] .quote-reassurance,
html[dir='rtl'] .custom-section__actions {
	justify-content: flex-end;
}

html[dir='rtl'] .faq-question,
html[dir='rtl'] .faq-question__text,
html[dir='rtl'] .faq-answer__content,
html[dir='rtl'] .faq-support,
html[dir='rtl'] .faq-main,
html[dir='rtl'] .contact-info-item,
html[dir='rtl'] .site-footer__quick-links,
html[dir='rtl'] .site-footer__links,
html[dir='rtl'] .site-footer__bottom,
html[dir='rtl'] .service-detail-card,
html[dir='rtl'] .service-detail-card--content,
html[dir='rtl'] .custom-section__content,
html[dir='rtl'] .custom-section__item,
html[dir='rtl'] .custom-section__stat {
	text-align: right;
}

html[dir='rtl'] .site-footer__links a,
html[dir='rtl'] .site-footer__quick-links a,
html[dir='rtl'] .site-footer__contact strong,
html[dir='rtl'] .site-footer__description {
	unicode-bidi: plaintext;
}

html[dir='rtl'] .services-carousel__arrow,
html[dir='rtl'] .packages-carousel__arrow,
html[dir='rtl'] .services-carousel__controls,
html[dir='rtl'] .packages-carousel__controls {
	direction: ltr;
}

html[dir='rtl'] .use-case-card__cta-arrow {
	margin-inline-start: 2px;
	margin-inline-end: 0;
}

@media (max-width: 768px) {
	html[dir='rtl'] .site-header__mobile-menu,
	html[dir='rtl'] .site-header__mobile-actions {
		max-width: 100%;
	}

	html[dir='rtl'] .contact-actions .btn-primary,
	html[dir='rtl'] .contact-actions .btn-outline,
	html[dir='rtl'] .service-single__actions .btn-primary,
	html[dir='rtl'] .service-single__actions .btn-outline {
		width: 100%;
	}
}
