/*
Theme Name: 10Man
Theme URI: https://10man.ae
Author: 10Man
Description: Custom landing page theme for 10Man Information Technology Consultancy.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tenman
*/

@font-face {
	font-family: 'Montserrat';
	src: url('assets/Fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Interstate';
	src: url('assets/Fonts/Interstate Light.otf') format('opentype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

:root {
	/* Primary colors */
	--tenman-color-primary-dark: #142134;
	--tenman-color-primary-blue: #2563eb;
	--tenman-color-primary-red: #dc2626;

	/* Helper colors */
	--tenman-color-slate-dark: #0f172a;
	--tenman-color-slate-muted: #64748b;
	--tenman-color-border: #e8edf5;
	--tenman-color-surface: #f8fafc;
	--tenman-color-white: #ffffff;

	/* Typography */
	--tenman-font-primary: 'Montserrat', sans-serif;
	--tenman-font-secondary: 'Interstate', sans-serif;

	/* Derived tokens */
	--tenman-color-blue-hover: #1d4ed8;
	--tenman-glass-bg: rgba(255, 255, 255, 0.72);
	--tenman-glass-border: rgba(232, 237, 245, 0.85);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--tenman-font-secondary);
	color: var(--tenman-color-primary-dark);
	background-color: var(--tenman-color-white);
}

body.site-header-menu-open {
	overflow: hidden;
}

/* ── Site header ─────────────────────────────────────────────── */

.site-header {
	--site-header-height: 76px;

	position: sticky;
	top: 0;
	z-index: 1030;
	background: var(--tenman-glass-bg);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--tenman-glass-border);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 0.75rem 0;
}

.site-header__logo {
	flex-shrink: 0;
	line-height: 0;
}

.site-header__logo img {
	height: 52px;
	width: auto;
	display: block;
}

.site-header__right {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-left: auto;
}

.site-header__nav {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-header__nav a {
	color: var(--tenman-color-primary-dark);
	text-decoration: none;
	font-family: var(--tenman-font-secondary);
	font-size: 0.9375rem;
	font-weight: 400;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus {
	color: var(--tenman-color-primary-blue);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}

.site-header__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.875rem;
	border: 1px solid var(--tenman-color-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.6);
	font-family: var(--tenman-font-primary);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--tenman-color-primary-dark);
	text-transform: uppercase;
	white-space: nowrap;
	user-select: none;
}

.site-header__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--tenman-color-primary-blue);
	flex-shrink: 0;
}

.site-header__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	background: var(--tenman-color-primary-blue);
	color: var(--tenman-color-white);
	border: none;
	border-radius: 0.5rem;
	font-family: var(--tenman-font-primary);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease;
}

.site-header__cta:hover,
.site-header__cta:focus {
	background: var(--tenman-color-blue-hover);
	color: var(--tenman-color-white);
}

.site-header__cta-arrow {
	font-size: 1.125rem;
	line-height: 1;
}

.site-header__toggle {
	display: none;
	background: none;
	border: 1px solid var(--tenman-color-border);
	border-radius: 0.375rem;
	padding: 0.375rem 0.625rem;
	cursor: pointer;
	color: var(--tenman-color-primary-dark);
}

.site-header__toggle-icon {
	display: block;
	width: 1.25rem;
	height: 2px;
	background: currentColor;
	position: relative;
}

.site-header__toggle-icon::before,
.site-header__toggle-icon::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
}

.site-header__toggle-icon::before {
	top: -6px;
}

.site-header__toggle-icon::after {
	top: 6px;
}

@media (max-width: 1199.98px) {
	.site-header__toggle {
		display: block;
		z-index: 1032;
	}

	.site-header__toggle.is-active .site-header__toggle-icon {
		background: transparent;
	}

	.site-header__toggle.is-active .site-header__toggle-icon::before {
		top: 0;
		transform: rotate(45deg);
	}

	.site-header__toggle.is-active .site-header__toggle-icon::after {
		top: 0;
		transform: rotate(-45deg);
	}

	.site-header__toggle-icon::before,
	.site-header__toggle-icon::after {
		transition: transform 0.2s ease, top 0.2s ease;
	}

	.site-header__right {
		display: none;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 2rem;
		position: fixed;
		top: var(--site-header-height);
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		max-width: 100vw;
		min-height: calc(100dvh - var(--site-header-height));
		margin-left: 0;
		padding: 2rem 1.5rem 2.5rem;
		background: var(--tenman-color-white);
		border-top: 1px solid var(--tenman-color-border);
		overflow-y: auto;
		z-index: 1031;
	}

	.site-header__right.is-open {
		display: flex;
	}

	.site-header__nav {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.25rem;
		flex: 1;
	}

	.site-header__nav a {
		font-family: var(--tenman-font-primary);
		font-size: 1.375rem;
		font-weight: 600;
		color: var(--tenman-color-slate-dark);
	}

	.site-header__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
		margin-top: auto;
		padding-top: 1.5rem;
		border-top: 1px solid var(--tenman-color-border);
	}

	.site-header__badge {
		justify-content: center;
		padding: 0.75rem 1rem;
		font-size: 0.75rem;
		background: var(--tenman-color-surface);
	}

	.site-header__cta {
		justify-content: center;
		padding: 0.875rem 1.25rem;
		font-size: 1rem;
	}

	.site-header__inner {
		position: relative;
		min-height: calc(var(--site-header-height) - 1.5rem);
	}
}

/* ── Hero section ─────────────────────────────────────────────── */

.hero-section {
	position: relative;
	padding: 2.5rem 0 4rem;
	overflow: hidden;
	background-color: #ffffff;
}



.hero-section .container {
	position: relative;
	z-index: 1;
}

.hero-section__layout {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 2.5rem;
	align-items: flex-start;
}

.hero-section__content {
	padding: 2rem 0;
}

.hero-section__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.45rem 0.85rem;
	border: 1px solid #e7ecf5;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 4px 14px rgba(9, 22, 41, 0.08);
	font-family: var(--tenman-font-primary);
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #253348;
}

.hero-section__badge-dot {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: #ef4444;
}

.hero-section__title {
	margin: 1.25rem 0 0.9rem;
	font-family: var(--tenman-font-primary);
	font-size: clamp(2.1rem, 4vw, 4rem);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.03em;
	color: #081635;
	max-width: 10.5em;
}

.hero-section__title-highlight {
	color: #2563eb;
}

.hero-section__title-accent {
	color: #ef4444;
}

.hero-section__description {
	margin: 0;
	max-width: 34rem;
	font-family: var(--tenman-font-secondary);
	font-size: 1.17rem;
	line-height: 1.55;
	color: #566277;
}

.hero-section__chips {
	list-style: none;
	margin: 1.9rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.hero-section__chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.68rem 1rem;
	border: 1px solid #e9edf5;
	border-radius: 999px;
	background: #fff;
	font-family: var(--tenman-font-primary);
	font-size: 0.83rem;
	font-weight: 600;
	color: #1d2f52;
}

.hero-section__chip .bi {
	font-size: 0.86rem;
	color: #2563eb;
}

.hero-section__actions {
	margin-top: 1.95rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.9rem 1.1rem;
}

.hero-section__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.62rem;
	padding: 0.9rem 1.55rem;
	border-radius: 0.72rem;
	border: none;
	background: linear-gradient(180deg, #2f6df8 0%, #1f55d8 100%);
	color: #fff;
	font-family: var(--tenman-font-primary);
	font-size: 0.93rem;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
}

.hero-section__btn:hover,
.hero-section__btn:focus {
	transform: translateY(-1px);
	color: #fff;
}

.hero-section__btn .bi {
	font-size: 1rem;
}

.hero-section__btn--mobile {
	display: none;
}

.hero-section__link {
	display: inline-flex;
	align-items: center;
	gap: 0.56rem;
	text-decoration: none;
	font-family: var(--tenman-font-primary);
	font-size: 0.92rem;
	font-weight: 600;
	color: #26344a;
}

button.hero-section__link {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

.hero-section__link .bi {
	font-size: 1.08rem;
	color: #324460;
}

.hero-section__form-wrap {
	height: 100%;
}

.hero-form-card {
	background: #fff;
	border: 1px solid #e4e9f2;
	border-radius: 1.5rem;
	padding: 2rem 1.75rem 1.75rem;
	box-shadow: 0 24px 64px rgba(9, 22, 41, 0.12), 0 4px 16px rgba(9, 22, 41, 0.06);
}

.hero-form-card__header {
	display: flex;
	align-items: stretch;
	gap: 0.875rem;
	margin-bottom: 0;
}

.hero-form-card__header--modal {
	flex: 1;
}

.hero-form-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	align-self: stretch;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background: #eef3ff;
	color: #2563eb;
}

.hero-form-card__icon .bi {
	font-size: 1.4rem;
}

.hero-form-card__title-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero-form-card__title {
	margin: 0;
	font-family: var(--tenman-font-primary);
	font-size: 1.65rem;
	font-weight: 700;
	line-height: 1.2;
	color: #081635;
}

.hero-form-card__title-line {
	display: block;
	width: 2.25rem;
	height: 3px;
	border-radius: 2px;
	background: #dc2626;
	margin: 0.65rem 0 0;
}

.hero-form-card__intro {
	margin: 0.85rem 0 0;
	font-family: var(--tenman-font-secondary);
	font-size: 0.875rem;
	line-height: 1.55;
	color: #687588;
}

.hero-form-card__form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.hero-form-card__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.hero-form-card__field-wrap {
	margin: 0;
}

.hero-form-card__field {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 3rem;
	border: 1px solid #e4e9f2;
	border-radius: 0.625rem;
	padding: 0 0.875rem 0 2.25rem;
	transition: border-color 0.15s ease;
}

.hero-form-card__field:focus-within {
	border-color: #93b4fd;
	background: #fff;
}

.hero-form-card__field > .bi:first-child {
	position: absolute;
	left: 0.75rem;
	color: #8496ad;
	font-size: 0.9rem;
	pointer-events: none;
}

.hero-form-card__field input,
.hero-form-card__field select,
.hero-form-card__field textarea {
	width: 100%;
	border: none;
	padding: 0;
	background: transparent;
	font-family: var(--tenman-font-secondary);
	font-size: 0.875rem;
	color: #1f2f46;
	outline: none;
}

.hero-form-card__field input::placeholder,
.hero-form-card__field textarea::placeholder {
	color: #8496ad;
}

.hero-form-card__field select {
	appearance: none;
	padding-right: 1.5rem;
	color: #8496ad;
	cursor: pointer;
}

.hero-form-card__chevron {
	position: absolute;
	right: 0.75rem;
	color: #8496ad;
	font-size: 0.75rem;
	pointer-events: none;
}

.hero-form-card__field--textarea {
	align-items: flex-start;
	padding-top: 0.8rem;
	padding-bottom: 0.5rem;
}

.hero-form-card__field--textarea > .bi:first-child {
	top: 0.9rem;
}

.hero-form-card__field textarea {
	resize: none;
	min-height: 5rem;
	line-height: 1.5;
}

.hero-form-card__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	width: 100%;
	padding: 1rem 1.25rem;
	border: none;
	border-radius: 0.75rem;
	background: #2563eb;
	color: #fff;
	font-family: var(--tenman-font-primary);
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	letter-spacing: 0.01em;
	transition: background 0.2s ease;
}

.hero-form-card__submit:hover,
.hero-form-card__submit:focus {
	background: #1d4ed8;
}

.hero-form-card__submit .bi {
	font-size: 1rem;
}

.hero-form-card__security {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	margin-top: 0.85rem;
	font-family: var(--tenman-font-secondary);
	font-size: 0.775rem;
	color: #8496ad;
}

.hero-form-card__security .bi {
	font-size: 0.85rem;
	color: #8496ad;
}

.hero-form-card__notice {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	padding: 0.85rem 1rem;
	margin-bottom: 1rem;
	border-radius: 0.5rem;
	font-family: var(--tenman-font-secondary);
	font-size: 0.875rem;
	line-height: 1.5;
}

.hero-form-card__notice .bi {
	flex-shrink: 0;
	font-size: 1rem;
	margin-top: 0.1rem;
}

.hero-form-card__notice--success {
	background-color: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}

.hero-form-card__notice--success .bi {
	color: #059669;
}

.hero-form-card__notice--error {
	background-color: #fef2f2;
	color: #7f1d1d;
	border: 1px solid #fecaca;
}

.hero-form-card__notice--error .bi {
	color: #dc2626;
}

.hero-modal .modal-dialog {
	max-width: 36rem;
}

.hero-modal .modal-content {
	border: none;
	border-radius: 1rem;
}

.hero-modal .modal-header {
	align-items: flex-start;
	border-bottom: 1px solid #edf1f7;
	padding: 1.25rem 1.25rem 1rem;
}

.hero-modal .modal-title {
	font-family: var(--tenman-font-primary);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: #081635;
}

.hero-modal .modal-body {
	padding: 1rem 1.25rem 1.25rem;
}

.hero-modal .hero-form-card__form {
	margin-top: 0;
}

/* ── Hero video modal ── */
.hero-video-modal .modal-content {
	background: #000;
	border: none;
	border-radius: 0.75rem;
	overflow: hidden;
}

.hero-video-modal .modal-header {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
	border: none;
	padding: 0.5rem;
}

.hero-video-modal__ratio iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 1199.98px) {
	.hero-section {
		padding-top: 2rem;
	}

	.hero-section__layout {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.hero-section__title {
		max-width: none;
	}

	.hero-form-card__title {
		max-width: none;
	}
}

@media (max-width: 991.98px) {
	.hero-section {
		padding: 1.4rem 0 2.4rem;
	}

	.hero-section__content {
		padding: 1.45rem 1.1rem 1.3rem;
		border-radius: 1rem;
	}

	.hero-section__title {
		margin-top: 1rem;
		font-size: clamp(2rem, 10vw, 2.9rem);
		line-height: 1.06;
	}

	.hero-section__description {
		font-size: 1rem;
	}

	.hero-section__actions {
		margin-top: 1.4rem;
	}

	.hero-section__btn--desktop {
		display: none;
	}

	.hero-section__btn--mobile {
		display: inline-flex;
		width: 100%;
	}

	.hero-section__link {
		font-size: 0.88rem;
	}

	.hero-section__form-wrap {
		display: none;
	}

	.hero-section__chips {
		gap: 0.55rem;
	}

	.hero-section__chip {
		font-size: 0.76rem;
		padding: 0.55rem 0.78rem;
	}

	.hero-form-card__grid {
		grid-template-columns: 1fr;
	}
}

/* ── Solutions section ───────────────────────────────────────── */

.solutions-section {
	padding: 3rem 0 2.5rem;
	background: #ffffff;
	overflow: hidden;
}

/* Section header */
.solutions-section__header {
	text-align: center;
	margin-bottom: 1.5rem;
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.solutions--animate .solutions-section__header {
	opacity: 1;
	transform: none;
}

.solutions-section__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.4rem 0.85rem;
	border: 1px solid #e7ecf5;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 4px 14px rgba(9, 22, 41, 0.07);
	font-family: var(--tenman-font-primary);
	font-size: 0.63rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #253348;
	margin-bottom: 1.1rem;
}

.solutions-section__badge-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: #ef4444;
	flex-shrink: 0;
}

.solutions-section__title {
	margin: 0 0 0.75rem;
	font-family: var(--tenman-font-primary);
	font-size: clamp(1.85rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: #081635;
}

.solutions-section__subtitle {
	margin: 0 auto;
	max-width: 38rem;
	font-family: var(--tenman-font-secondary);
	font-size: 1.05rem;
	line-height: 1.6;
	color: #566277;
}

/* Hub wrapper — limits wheel width and anchors SVG */
.solutions-hub__grid-wrap {
	position: relative;
	max-width: 820px;
	margin: 0 auto;
}

.solutions-hub__svg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: visible;
}

/* Wheel container — square aspect-ratio, cards absolutely positioned */
.solutions-hub__grid {
	position: relative;
	aspect-ratio: 1;
	z-index: 1;
}


[data-module="crm"]        { top: 23%;  left: 50%; }
[data-module="accounting"] { top: 30%;  left: 90%; }
[data-module="hr"]         { top: 50%;  left: 95%; }
[data-module="projects"]   { top: 70%;  left: 90%; }
[data-module="website"]    { top: 76%;  left: 50%; }
[data-module="pos"]        { top: 70%;  left: 10%; }
[data-module="inventory"]  { top: 50%;  left: 5%; }
[data-module="sales"]      { top: 30%;  left: 10%; }

/* Odoo hub card — centred absolutely */
.solutions-hub__center {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 35%;
	height: 20%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #e4e9f2;
	border-radius: 1.25rem;
	box-shadow: 0 12px 48px rgba(9, 22, 41, 0.1), 0 2px 8px rgba(9, 22, 41, 0.06);
	padding: 1.6rem 1.25rem;
	opacity: 0;
	/* combine centering + scale entrance — always keep translate(-50%,-50%) */
	transform: translate(-50%, -50%) scale(0.88);
	transition: opacity 0.6s ease 0.25s, transform 0.6s cubic-bezier(0.34, 1.4, 0.64, 1) 0.25s;
}

.solutions--animate .solutions-hub__center {
	opacity: 1;
	transform: translate(-50%, -50%);
}

.solutions-hub__logo {
	display: block;
	width: 70%;
	max-width: 170px;
	height: auto;
}

.solutions-hub__label {
	font-family: var(--tenman-font-secondary);
	font-size: clamp(0.9rem, 1.2vw, 0.78rem);
	color: #8496ad;
	margin-top: 0.8rem;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

/* Module cards — absolute on the wheel */
.sm-card {
	position: absolute;
	width: 30%;
	background: #fff;
	border: 1px solid #e8edf5;
	border-radius: 1rem;
	padding: 0.9rem 1rem 0.85rem;
	box-shadow: 0 4px 20px rgba(9, 22, 41, 0.07);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	opacity: 0;
	/* combine centering + entrance scale — translate(-50%,-50%) must always stay */
	transform: translate(-50%, -50%) scale(0.88);
	transition:
		opacity    0.5s ease,
		transform  0.5s cubic-bezier(0.34, 1.3, 0.64, 1),
		box-shadow 0.15s ease;
}

.solutions--animate .sm-card {
	opacity: 1;
	transform: translate(-50%, -50%);
}

/* Fast hover — class added by JS after entrance completes */
.sm-card.sm-card--ready:hover {
	transform: translate(-50%, -50%) translateY(-4px) scale(1.03);
	box-shadow: 0 10px 32px rgba(9, 22, 41, 0.13);
}

/* Card name — own line at top */
.sm-card__name {
	display: block;
	font-family: var(--tenman-font-primary);
	font-size: 0.95rem;
	font-weight: 700;
	color: #1d2f52;
}

/* Card body: icon | metric (flex:1) | sparkline */
.sm-card__body {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.sm-card__metric {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

/* Card icon colour variants */
.sm-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 0.65rem;
	flex-shrink: 0;
	align-self: center;
}

.sm-card__icon .bi { font-size: 1.15rem; }

.sm-card--blue   .sm-card__icon { background: #eff6ff; color: #2563eb; }
.sm-card--purple .sm-card__icon { background: #f5f3ff; color: #7c3aed; }
.sm-card--green  .sm-card__icon { background: #f0fdf4; color: #16a34a; }
.sm-card--teal   .sm-card__icon { background: #ecfdf5; color: #059669; }

.sm-card__label {
	font-family: var(--tenman-font-secondary);
	font-size: 0.7rem;
	color: #8496ad;
	margin-bottom: 0.05rem;
	white-space: nowrap;
}

.sm-card__value {
	font-family: var(--tenman-font-primary);
	font-size: 1.2rem;
	font-weight: 700;
	color: #1d2f52;
	line-height: 1.1;
	white-space: nowrap;
}

.sm-card__growth {
	display: inline-flex;
	align-items: center;
	gap: 0;
	margin-top: 0.1rem;
	font-family: var(--tenman-font-primary);
	font-size: 0.7rem;
	font-weight: 600;
	color: #16a34a;
}

.sm-card__growth .bi {
	font-size: 0.8rem;
}

/* Sparklines */
.sm-card__sparkline {
	flex-shrink: 0;
	display: block;
	width: 2.5rem;
	height: auto;
}

.sm-card__sparkline--bars {
	width: 2rem;
}

.sm-card__sparkline--progress {
	width: 2.5rem;
	height: 0.4rem;
	margin-bottom: 0.3rem;
}

/* SVG line / dot styles */
.solutions-hub__line {
	stroke: #cbd5e1;
	stroke-width: 1.5;
}

.solutions-hub__dot {
	transform-box: fill-box;
	transform-origin: center;
}

/* ── Solutions – Business Challenges sub-section ─────────────── */

.solutions-challenges {
	padding-top: 4rem;
	padding-bottom: 10rem;
	border-top: 1px solid var(--tenman-color-border);
}

.solutions-challenges__header {
	text-align: center;
	margin-bottom: 3rem;
}

.solutions-challenges__title {
	margin: 0 0 0.75rem;
	font-family: var(--tenman-font-primary);
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: #081635;
}

.solutions-challenges__subtitle {
	margin: 0 auto;
	max-width: 40rem;
	font-family: var(--tenman-font-secondary);
	font-size: 1rem;
	line-height: 1.6;
	color: #566277;
	padding-bottom: 4rem;
}

/* ── Comparison layout ────────────────────────────────────────── */

.solutions-comparison {
	display: flex;
	flex-direction: column;
}

/* Clean 4-column card grid — no sep elements inside */
.solutions-comparison__before {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 1rem;
	align-items: stretch;
}

/* ── Disconnected cards ───────────────────────────────────────── */

.disc-card {
	background: #fff;
	border: 1px solid var(--tenman-color-border);
	border-radius: 1rem;
	padding: 1rem 1.1rem;
	box-shadow: 0 2px 12px rgba(9, 22, 41, 0.06);
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	min-height: 11rem;
}

/* Header: icon + title + badge forced to one line on desktop */
.disc-card__head {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: nowrap;
}

.disc-card__head-info {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	min-width: 0;
	overflow: hidden;
	flex-shrink: 1;
}

/* Icon — reuses sm-card__icon shape & colour system */
.disc-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 0.5rem;
	flex-shrink: 0;
}

.disc-card__icon .bi { font-size: 1rem; }

.disc-card--blue   .disc-card__icon { background: #eff6ff; color: #2563eb; }
.disc-card--green  .disc-card__icon { background: #f0fdf4; color: #16a34a; }
.disc-card--purple .disc-card__icon { background: #f5f3ff; color: #7c3aed; }
.disc-card--orange .disc-card__icon { background: #fff7ed; color: #ea580c; }

.disc-card__title {
	font-family: var(--tenman-font-primary);
	font-size: 0.78rem;
	font-weight: 700;
	color: #1d2f52;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.disc-card__nosync {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.2rem 0.5rem;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 999px;
	font-family: var(--tenman-font-primary);
	font-size: 0.6rem;
	font-weight: 700;
	color: #dc2626;
	white-space: nowrap;
	flex-shrink: 0;
}

.disc-card__nosync .bi {
	font-size: 0.6rem;
}

/* ── Card body ────────────────────────────────────────────────── */

.disc-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

/* Top row: metric (left) + chart visual (right) */
.disc-card__body-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.6rem;
	flex: 1;
}

.disc-card__metric {
	display: flex;
	flex-direction: column;
	gap: 0.05rem;
	min-width: 0;
}

.disc-card__metric-label {
	font-family: var(--tenman-font-secondary);
	font-size: 0.62rem;
	color: #8496ad;
	margin-bottom: 0.1rem;
}

.disc-card__metric-value {
	font-family: var(--tenman-font-primary);
	font-size: 1.1rem;
	font-weight: 700;
	color: #1d2f52;
	line-height: 1.1;
	white-space: nowrap;
}

.disc-card__metric-sub {
	font-family: var(--tenman-font-secondary);
	font-size: 0.62rem;
	color: #8496ad;
	margin-top: 0.05rem;
}

.disc-card__metric-sub--warn {
	color: #ea580c;
	font-weight: 600;
}

.disc-card__chart {
	flex-shrink: 0;
	align-self: flex-start;
	margin-top: 0.15rem;
}

/* Sparkline SVGs */
.disc-card__sparkline {
	display: block;
	width: 4rem;
	height: auto;
}

.disc-card__sparkline--bars {
	width: 3rem;
}

/* Donut chart */
.disc-card__donut {
	display: block;
	width: 3.5rem;
	height: 3.5rem;
}

/* Avatars (HR card) */
.disc-card__avatars {
	display: flex;
	align-items: center;
}

.disc-card__avatar {
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 50%;
	border: 2px solid #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--tenman-font-primary);
	font-size: 0.48rem;
	font-weight: 700;
	color: #fff;
	flex-shrink: 0;
}

.disc-card__avatar + .disc-card__avatar {
	margin-left: -0.4rem;
}

.disc-card__avatar--a { background: #2563eb; }
.disc-card__avatar--b { background: #7c3aed; }
.disc-card__avatar--c { background: #ea580c; }

.disc-card__avatar--count {
	background: #f1f5f9;
	color: #566277;
	font-size: 0.48rem;
}

/* ── Status list ─────────────────────────────────────────────── */

.disc-card__list {
	list-style: none;
	margin: 0;
	padding: 0.4rem 0 0;
	border-top: 1px solid var(--tenman-color-border);
	display: flex;
	flex-direction: column;
	gap: 0.22rem;
}

.disc-card__list-item {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.disc-card__list-dot {
	width: 0.42rem;
	height: 0.42rem;
	border-radius: 50%;
	flex-shrink: 0;
}

.disc-card__list-dot--blue   { background: #2563eb; }
.disc-card__list-dot--yellow { background: #ca8a04; }
.disc-card__list-dot--green  { background: #16a34a; }
.disc-card__list-dot--red    { background: #dc2626; }
.disc-card__list-dot--orange { background: #ea580c; }
.disc-card__list-dot--gray   { background: #94a3b8; }

.disc-card__list-label {
	flex: 1;
	font-family: var(--tenman-font-secondary);
	font-size: 0.62rem;
	color: #566277;
	white-space: nowrap;
}

.disc-card__list-value {
	font-family: var(--tenman-font-primary);
	font-size: 0.65rem;
	font-weight: 600;
	color: #1d2f52;
}

.disc-card__list-value--red    { color: #dc2626; }
.disc-card__list-value--green  { color: #16a34a; }
.disc-card__list-value--orange { color: #ea580c; }

/* ── Connector: sep icons → horizontal line → stem → arrow ─────── */

.solutions-comparison__connector {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Row of 4 X icons — one centred below each card */
.solutions-comparison__seps {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 1rem; /* must match .solutions-comparison__before gap */
	width: 100%;
	position: relative;
	padding: 0.65rem 0;
}

/* Horizontal dashed line passing through all 4 icon centres.
   With a 4-column equal grid + gap:1rem, each column is (100%-3rem)/4 wide.
   Centre of col-1 from left  = (100%-3rem)/8 ≈ 12.5% − 0.375rem
   Centre of col-4 from right = same value. */
.solutions-comparison__seps::before {
	content: '';
	position: absolute;
	top: 50%;
	left: calc(12.5% - 0.375rem);
	right: calc(12.5% - 0.375rem);
	height: 0;
	border-top: 1.5px dashed #cbd5e1;
	transform: translateY(-50%);
	z-index: 0;
}

/* Sep icon — no border, just the red background circle */
.disc-card__sep-icon {
	position: relative;
	z-index: 1;
	justify-self: center;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	background: #fef2f2;
	color: #dc2626;
	flex-shrink: 0;
}

.disc-card__sep-icon .bi {
	font-size: 0.8rem;
}

/* Vertical dashed stem from the horizontal line down to the arrow */
.solutions-comparison__stem {
	width: 0;
	height: 1.5rem;
	border-left: 1.5px dashed #cbd5e1;
}

/* Single central comparison arrow */
.solutions-comparison__arrow {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #94a3b8;
	margin-bottom: 0.5rem;
}

.solutions-comparison__arrow .bi {
	font-size: 0.9rem;
	line-height: 1.1;
}

.solutions-comparison__arrow .bi + .bi {
	margin-top: -0.35rem;
}

/* ── Unified platform card ───────────────────────────────────── */

.unified-platform-card {
	display: flex;
	background: #fff;
	border: 1.5px solid var(--tenman-color-border);
	border-radius: 1.25rem;
	box-shadow:
		0 8px 40px rgba(9, 22, 41, 0.1),
		0 2px 8px rgba(9, 22, 41, 0.06);
	overflow: hidden;
	min-height: 18rem;
}

.unified-platform-card__brand {
	flex-shrink: 0;
	width: 26%;
	min-width: 0;
	border-right: 1px solid var(--tenman-color-border);
	background: var(--tenman-color-surface);
	padding: 2rem 1.75rem;
	display: flex;
	flex-direction: column;
}

.unified-platform-card__dashboard {
	flex: 1;
	min-width: 0;
	padding: 1.5rem 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

/* ── UPC: Brand panel ────────────────────────────────────────── */

.upc-brand__logo {
	display: block;
	width: 75%;
	max-width: 130px;
	height: auto;
	margin-bottom: 1rem;
}

.upc-brand__title {
	margin: 0 0 0.85rem;
	font-family: var(--tenman-font-primary);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.3;
	color: #081635;
}

.upc-brand__divider {
	display: block;
	width: 2rem;
	height: 2px;
	background: var(--tenman-color-border);
	border-radius: 2px;
	margin-bottom: 0.85rem;
}

.upc-brand__desc {
	margin: 0 0 1.25rem;
	font-family: var(--tenman-font-secondary);
	font-size: 0.8rem;
	line-height: 1.55;
	color: #566277;
}

.upc-brand__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.42rem 0.9rem;
	background: var(--tenman-color-primary-blue);
	border-radius: 999px;
	font-family: var(--tenman-font-primary);
	font-size: 0.68rem;
	font-weight: 600;
	color: #fff;
	align-self: flex-start;
	cursor: default;
	user-select: none;
}

.upc-brand__badge .bi { font-size: 0.75rem; }

/* ── UPC: Tabs ───────────────────────────────────────────────── */

.upc-tabs {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--tenman-color-border);
	flex-shrink: 0;
}

.upc-tabs__item {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.28rem 0.7rem 0.42rem;
	font-family: var(--tenman-font-primary);
	font-size: 0.7rem;
	font-weight: 500;
	color: #8496ad;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	white-space: nowrap;
	cursor: default;
	user-select: none;
}

.upc-tabs__item .bi { font-size: 0.7rem; }

.upc-tabs__item--active {
	color: var(--tenman-color-primary-blue);
	font-weight: 700;
	border-bottom-color: var(--tenman-color-primary-blue);
}

.upc-tabs__item--push { margin-left: auto; }

/* ── UPC: Metric cards ───────────────────────────────────────── */

.upc-metrics {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 0.6rem;
	flex-shrink: 0;
}

.upc-metric-card {
	border: 1px solid var(--tenman-color-border);
	border-radius: 0.65rem;
	padding: 0.6rem 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.upc-metric-card__label {
	font-family: var(--tenman-font-secondary);
	font-size: 0.6rem;
	color: #8496ad;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.upc-metric-card__row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0.35rem;
}

.upc-metric-card__data {
	display: flex;
	flex-direction: column;
	gap: 0.05rem;
}

.upc-metric-card__value {
	font-family: var(--tenman-font-primary);
	font-size: 1rem;
	font-weight: 700;
	color: #1d2f52;
	line-height: 1.1;
	white-space: nowrap;
}

.upc-metric-card__change {
	display: inline-flex;
	align-items: center;
	font-family: var(--tenman-font-primary);
	font-size: 0.62rem;
	font-weight: 600;
}

.upc-metric-card__change .bi { font-size: 0.78rem; line-height: 1; }

.upc-metric-card__change--up   { color: #16a34a; }
.upc-metric-card__change--down { color: #dc2626; }

.upc-metric-card__spark {
	display: block;
	width: 2.75rem;
	height: auto;
	flex-shrink: 0;
	align-self: flex-end;
	margin-bottom: 0.2rem;
}

/* ── UPC: Bottom (overview + activity) ──────────────────────── */

.upc-bottom {
	display: flex;
	gap: 0.6rem;
	flex: 1;
	min-height: 0;
}

.upc-overview {
	flex: 1;
	min-width: 0;
	/* border: 1px solid var(--tenman-color-border); */
	border-radius: 0.65rem;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.upc-overview__title,
.upc-activity__title {
	font-family: var(--tenman-font-primary);
	font-size: 0.7rem;
	font-weight: 600;
	color: #1d2f52;
	flex-shrink: 0;
}

.upc-overview__chart {
	display: block;
	width: 100%;
	height: auto;
	flex: 1;
}

.upc-activity {
	flex-shrink: 0;
	width: 42%;
	border: 1px solid var(--tenman-color-border);
	border-radius: 0.65rem;
	padding: 0.65rem 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.upc-activity__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
}

.upc-activity__item {
	display: flex;
	align-items: center;
	gap: 0.45rem;
}

.upc-activity__dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	flex-shrink: 0;
}

.upc-activity__dot--blue   { background: #2563eb; }
.upc-activity__dot--green  { background: #16a34a; }
.upc-activity__dot--yellow { background: #ca8a04; }
.upc-activity__dot--purple { background: #7c3aed; }

.upc-activity__text {
	flex: 1;
	font-family: var(--tenman-font-secondary);
	font-size: 0.6rem;
	color: #566277;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.upc-activity__time {
	font-family: var(--tenman-font-secondary);
	font-size: 0.58rem;
	color: #94a3b8;
	white-space: nowrap;
	flex-shrink: 0;
}

/* ── Responsive: challenges sub-section ─────────────────────── */

@media (max-width: 767.98px) {
	.solutions-challenges {
		margin-top: 3.5rem;
		padding-top: 3rem;
	}

	/* ── Compact disc-cards ────────────────────────────────────── */

	.disc-card {
		padding: 0.65rem 0.7rem;
		gap: 0.45rem;
		min-height: auto;
	}

	/* Force badge to its own centred second line */
	.disc-card__head {
		flex-wrap: wrap;
		gap: 0.35rem;
	}

	.disc-card__head-info {
		width: 100%; /* takes the full first line → badge wraps */
	}

	.disc-card__nosync {
		margin: 0 auto; /* centred on the second line */
	}

	.disc-card__icon {
		width: 1.65rem;
		height: 1.65rem;
	}

	.disc-card__icon .bi {
		font-size: 0.82rem;
	}

	.disc-card__title {
		font-size: 0.72rem;
	}

	.disc-card__body-top {
		gap: 0.35rem;
	}

	.disc-card__metric-label,
	.disc-card__metric-sub {
		font-size: 0.56rem;
	}

	.disc-card__metric-value {
		font-size: 0.9rem;
	}

	/* Shrink chart visuals */
	.disc-card__sparkline {
		width: 2.5rem;
	}

	.disc-card__sparkline--bars {
		width: 2rem;
	}

	.disc-card__donut {
		width: 2.75rem;
		height: 2.75rem;
	}

	.disc-card__avatar {
		width: 1.3rem;
		height: 1.3rem;
		font-size: 0.42rem;
	}

	.disc-card__list-label {
		font-size: 0.56rem;
	}

	.disc-card__list-value {
		font-size: 0.58rem;
	}

	/* 2×2 card grid on mobile */
	.solutions-comparison__before {
		grid-template-columns: 1fr 1fr;
		gap: 0.6rem;
	}

	/* Matching 2-column sep grid — show only the first 2 icons */
	.solutions-comparison__seps {
		grid-template-columns: 1fr 1fr;
		gap: 0.6rem;
	}

	.solutions-comparison__seps .disc-card__sep-icon:nth-child(3),
	.solutions-comparison__seps .disc-card__sep-icon:nth-child(4) {
		display: none;
	}

	/* Adjust horizontal line for 2-column layout.
	   Centre of col-1 from left = (100%-0.6rem)/4 ≈ 25% − 0.15rem */
	.solutions-comparison__seps::before {
		left: calc(25% - 0.15rem);
		right: calc(25% - 0.15rem);
	}

	.unified-platform-card {
		flex-direction: column;
		min-height: auto;
	}

	.unified-platform-card__brand {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid var(--tenman-color-border);
		padding: 1.1rem 1.25rem;
	}

	.unified-platform-card__dashboard {
		padding: 1rem 1.1rem;
		gap: 0.65rem;
	}

	/* ── UPC mobile layout ──────────────────────────────────────── */

	.upc-brand__logo {
		max-width: 90px;
		margin-bottom: 0.6rem;
	}

	.upc-brand__title {
		font-size: 0.88rem;
		margin-bottom: 0.6rem;
	}

	.upc-brand__divider {
		margin-bottom: 0.6rem;
	}

	/* Tabs: icon-free single line */
	.upc-tabs__item {
		padding: 0.2rem 0.38rem 0.32rem;
		font-size: 0.56rem;
		gap: 0;
	}

	.upc-tabs__item .bi {
		display: none;
	}

	/* 2 metric cards per row */
	.upc-metrics {
		grid-template-columns: 1fr 1fr;
		gap: 0.5rem;
	}

	.upc-metric-card {
		padding: 0.5rem 0.6rem;
	}

	.upc-metric-card__value {
		font-size: 0.88rem;
	}

	.upc-metric-card__spark {
		width: 2.25rem;
	}

	/* Bottom: graph first, then activity (column stacking keeps DOM order) */
	.upc-bottom {
		flex-direction: column;
		gap: 0.5rem;
	}

	.upc-activity {
		width: 100%;
	}
}

@media (max-width: 479.98px) {
	.disc-card {
		min-height: 9rem;
	}
}

/* Responsive — revert wheel to a 2-column grid on tablet/mobile */
@media (max-width: 991.98px) {
	.solutions-section {
		padding: 3.5rem 0 3rem;
	}

	.solutions-hub__grid-wrap {
		max-width: none;
	}

	/* Reset wheel → flow grid */
	.solutions-hub__grid {
		display: grid;
		aspect-ratio: auto;
		grid-template-columns: 1fr 1fr;
		gap: 0.85rem;
	}

	/* Reset all absolute card positions */
	.sm-card,
	.solutions-hub__center {
		position: static;
		width: auto;
		transform: none;
		top: auto;
		left: auto;
	}

	.solutions--animate .sm-card {
		transform: none;
	}

	.sm-card.sm-card--ready:hover {
		transform: translateY(-3px);
	}

	.solutions--animate .solutions-hub__center {
		transform: none;
	}

	/* Hub spans full row at top — always first */
	.solutions-hub__center {
		order: -1;
		grid-column: 1 / -1;
		min-height: 10rem;
		margin-bottom: 0.5rem;
		opacity: 0;
		transform: scale(0.92);
	}

	/* Entrance for flow layout */
	.sm-card {
		opacity: 0;
		transform: translateY(14px) scale(0.97);
	}

	.solutions--animate .solutions-hub__center {
		opacity: 1;
		transform: none;
	}

	.solutions--animate .sm-card {
		opacity: 1;
		transform: none;
	}

	/* Larger card text at tablet */
	.sm-card__name  { font-size: 0.95rem; }
	.sm-card__value { font-size: 1.2rem; }
	.sm-card__label { font-size: 0.72rem; }
	.sm-card__growth { font-size: 0.72rem; }
	.sm-card {
		padding: 0.9rem 1rem;
		gap: 0.55rem;
	}
	.sm-card__icon {
		width: 2.4rem;
		height: 2.4rem;
	}
}

@media (max-width: 575.98px) {
	.solutions-hub__grid {
		grid-template-columns: 1fr;
	}
}

/* ── Site footer ─────────────────────────────────────────────── */

.site-footer {
	background: var(--tenman-color-primary-dark);
	color: var(--tenman-color-white);
}

.site-footer__main {
	min-height: 70vh;
	display: flex;
	align-items: center;
	padding: 3.5rem 0 2.5rem;
}

.site-footer__columns {
	width: 100%;
	min-height: 70vh;
}

.site-footer__column {
	display: flex;
	justify-content: center;
	align-items: center;
}

.site-footer__brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 22rem;
}

.site-footer__logo {
	display: inline-block;
	line-height: 0;
	margin-bottom: 1.25rem;
}

.site-footer__logo img {
	height: auto;
	width: 100%;
	max-width: 350px;
	display: block;
}

.site-footer__brand-line {
	display: block;
	width: 3rem;
	height: 3px;
	background: var(--tenman-color-primary-blue);
	border-radius: 2px;
	margin-bottom: 1.25rem;
}

.site-footer__tagline {
	margin: 0;
	font-family: var(--tenman-font-secondary);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--tenman-color-white);
	opacity: 0.8;
}

.site-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 0.7rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__contact-item:first-child {
	padding-top: 0;
}

.site-footer__contact-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.site-footer__contact-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	color: var(--tenman-color-primary-blue);
	font-size: 1.25rem;
}

.site-footer__contact-body {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	min-width: 0;
}

.site-footer__contact-label {
	font-family: var(--tenman-font-primary);
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--tenman-color-slate-muted);
}

.site-footer__contact-value {
	font-family: var(--tenman-font-secondary);
	font-size: 1rem;
	color: var(--tenman-color-white);
	text-decoration: none;
	line-height: 1.4;
}

.site-footer__contact-value:hover,
.site-footer__contact-value:focus {
	color: var(--tenman-color-white);
	opacity: 0.85;
}

.site-footer__contact-value--external {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
}

.site-footer__contact-value--external .bi {
	font-size: 0.875rem;
	color: var(--tenman-color-primary-blue);
}

.site-footer__bar {
	padding: 1.25rem 0 1.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bar-columns {
	width: 100%;
}

.site-footer__column--bar {
	justify-content: center;
	align-items: center;
}

.site-footer__bar-align {
	width: 100%;
	max-width: 22rem;
}

.site-footer__copyright,
.site-footer__credit {
	margin: 0;
	font-family: var(--tenman-font-secondary);
	font-size: 0.8125rem;
	color: var(--tenman-color-slate-muted);
}

.site-footer__credit-highlight {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	margin-left: 0.25rem;
	color: var(--tenman-color-primary-blue);
	font-family: var(--tenman-font-primary);
	font-weight: 600;
}

.site-footer__credit-highlight .bi {
	font-size: 0.875rem;
}

@media (max-width: 991.98px) {
	.site-footer__main {
		min-height: auto;
		padding: 2.5rem 0 2rem;
	}

	.site-footer__columns {
		min-height: auto;
	}

	.site-footer__column {
		justify-content: flex-start;
		align-items: flex-start;
	}

	.site-footer__brand {
		max-width: none;
		margin-bottom: 0.5rem;
	}

	.site-footer__column--bar {
		justify-content: flex-start;
		align-items: flex-start;
	}

	.site-footer__bar-align {
		max-width: none;
	}

	.site-footer__bar-columns .site-footer__column--bar + .site-footer__column--bar {
		margin-top: 0.75rem;
	}
}

/* ── Odoo Applications — cursor spotlight glow ───────────────────────────── */

/* Real border replaced by ::after mask; position: relative anchors pseudo-elements */
#odoo-apps-glow-grid .disc-card {
	position: relative;
	border: none;
}

/*
 * Background tint — soft blue wash painted over the white card fill where the
 * invisible circle overlaps. z-index: 0 puts it above the card background but
 * below card children (which are lifted to z-index: 1 below).
 * Circle is 210 px (300 px − 30 %).
 */
#odoo-apps-glow-grid .disc-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(
		210px circle at var(--mouse-x, -9999px) var(--mouse-y, -9999px),
		rgba(37, 99, 235, 0.04),
		transparent 70%
	);
	pointer-events: none;
	z-index: 0;
}

/*
 * Border glow — CSS mask trick creates a pure 1 px border ring without any
 * z-index hacks. The radial-gradient transitions from primary blue (#2563eb) at
 * the cursor to the default border colour (#e8edf5) at 70 % of the radius, so
 * the card always has a visible grey edge and lights up blue only where the
 * invisible circle overlaps.
 */
#odoo-apps-glow-grid .disc-card::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: radial-gradient(
		210px circle at var(--mouse-x, -9999px) var(--mouse-y, -9999px),
		#2563eb,
		#e8edf5 70%
	);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

/* Lift direct card children above the ::before tint overlay */
#odoo-apps-glow-grid .disc-card > * {
	position: relative;
	z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   WHY 10MAN SECTION
═══════════════════════════════════════════════════════════ */

.why10man-section {
	padding: 5rem 0;
}

/* Header ─────────────────────────────────────────────────── */

.why10man-section__header {
	text-align: center;
	margin-bottom: 3rem;
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.why10man--animate .why10man-section__header {
	opacity: 1;
	transform: none;
}

.why10man-section__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.4rem 0.85rem;
	border: 1px solid #e7ecf5;
	border-radius: 100px;
	background: #fff;
	font-family: var(--tenman-font-secondary);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #3c4a5e;
	margin-bottom: 1.25rem;
}

.why10man-section__badge-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: #ef4444;
	flex-shrink: 0;
}

.why10man-section__title {
	margin: 0 0 0.75rem;
	font-family: var(--tenman-font-primary);
	font-size: clamp(1.85rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: #081635;
}

.why10man-section__title-accent {
	color: var(--tenman-color-primary-blue);
}

.why10man-section__subtitle {
	margin: 0 auto;
	max-width: 38rem;
	font-family: var(--tenman-font-secondary);
	font-size: 1.05rem;
	line-height: 1.6;
	color: #566277;
}

/* Cards grid ─────────────────────────────────────────────── */

.why10man-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

/* Individual card ─────────────────────────────────────────── */

.w10m-card {
	background: #fff;
	border: 1px solid var(--tenman-color-border);
	border-radius: 16px;
	overflow: hidden;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s ease;
}

.why10man--animate .w10m-card {
	opacity: 1;
	transform: none;
}

.w10m-card--ready:hover {
	box-shadow: 0 10px 32px rgba(9, 22, 41, 0.10);
	transform: translateY(-4px);
}

/* Image placeholder (top of card) */
.w10m-card__img {
	width: 100%;
	aspect-ratio: 4 / 3;
	background: #f1f5fb;
	overflow: hidden;
}

.w10m-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Card body */
.w10m-card__body {
	padding: 1.5rem 1.25rem;
}

.w10m-card__heading {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 0.75rem;
}

.w10m-card__icon {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 8px;
	background: #eff6ff;
	color: var(--tenman-color-primary-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.w10m-card__title {
	margin: 0;
	font-family: var(--tenman-font-primary);
	font-size: 1.05rem;
	font-weight: 700;
	color: #081635;
	line-height: 1.2;
}

.w10m-card__desc {
	margin: 0;
	font-family: var(--tenman-font-secondary);
	font-size: 0.9rem;
	line-height: 1.65;
	color: #566277;
}

/* Mobile — horizontal swipe row ──────────────────────────── */

@media (max-width: 767.98px) {
	.why10man-section {
		padding: 3.5rem 0;
	}

	.why10man-cards {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 1rem;
		padding-left: 1rem;
		padding-right: 1rem;
		padding-bottom: 1rem;
		margin-left: -1rem;
		margin-right: -1rem;
		scrollbar-width: none;
	}

	.why10man-cards::-webkit-scrollbar {
		display: none;
	}

	.w10m-card {
		flex: 0 0 78%;
		scroll-snap-align: start;
		/* Override entrance transform so it doesn't conflict with flex layout */
		transform: translateY(20px);
	}

	.why10man--animate .w10m-card {
		transform: none;
	}

	.w10m-card--ready:hover {
		transform: translateY(-3px);
	}
}

/* ═══════════════════════════════════════════════════════════
   PROCESS SECTION — subsection 1: steps
═══════════════════════════════════════════════════════════ */

.process-section {
	padding: 5rem 0;
	background: #fff;
}

/* Header ─────────────────────────────────────────────────── */

.process-section__header {
	text-align: center;
	margin-bottom: 3rem;
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.process--animate .process-section__header {
	opacity: 1;
	transform: none;
}

.process-section__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.4rem 0.85rem;
	border: 1px solid #e7ecf5;
	border-radius: 100px;
	background: #fff;
	font-family: var(--tenman-font-secondary);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #3c4a5e;
	margin-bottom: 1.25rem;
}

.process-section__badge-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: #ef4444;
	flex-shrink: 0;
}

.process-section__title {
	margin: 0 0 0.75rem;
	font-family: var(--tenman-font-primary);
	font-size: clamp(1.85rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: #081635;
}

.process-section__title-accent {
	color: var(--tenman-color-primary-blue);
}

.process-section__subtitle {
	margin: 0 auto;
	max-width: 38rem;
	font-family: var(--tenman-font-secondary);
	font-size: 1.05rem;
	line-height: 1.6;
	color: #566277;
}

/* Steps grid ─────────────────────────────────────────────── */

.process-steps {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 1rem;
}

/* Individual step card ────────────────────────────────────── */

.ps-card {
	background: #fff;
	border: 1px solid var(--tenman-color-border);
	border-radius: 14px;
	padding: 1.25rem 1rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s ease;
}

.process--animate .ps-card {
	opacity: 1;
	transform: none;
}

.ps-card--ready:hover {
	box-shadow: 0 8px 28px rgba(9, 22, 41, 0.09);
	transform: translateY(-4px);
}

/* Icon */
.ps-card__icon {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 8px;
	background: #eff6ff;
	color: var(--tenman-color-primary-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.05rem;
	flex-shrink: 0;
	margin-bottom: 0.5rem;
}

/* Step number */
.ps-card__num {
	font-family: var(--tenman-font-primary);
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--tenman-color-primary-blue);
	line-height: 1;
}

/* Step name */
.ps-card__name {
	margin: 0;
	font-family: var(--tenman-font-primary);
	font-size: 0.92rem;
	font-weight: 700;
	color: #081635;
	line-height: 1.2;
}

/* Step description */
.ps-card__desc {
	margin: 0;
	font-family: var(--tenman-font-secondary);
	font-size: 0.8rem;
	line-height: 1.6;
	color: #566277;
}

/* Mobile — horizontal swipe (mirrors why-10man) ──────────── */

@media (max-width: 991.98px) {
	.process-section {
		padding: 3.5rem 0;
	}

	.process-steps {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 1rem;
		padding-left: 1rem;
		padding-right: 1rem;
		padding-bottom: 1rem;
		margin-left: -1rem;
		margin-right: -1rem;
		scrollbar-width: none;
	}

	.process-steps::-webkit-scrollbar {
		display: none;
	}

	.ps-card {
		flex: 0 0 72%;
		scroll-snap-align: start;
	}

	.ps-card--ready:hover {
		transform: translateY(-3px);
	}
}

/* ── Process subsection 2: Global stats ──────────────────── */

.process-stats {
	margin-top: 5rem;
	padding-top: 4.5rem;
	border-top: 1px solid var(--tenman-color-border);
}

/* Stats header — reuses process-section badge/title/subtitle styles;
   only needs its own opacity/transform for independent animation */
.process-stats__header {
	text-align: center;
	margin-bottom: 3.5rem;
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.process-stats--animate .process-stats__header {
	opacity: 1;
	transform: none;
}

/* Three-column stat grid */
.process-stats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

/* Individual stat item */
.pstat {
	text-align: center;
	padding: 1rem 2.5rem 1.5rem;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.process-stats--animate .pstat {
	opacity: 1;
	transform: none;
}

/* Vertical divider between stat items */
.pstat:not(:last-child) {
	border-right: 1px solid var(--tenman-color-border);
}

/* Large counter number + suffix */
.pstat__figure {
	margin: 0 0 0.6rem;
	line-height: 1;
	font-family: var(--tenman-font-primary);
	font-size: clamp(3.5rem, 8vw, 6rem);
	font-weight: 600;
	color: #081635;
	letter-spacing: -0.03em;
}

.pstat__suffix {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
}

/* Short blue accent line */
.pstat__accent {
	display: block;
	width: 2rem;
	height: 3px;
	border-radius: 2px;
	background: var(--tenman-color-primary-blue);
	margin: 0 auto 1rem;
}

/* Stat label */
.pstat__label {
	display: block;
	font-family: var(--tenman-font-primary);
	font-size: 1rem;
	font-weight: 700;
	color: #081635;
	margin-bottom: 0.4rem;
}

/* Stat description */
.pstat__desc {
	margin: 0;
	font-family: var(--tenman-font-secondary);
	font-size: 0.88rem;
	line-height: 1.6;
	color: #566277;
}

/* Mobile: stack vertically, vertical dividers become horizontal */
@media (max-width: 767.98px) {
	.process-stats {
		margin-top: 3rem;
		padding-top: 3rem;
	}

	.process-stats__grid {
		grid-template-columns: 1fr;
	}

	.pstat {
		padding: 1.5rem 1rem;
	}

	/* Remove vertical dividers */
	.pstat:not(:last-child) {
		border-right: none;
		border-bottom: 1px solid var(--tenman-color-border);
	}
}

/* ── Process subsection 3: Project Team ──────────────────── */

.process-team {
	margin-top: 5rem;
	padding-top: 4.5rem;
	border-top: 1px solid var(--tenman-color-border);
}

/* Header */
.process-team__header {
	text-align: center;
	margin-bottom: 3rem;
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.process-team--animate .process-team__header {
	opacity: 1;
	transform: none;
}

/* Three-column card grid */
.process-team__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

/* Individual team card */
.pt-card {
	background: #fff;
	border: 1px solid var(--tenman-color-border);
	border-radius: 16px;
	overflow: hidden;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s ease;
}

.process-team--animate .pt-card {
	opacity: 1;
	transform: none;
}

.pt-card--ready:hover {
	box-shadow: 0 10px 32px rgba(9, 22, 41, 0.10);
	transform: translateY(-4px);
}

/* Image area — placeholder until illustrations are added */
.pt-card__img {
	width: 100%;
	aspect-ratio: 16 / 10;
	background: #f1f5fb;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pt-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Hide empty img tags so the placeholder background shows cleanly */
.pt-card__img img[src=""] {
	display: none;
}

/* Card body */
.pt-card__body {
	padding: 1.5rem 1.5rem 1.75rem;
}

/* "DEDICATED EXPERT" tag */
.pt-card__tag {
	display: block;
	font-family: var(--tenman-font-secondary);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--tenman-color-primary-blue);
	margin-bottom: 0.4rem;
}

/* Large abbreviation: PM / BA / DEV */
.pt-card__abbr {
	margin: 0 0 0.15rem;
	font-family: var(--tenman-font-primary);
	font-size: clamp(2.25rem, 5vw, 3.25rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.02em;
	color: #081635;
}

/* Role title */
.pt-card__role {
	margin: 0 0 0.75rem;
	font-family: var(--tenman-font-primary);
	font-size: 1rem;
	font-weight: 700;
	color: #081635;
}

/* Description */
.pt-card__desc {
	margin: 0;
	font-family: var(--tenman-font-secondary);
	font-size: 0.88rem;
	line-height: 1.65;
	color: #566277;
}

/* Mobile — horizontal swipe (mirrors why-10man) */
@media (max-width: 767.98px) {
	.process-team {
		margin-top: 3rem;
		padding-top: 3rem;
	}

	.process-team__grid {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 1rem;
		padding-left: 1rem;
		padding-right: 1rem;
		padding-bottom: 1rem;
		margin-left: -1rem;
		margin-right: -1rem;
		scrollbar-width: none;
	}

	.process-team__grid::-webkit-scrollbar {
		display: none;
	}

	.pt-card {
		flex: 0 0 80%;
		scroll-snap-align: start;
	}

	.pt-card--ready:hover {
		transform: translateY(-3px);
	}
}
