:root {
	--font-sans: "Aptos", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
	--ink: #122b3a;
	--ink-soft: #4d626c;
	--ink-faint: #778890;
	--paper: #f5f6f2;
	--surface: #ffffff;
	--surface-soft: #ebefeb;
	--surface-deep: #dfe7e3;
	--line: rgba(18, 43, 58, .13);
	--navy: #132e3f;
	--navy-light: #1c4358;
	--coral: #ff795f;
	--coral-dark: #df5f49;
	--mint: #8bd5bd;
	--success: #2a8f69;
	--shadow-sm: 0 10px 30px rgba(21, 48, 58, .08);
	--shadow-lg: 0 35px 90px rgba(21, 48, 58, .16);
	--radius-sm: 14px;
	--radius-md: 24px;
	--radius-lg: 38px;
	--container: 1240px;
	--header-height: 80px;
	--ease: cubic-bezier(.22, 1, .36, 1);
}

html[data-theme="dark"] {
	--ink: #eff6f2;
	--ink-soft: #afc0c1;
	--ink-faint: #85999b;
	--paper: #0b1419;
	--surface: #111e24;
	--surface-soft: #17272d;
	--surface-deep: #20343a;
	--line: rgba(225, 239, 235, .12);
	--navy: #eff6f2;
	--navy-light: #c7d8d7;
	--shadow-sm: 0 10px 30px rgba(0, 0, 0, .24);
	--shadow-lg: 0 35px 90px rgba(0, 0, 0, .35);
	color-scheme: dark;
}

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

html {
	font-size: 16px;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 20px);
}

html,
body,
.mobile-nav {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.mobile-nav::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

body {
	margin: 0;
	min-width: 320px;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, picture { display: block; max-width: 100%; }

button, input, select, textarea { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

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

h1, h2, h3, p, blockquote { margin-top: 0; }

h1, h2, h3 {
	color: var(--ink);
	font-weight: 650;
	line-height: 1.04;
	letter-spacing: -.04em;
}

h2 { font-size: clamp(2.65rem, 5vw, 5.3rem); }

h3 { letter-spacing: -.025em; }

svg {
	width: 1.25em;
	height: 1.25em;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

::selection { background: var(--coral); color: #112934; }

:focus-visible {
	outline: 3px solid var(--coral);
	outline-offset: 3px;
}

.container {
	width: min(calc(100% - 48px), var(--container));
	margin-inline: auto;
}

.section-pad { padding-block: clamp(90px, 11vw, 160px); }

.skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 1000;
	transform: translateY(-160%);
	background: var(--surface);
	padding: 10px 16px;
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
}

.skip-link:focus { transform: translateY(0); }

.page-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	z-index: 110;
	pointer-events: none;
}

.page-progress span {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, var(--coral), #ffad74);
	transform: scaleX(0);
	transform-origin: left center;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 26px;
	color: var(--coral-dark);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.eyebrow > span {
	width: 30px;
	height: 2px;
	background: currentColor;
}

.eyebrow.light { color: #ffad9b; }

.button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 54px;
	padding: 14px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: .93rem;
	font-weight: 650;
	line-height: 1.2;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s ease;
	overflow: hidden;
}

.button::after {
	content: "";
	position: absolute;
	top: -50%;
	bottom: -50%;
	left: -65%;
	width: 38%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
	transform: skewX(-18deg);
	transition: left .7s var(--ease);
	pointer-events: none;
}

.button:hover { transform: translateY(-2px); }
.button:hover::after { left: 125%; }

.button svg { transition: transform .3s var(--ease); }
.button:hover svg { transform: translateX(4px); }

.button-primary {
	background: var(--navy);
	color: var(--paper);
	box-shadow: 0 14px 36px rgba(19, 46, 63, .22);
}

html[data-theme="dark"] .button-primary { background: var(--coral); color: #122b3a; }

.button-primary:hover { box-shadow: 0 18px 42px rgba(19, 46, 63, .3); }

.button-coral { background: var(--coral); color: #122b3a; }
.button-coral:hover { background: #ff8d75; }

.button-small { min-height: 42px; padding: 10px 18px; font-size: .82rem; }

.icon-control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 40px;
	height: 40px;
	margin: 0;
	padding: 0 10px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--surface);
	color: var(--ink);
	cursor: pointer;
	list-style: none;
}

.icon-control::-webkit-details-marker { display: none; }
.icon-control svg { width: 17px; height: 17px; }
.icon-control span { font-size: .72rem; font-weight: 750; }

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: var(--header-height);
	border-bottom: 1px solid transparent;
	transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, height .3s var(--ease), opacity .65s ease, translate .8s var(--ease);
}

html.js .site-header { opacity: 0; translate: 0 -18px; }
html.js.page-ready .site-header { opacity: 1; translate: none; }

.site-header.scrolled {
	height: 68px;
	background: color-mix(in srgb, var(--paper) 88%, transparent);
	border-color: var(--line);
	box-shadow: 0 8px 28px rgba(15, 38, 47, .06);
	backdrop-filter: blur(18px) saturate(140%);
}

.header-inner { height: 100%; display: flex; align-items: center; gap: 30px; }

.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand img { width: 42px; height: 42px; border-radius: 13px; filter: drop-shadow(0 7px 12px rgba(13, 38, 53, .16)); transition: filter .3s ease, transform .3s var(--ease); }
.brand:hover img { filter: drop-shadow(0 9px 15px rgba(13, 38, 53, .22)); transform: translateY(-1px); }

.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name strong { color: var(--ink); font-size: .91rem; letter-spacing: -.025em; }
.brand-name small { margin-top: 5px; color: var(--ink-soft); font-size: .66rem; font-weight: 650; letter-spacing: .15em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 34px); margin-left: auto; }
.desktop-nav a { position: relative; color: var(--ink-soft); font-size: .84rem; font-weight: 620; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--coral); transition: right .3s var(--ease); }
.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { right: 0; }
.desktop-nav a.is-active { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 8px; }

.language-picker { position: relative; }
.language-menu {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	display: grid;
	min-width: 190px;
	padding: 8px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--surface);
	box-shadow: var(--shadow-sm);
}

.language-menu a { padding: 9px 11px; border-radius: 10px; color: var(--ink-soft); font-size: .84rem; }
.language-menu a:hover, .language-menu a[aria-current="page"] { background: var(--surface-soft); color: var(--ink); }

.theme-toggle { position: relative; }
.theme-icon { position: absolute; transition: opacity .25s, transform .35s var(--ease); }
.theme-icon-moon { opacity: 0; transform: rotate(-30deg) scale(.5); }
html[data-theme="dark"] .theme-icon-sun { opacity: 0; transform: rotate(30deg) scale(.5); }
html[data-theme="dark"] .theme-icon-moon { opacity: 1; transform: rotate(0) scale(1); }

.menu-toggle { display: none; }
.mobile-nav {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 1;
	height: calc(100vh - var(--header-height));
	height: calc(100dvh - var(--header-height));
	padding: 30px 24px max(30px, env(safe-area-inset-bottom));
	border-top: 1px solid var(--line);
	background-color: var(--paper);
	box-shadow: 0 24px 60px rgba(15, 38, 47, .12);
	overflow-y: auto;
	overscroll-behavior: contain;
	isolation: isolate;
}
.site-header.scrolled .mobile-nav {
	height: calc(100vh - 68px);
	height: calc(100dvh - 68px);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a { display: block; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 1.4rem; font-weight: 600; }
.mobile-nav a.is-active { color: var(--coral-dark); }
body.menu-open .site-header {
	background-color: var(--paper);
	border-color: var(--line);
}

.scroll-scene {
	--scene-progress: 0;
	--scene-offset: 0;
}

.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 100svh;
	padding-top: calc(var(--header-height) + 70px);
	overflow: hidden;
}

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .91fr 1.09fr; align-items: center; gap: clamp(45px, 6vw, 90px); }

.hero-copy h1 {
	max-width: 720px;
	margin-bottom: 30px;
	font-size: clamp(4rem, 7.2vw, 7.25rem);
	font-weight: 610;
	letter-spacing: -.07em;
}

.hero-text { max-width: 630px; margin-bottom: 36px; color: var(--ink-soft); font-size: clamp(1.06rem, 1.5vw, 1.25rem); line-height: 1.68; }

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }

.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: .9rem; font-weight: 650; }
.text-link span { color: var(--coral-dark); font-size: 1.25rem; transition: transform .3s var(--ease); }
.text-link:hover span { transform: translate(3px, 3px); }

.micro-note { display: flex; align-items: center; gap: 8px; margin: 23px 0 0; color: var(--ink-faint); font-size: .75rem; }
.micro-note svg { width: 16px; height: 16px; color: var(--success); }

.hero-copy, .hero-visual { will-change: transform; }
.hero-copy { transform: translate3d(0, calc(var(--scene-offset) * -28px), 0); transition: transform .18s linear; }
.hero-visual { position: relative; transform: translate3d(0, calc(var(--scene-offset) * 38px), 0); transition: transform .18s linear; }
.image-frame { position: relative; width: 100%; min-height: min(72vh, 730px); border-radius: 34px 34px 130px 34px; background: var(--surface-deep); box-shadow: var(--shadow-lg); overflow: hidden; }
.image-frame picture, .image-frame img { width: 100%; height: 100%; position: absolute; inset: 0; }
.image-frame img { object-fit: cover; object-position: 58% center; transform: scale(1.055) translate3d(0, calc(var(--scene-offset) * -12px), 0); transition: transform .18s linear; }
html.js .image-frame::before { content: ""; position: absolute; z-index: 3; inset: 0; background: linear-gradient(135deg, var(--surface-deep), var(--paper)); transform: scaleX(1); transform-origin: right center; transition: transform 1.15s .18s var(--ease); pointer-events: none; }
html.js .hero-visual.is-visible .image-frame::before { transform: scaleX(0); }
.image-frame::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(9, 31, 42, .22)); pointer-events: none; }

.hero-status-card {
	position: absolute;
	z-index: 2;
	left: 24px;
	bottom: 44px;
	display: flex;
	align-items: center;
	gap: 15px;
	min-width: 300px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, .5);
	border-radius: 20px;
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 20px 50px rgba(15, 36, 46, .18);
	color: #142e3c;
	backdrop-filter: blur(12px);
	transform: translate3d(0, calc(var(--scene-offset) * -18px), 0);
	transition: transform .18s linear;
}

.status-ring { display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 auto; border: 5px solid #d6eee6; border-top-color: var(--success); border-radius: 50%; transform: rotate(25deg); }
.status-ring span { transform: rotate(-25deg); color: var(--success); font-weight: 800; }
.hero-status-card div:last-child { display: flex; flex-direction: column; }
.hero-status-card small { color: #65777e; font-size: .67rem; }
.hero-status-card strong { font-size: .95rem; }
.hero-status-card p { margin: 2px 0 0; color: #65777e; font-size: .64rem; }

.hero-glow { position: absolute; border-radius: 50%; filter: blur(8px); pointer-events: none; }
.hero-glow-one { top: 10%; left: -10%; width: 42vw; height: 42vw; background: radial-gradient(circle, rgba(255, 184, 153, .24), transparent 70%); }
.hero-glow-two { right: -14%; bottom: -12%; width: 40vw; height: 40vw; background: radial-gradient(circle, rgba(132, 205, 183, .23), transparent 70%); }

.proof { position: relative; z-index: 3; padding-bottom: clamp(80px, 8vw, 120px); }
.proof-kicker { margin-bottom: 24px; color: var(--ink-faint); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-item { display: flex; flex-direction: column; gap: 4px; padding: 26px clamp(16px, 2.2vw, 30px); border-right: 1px solid var(--line); }
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border: 0; }
.proof-item strong { color: var(--ink); font-size: 1.45rem; line-height: 1.2; letter-spacing: -.04em; }
.proof-item span { color: var(--ink-soft); font-size: .78rem; }

.section-heading { max-width: 920px; margin-bottom: clamp(48px, 7vw, 90px); }
.section-heading h2 { margin-bottom: 26px; }
.section-heading > p:last-child { max-width: 680px; margin-bottom: 0; color: var(--ink-soft); font-size: 1.07rem; }

.split-heading { display: grid; grid-template-columns: 1.45fr .55fr; align-items: end; gap: 60px; max-width: none; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p:last-child { padding-bottom: 8px; }

.payroll { background: var(--surface); }
.payroll-stage { display: grid; grid-template-columns: .82fr 1.18fr; align-items: stretch; gap: clamp(28px, 4.5vw, 70px); }
.pain-list { display: grid; }
.pain-card { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 28px 0; border-top: 1px solid var(--line); }
.pain-card:last-child { border-bottom: 1px solid var(--line); }
.pain-card > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--surface-soft); color: var(--coral-dark); font-size: .69rem; font-weight: 750; }
.pain-card h3 { margin: 3px 0 9px; font-size: 1.17rem; }
.pain-card p { margin: 0; color: var(--ink-soft); font-size: .88rem; }

.payroll-dashboard {
	position: relative;
	min-height: 555px;
	padding: clamp(26px, 4vw, 48px);
	border-radius: var(--radius-lg);
	background: var(--navy);
	color: var(--paper);
	box-shadow: 0 36px 80px rgba(15, 37, 50, .22);
	overflow: hidden;
	transform: translate3d(0, calc(var(--scene-offset) * -16px), 0);
	transition: transform .18s linear, opacity .85s var(--ease), translate .95s var(--ease), scale .95s var(--ease), filter .9s ease;
}

html[data-theme="dark"] .payroll-dashboard { background: #eef4ef; color: #122b3a; }
.payroll-dashboard::before { content: ""; position: absolute; top: -40%; right: -25%; width: 70%; height: 80%; border-radius: 50%; background: radial-gradient(circle, rgba(255, 121, 95, .2), transparent 70%); }
.dashboard-top { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 46px; }
.dashboard-top small { color: color-mix(in srgb, currentColor 60%, transparent); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.dashboard-top h3 { margin: 7px 0 0; color: inherit; font-size: 1.8rem; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; border: 1px solid color-mix(in srgb, currentColor 16%, transparent); border-radius: 999px; font-size: .69rem; }
.status-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(139, 213, 189, .13); }
.progress-meta { position: relative; display: flex; justify-content: space-between; margin-bottom: 10px; font-size: .75rem; }
.progress-track { position: relative; height: 6px; margin-bottom: 34px; border-radius: 99px; background: color-mix(in srgb, currentColor 13%, transparent); overflow: hidden; }
.progress-track span { display: block; width: 82%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--mint), var(--coral)); }
.dashboard-steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.dashboard-step { min-height: 100px; padding: 14px; border: 1px solid color-mix(in srgb, currentColor 10%, transparent); border-radius: 14px; background: color-mix(in srgb, currentColor 5%, transparent); }
.dashboard-step > span { display: grid; place-items: center; width: 26px; height: 26px; margin-bottom: 16px; border: 1px solid color-mix(in srgb, currentColor 18%, transparent); border-radius: 50%; color: color-mix(in srgb, currentColor 55%, transparent); font-size: .68rem; }
.dashboard-step.complete > span { border-color: transparent; background: var(--mint); color: #102e31; }
.dashboard-step p { margin: 0; color: color-mix(in srgb, currentColor 75%, transparent); font-size: .67rem; line-height: 1.4; }
.exception-note { position: relative; display: flex; align-items: center; gap: 10px; margin-top: 20px; padding: 12px 15px; border-radius: 12px; background: color-mix(in srgb, var(--coral) 15%, transparent); color: color-mix(in srgb, currentColor 82%, transparent); font-size: .71rem; }
.exception-note span { display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; background: var(--coral); color: #142e3c; font-weight: 800; }
.dashboard-chart { position: absolute; left: 48px; right: 48px; bottom: 0; display: flex; align-items: end; gap: 4%; height: 78px; opacity: .11; }
.dashboard-chart span { width: 11%; border-radius: 5px 5px 0 0; background: currentColor; }
.dashboard-chart span:nth-child(1) { height: 48%; }
.dashboard-chart span:nth-child(2) { height: 66%; }
.dashboard-chart span:nth-child(3) { height: 54%; }
.dashboard-chart span:nth-child(4) { height: 78%; }
.dashboard-chart span:nth-child(5) { height: 62%; }
.dashboard-chart span:nth-child(6) { height: 88%; }
.dashboard-chart span:nth-child(7) { height: 82%; }

html.js .payroll-dashboard .progress-track span { transform: scaleX(0); transform-origin: left center; transition: transform 1.2s .32s var(--ease); }
html.js .payroll-dashboard.is-visible .progress-track span { transform: scaleX(1); }
html.js .payroll-dashboard .dashboard-step { opacity: 0; transform: translateY(18px) scale(.96); transition: opacity .55s var(--ease), transform .7s var(--ease); }
html.js .payroll-dashboard.is-visible .dashboard-step { opacity: 1; transform: translateY(0) scale(1); }
html.js .payroll-dashboard.is-visible .dashboard-step:nth-child(1) { transition-delay: .42s; }
html.js .payroll-dashboard.is-visible .dashboard-step:nth-child(2) { transition-delay: .52s; }
html.js .payroll-dashboard.is-visible .dashboard-step:nth-child(3) { transition-delay: .62s; }
html.js .payroll-dashboard .exception-note { opacity: 0; transform: translateY(12px); transition: opacity .55s .72s ease, transform .7s .72s var(--ease); }
html.js .payroll-dashboard.is-visible .exception-note { opacity: 1; transform: translateY(0); }
html.js .payroll-dashboard .dashboard-chart span { transform: scaleY(0); transform-origin: bottom center; transition: transform .8s var(--ease); }
html.js .payroll-dashboard.is-visible .dashboard-chart span { transform: scaleY(1); }
html.js .payroll-dashboard.is-visible .dashboard-chart span:nth-child(1) { transition-delay: .35s; }
html.js .payroll-dashboard.is-visible .dashboard-chart span:nth-child(2) { transition-delay: .41s; }
html.js .payroll-dashboard.is-visible .dashboard-chart span:nth-child(3) { transition-delay: .47s; }
html.js .payroll-dashboard.is-visible .dashboard-chart span:nth-child(4) { transition-delay: .53s; }
html.js .payroll-dashboard.is-visible .dashboard-chart span:nth-child(5) { transition-delay: .59s; }
html.js .payroll-dashboard.is-visible .dashboard-chart span:nth-child(6) { transition-delay: .65s; }
html.js .payroll-dashboard.is-visible .dashboard-chart span:nth-child(7) { transition-delay: .71s; }

.deliverables { display: grid; grid-template-columns: .6fr 1.4fr; gap: 50px; margin-top: 70px; padding-top: 50px; border-top: 1px solid var(--line); }
.deliverables h3 { max-width: 260px; margin: 0; font-size: 1.6rem; }
.deliverables-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px 22px; }
.deliverables-list span { display: flex; align-items: center; gap: 8px; color: var(--ink-soft); font-size: .78rem; }
.deliverables-list svg { width: 17px; height: 17px; flex: 0 0 auto; color: var(--success); }

.services { position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card { --pointer-x: 50%; --pointer-y: 50%; position: relative; min-height: 285px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: color-mix(in srgb, var(--surface) 72%, transparent); overflow: hidden; transition: transform .4s var(--ease), border-color .3s, box-shadow .4s var(--ease), background .3s, opacity .85s var(--ease), translate .95s var(--ease), scale .95s var(--ease), filter .9s ease; }
.service-card::before { content: ""; position: absolute; z-index: 0; inset: 0; background: radial-gradient(260px circle at var(--pointer-x) var(--pointer-y), color-mix(in srgb, var(--coral) 14%, transparent), transparent 68%); opacity: 0; transition: opacity .35s ease; pointer-events: none; }
.service-card::after { content: ""; position: absolute; width: 160px; height: 160px; right: -80px; bottom: -80px; border-radius: 50%; background: var(--coral); opacity: 0; transform: scale(.3); transition: opacity .4s, transform .5s var(--ease); }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { transform: translateY(-8px); border-color: color-mix(in srgb, var(--coral) 45%, var(--line)); background: var(--surface); box-shadow: var(--shadow-sm); }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: .08; transform: scale(1); }
.service-icon { display: grid; place-items: center; width: 49px; height: 49px; margin-bottom: 46px; border-radius: 14px; background: var(--surface-soft); color: var(--coral-dark); transition: transform .4s var(--ease), background .3s; }
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.05); background: color-mix(in srgb, var(--coral) 17%, var(--surface)); }
.service-icon svg { width: 23px; height: 23px; }
.service-card h3 { margin-bottom: 12px; font-size: 1.18rem; }
.service-card p { margin: 0; color: var(--ink-soft); font-size: .82rem; line-height: 1.62; }
.card-arrow { position: absolute; top: 30px; right: 28px; color: var(--ink-faint); font-size: 1.12rem; transition: transform .4s var(--ease), color .3s; }
.service-card:hover .card-arrow { color: var(--coral-dark); transform: translate(3px, -3px); }

.trial-section { padding-top: 30px; }
.trial-card { position: relative; display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 60px; min-height: 540px; padding: clamp(45px, 7vw, 90px); border-radius: var(--radius-lg); background: #102d3e; color: #f5f6f2; box-shadow: 0 40px 100px rgba(15, 41, 56, .18); overflow: hidden; }
.trial-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 120%, rgba(255, 121, 95, .18), transparent 38%), radial-gradient(circle at 95% 0, rgba(139, 213, 189, .14), transparent 35%); }
.trial-copy, .trial-checks { position: relative; z-index: 2; }
.trial-copy h2 { max-width: 760px; margin-bottom: 28px; color: #f5f6f2; font-size: clamp(2.8rem, 5vw, 5.7rem); }
.trial-copy > p:not(.eyebrow) { max-width: 630px; margin-bottom: 34px; color: #b8c7c9; font-size: 1.04rem; }
.trial-checks { display: grid; gap: 14px; padding-bottom: 8px; }
.trial-checks div { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); color: #d7e0dd; font-size: .83rem; }
.trial-checks span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(139, 213, 189, .15); color: var(--mint); font-weight: 750; }
.trial-orbit { position: absolute; top: -170px; right: -130px; width: 530px; height: 530px; border: 1px solid rgba(255, 255, 255, .07); border-radius: 50%; transform: rotate(calc(var(--scene-progress) * 70deg)); transition: transform .18s linear; }
.trial-orbit::before, .trial-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255, 255, 255, .07); border-radius: 50%; }
.trial-orbit::before { inset: 80px; }
.trial-orbit::after { inset: 160px; }
.trial-orbit span { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 20px rgba(255, 121, 95, .8); }
.trial-orbit span:nth-child(1) { left: 72px; top: 85px; }
.trial-orbit span:nth-child(2) { right: 47px; bottom: 130px; background: var(--mint); }
.trial-orbit span:nth-child(3) { left: 241px; bottom: -5px; width: 7px; height: 7px; }

html.js .trial-card .trial-checks div { opacity: 0; translate: 22px 0; transition: opacity .55s ease, translate .75s var(--ease); }
html.js .trial-card.is-visible .trial-checks div { opacity: 1; translate: 0 0; }
html.js .trial-card.is-visible .trial-checks div:nth-child(1) { transition-delay: .34s; }
html.js .trial-card.is-visible .trial-checks div:nth-child(2) { transition-delay: .45s; }
html.js .trial-card.is-visible .trial-checks div:nth-child(3) { transition-delay: .56s; }

.platform { overflow: hidden; }
.platform-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: clamp(60px, 8vw, 120px); }
.platform-copy h2 { margin-bottom: 28px; }
.platform-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.04rem; }
.soft-pill { display: inline-flex; align-items: center; gap: 9px; margin-top: 16px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-size: .72rem; font-weight: 620; }
.soft-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px color-mix(in srgb, var(--coral) 14%, transparent); }

.product-scene { position: relative; min-height: 560px; perspective: 1400px; }
.product-scene::before { content: ""; position: absolute; inset: 5% -15% -5% 5%; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--coral) 15%, transparent), transparent 67%); filter: blur(20px); }
.product-window { position: absolute; top: 40px; right: 0; width: 92%; height: 440px; border: 1px solid var(--line); border-radius: 25px; background: var(--surface); box-shadow: var(--shadow-lg); overflow: hidden; transform: translate3d(0, calc(var(--scene-offset) * -22px), 0) rotateY(calc(-7deg + var(--scene-offset) * 1.5deg)) rotateX(2deg); transition: transform .18s linear; }
.window-bar { display: flex; align-items: center; gap: 6px; height: 45px; padding: 0 17px; border-bottom: 1px solid var(--line); }
.window-bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--surface-deep); }
.window-bar i:first-child { background: var(--coral); }
.window-bar span { margin-left: auto; color: var(--ink-faint); font-size: .63rem; font-weight: 800; letter-spacing: .13em; }
.product-body { display: grid; grid-template-columns: 72px 1fr; height: calc(100% - 45px); }
.product-sidebar { display: flex; flex-direction: column; align-items: center; gap: 22px; padding-top: 26px; border-right: 1px solid var(--line); background: color-mix(in srgb, var(--surface-soft) 65%, transparent); }
.product-sidebar b, .product-sidebar i { width: 19px; height: 6px; border-radius: 99px; background: var(--surface-deep); }
.product-sidebar b { width: 30px; height: 30px; margin-bottom: 14px; border-radius: 9px; background: var(--navy); }
.product-main { padding: 30px; }
.product-main > p { margin-bottom: 24px; color: var(--ink); font-size: 1.18rem; font-weight: 650; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.metric-row > div { min-width: 0; padding: 17px; border: 1px solid var(--line); border-radius: 14px; }
.metric-row span { display: block; overflow: hidden; color: var(--ink-faint); font-size: .6rem; text-overflow: ellipsis; white-space: nowrap; }
.metric-row strong { display: block; margin-top: 8px; color: var(--ink); font-size: 1.35rem; }
.product-graph { height: 160px; margin-top: 22px; padding: 20px; border-radius: 15px; background: var(--surface-soft); }
.product-graph svg { width: 100%; height: 100%; overflow: visible; }
.product-graph .area { fill: url(#area); stroke: none; }
.product-graph .line { fill: none; stroke: var(--coral); stroke-width: 3; vector-effect: non-scaling-stroke; }

.phone-mock { position: absolute; z-index: 3; left: 0; bottom: 0; width: 188px; height: 380px; padding: 42px 18px 20px; border: 7px solid #183442; border-radius: 32px; background: #f7f7f2; box-shadow: 0 30px 60px rgba(15, 34, 43, .25); color: #122b3a; transform: translate3d(0, calc(var(--scene-offset) * 28px), 0) rotate(calc(-5deg + var(--scene-offset) * -1deg)); transition: transform .18s linear; }
.phone-notch { position: absolute; top: 7px; left: 50%; width: 66px; height: 17px; border-radius: 20px; background: #183442; transform: translateX(-50%); }
.phone-mock > span { font-size: .6rem; font-weight: 800; letter-spacing: .13em; }
.phone-score { position: relative; display: grid; place-items: center; width: 116px; height: 116px; margin: 35px auto 24px; }
.phone-score i { position: absolute; inset: 0; border: 9px solid #dce7e2; border-top-color: var(--coral); border-right-color: var(--coral); border-radius: 50%; transform: rotate(25deg); }
.phone-score strong { font-size: 1.35rem; }
.phone-mock > b { display: block; height: 10px; margin: 13px 0; border-radius: 10px; background: #e0e8e4; }
.phone-mock > b:nth-last-child(2) { width: 72%; }
.phone-mock > b:last-child { width: 48%; background: #ffd4cb; }

html.js .product-scene .metric-row > div { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .7s var(--ease); }
html.js .product-scene.is-visible .metric-row > div { opacity: 1; transform: translateY(0); }
html.js .product-scene.is-visible .metric-row > div:nth-child(1) { transition-delay: .32s; }
html.js .product-scene.is-visible .metric-row > div:nth-child(2) { transition-delay: .42s; }
html.js .product-scene.is-visible .metric-row > div:nth-child(3) { transition-delay: .52s; }
html.js .product-scene .product-graph .line { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.35s .58s var(--ease); }
html.js .product-scene.is-visible .product-graph .line { stroke-dashoffset: 0; }
html.js .product-scene .product-graph .area { opacity: 0; transition: opacity .8s .9s ease; }
html.js .product-scene.is-visible .product-graph .area { opacity: 1; }

.process { background: var(--surface); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-step { padding-right: clamp(25px, 3vw, 50px); }
.process-step > span { display: block; margin-bottom: 24px; color: var(--coral-dark); font-size: .7rem; font-weight: 750; letter-spacing: .1em; }
.step-line { position: relative; height: 1px; margin-bottom: 30px; background: var(--line); }
.step-line::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--coral), var(--mint)); transform: scaleX(0); transform-origin: left center; transition: transform .9s .18s var(--ease); }
.process-step.is-visible .step-line::after { transform: scaleX(1); }
.step-line i { position: absolute; top: 50%; left: 0; width: 11px; height: 11px; border: 2px solid var(--coral); border-radius: 50%; background: var(--surface); transform: translateY(-50%); }
.process-step h3 { margin-bottom: 14px; font-size: 1.25rem; }
.process-step p { margin: 0; color: var(--ink-soft); font-size: .84rem; }

.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(60px, 9vw, 140px); }
.about-image { position: relative; }
.about-image picture { aspect-ratio: .77; border-radius: 30px 110px 30px 30px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.07) translate3d(0, calc(var(--scene-offset) * -12px), 0); transition: transform .18s linear; }
.founded-badge { position: absolute; right: -46px; bottom: 45px; display: flex; align-items: center; gap: 12px; padding: 18px 22px; border: 1px solid var(--line); border-radius: 18px; background: color-mix(in srgb, var(--surface) 92%, transparent); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.founded-badge strong { color: var(--coral-dark); font-size: 1.6rem; letter-spacing: -.05em; }
.founded-badge span { color: var(--ink-soft); font-size: .64rem; font-weight: 650; line-height: 1.3; text-transform: uppercase; }
.about-copy h2 { margin-bottom: 32px; }
.about-copy > p:not(.eyebrow) { max-width: 670px; color: var(--ink-soft); font-size: 1rem; }
.about-copy blockquote { margin: 40px 0 0; padding: 23px 0 23px 28px; border-left: 3px solid var(--coral); color: var(--ink); font-size: 1.25rem; font-weight: 580; line-height: 1.45; letter-spacing: -.02em; }

.faq { background: var(--surface-soft); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: clamp(60px, 10vw, 160px); }
.faq-heading { position: sticky; top: 120px; }
.faq-heading h2 { font-size: clamp(2.5rem, 4vw, 4.6rem); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 25px 0; color: var(--ink); font-weight: 620; line-height: 1.35; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { position: relative; width: 18px; height: 18px; flex: 0 0 auto; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; top: 8px; left: 1px; width: 16px; height: 2px; background: var(--coral-dark); transition: transform .3s var(--ease); }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details p { max-width: 670px; margin: -6px 50px 25px 0; color: var(--ink-soft); font-size: .9rem; }

.contact { position: relative; background: #0f2938; color: #eef4f0; overflow: hidden; }
.contact::before { content: ""; position: absolute; left: -15%; bottom: -60%; width: 50vw; height: 50vw; border-radius: 50%; background: radial-gradient(circle, rgba(255, 121, 95, .18), transparent 67%); }
.contact-grid { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: clamp(60px, 9vw, 130px); }
.contact-copy { position: sticky; top: 125px; }
.contact-copy h2 { max-width: 600px; margin-bottom: 28px; color: #f4f7f3; }
.contact-intro { max-width: 570px; margin-bottom: 48px; color: #afc1c3; font-size: 1.02rem; }
.contact-methods { display: grid; gap: 18px; }
.contact-methods > a, .contact-methods > div { display: flex; align-items: flex-start; gap: 15px; }
.contact-methods > a > span, .contact-methods > div > span { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 auto; border: 1px solid rgba(255, 255, 255, .13); border-radius: 13px; color: #ff9c86; }
.contact-methods svg { width: 19px; height: 19px; }
.contact-methods small { display: block; margin-bottom: 4px; color: #829ba2; font-size: .67rem; font-weight: 680; letter-spacing: .08em; text-transform: uppercase; }
.contact-methods strong, .contact-methods address { color: #eef4f0; font-size: .87rem; font-style: normal; font-weight: 560; line-height: 1.65; }
.contact-methods a:hover strong { color: #ff9c86; }

.contact-form-card { padding: clamp(26px, 4vw, 48px); border-radius: 30px; background: #f8f8f3; box-shadow: 0 40px 80px rgba(0, 0, 0, .23); color: #122b3a; }
.form-heading { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
.form-heading h3 { margin-bottom: 8px; color: #122b3a; font-size: 1.65rem; }
.form-heading p { margin: 0; color: #60747b; font-size: .78rem; }
.form-lock { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: #e2eee8; color: #277c61; }
.form-lock svg { width: 19px; height: 19px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { position: relative; margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; color: #354d57; font-size: .7rem; font-weight: 680; }
.field input, .field select, .field textarea {
	display: block;
	width: 100%;
	border: 1px solid #d9e0dc;
	border-radius: 11px;
	background: #fff;
	color: #122b3a;
	font-size: .83rem;
	transition: border-color .2s, box-shadow .2s;
}
.field input, .field select { height: 48px; padding: 0 13px; }
.field textarea { min-height: 118px; padding: 12px 13px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #96a3a3; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #f28a72; outline: 0; box-shadow: 0 0 0 4px rgba(255, 121, 95, .11); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d34444; }
.field-error { display: none; margin-top: 5px; color: #b92f2f; font-size: .66rem; }
.field.invalid .field-error { display: block; }
.captcha-field > div { display: grid; grid-template-columns: 1fr 48px; gap: 8px; }
.captcha-field button { display: grid; place-items: center; border: 1px solid #d9e0dc; border-radius: 11px; background: #fff; color: #52666f; cursor: pointer; }
.captcha-field button:hover svg { transform: rotate(80deg); }
.captcha-field button svg { transition: transform .35s var(--ease); }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 2px 0 25px; color: #60747b; font-size: .69rem; line-height: 1.5; cursor: pointer; }
.consent input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: #16384a; }
.consent.invalid { color: #b92f2f; }
.form-footer { display: flex; align-items: center; gap: 18px; }
.form-footer .button { border: 0; cursor: pointer; }
.form-footer .button:disabled { cursor: wait; opacity: .68; }
.form-status { color: #60747b; font-size: .72rem; line-height: 1.4; }
.form-status.success { color: #267558; }
.form-status.error { color: #b92f2f; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { padding: 70px 0 28px; background: #091b24; color: #b3c2c3; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 55px; }
.site-footer .brand-name strong { color: #f1f5f2; }
.site-footer .brand-name small { color: #82999c; }
.footer-brand > p { max-width: 330px; margin: 22px 0 0; color: #82999c; font-size: .82rem; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid h3 { margin-bottom: 12px; color: #f1f5f2; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a, .footer-grid p { margin: 0; color: #91a4a7; font-size: .76rem; }
.footer-grid a:hover { color: #ff9c86; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .09); }
.footer-bottom p { margin: 0; color: #687f84; font-size: .66rem; }

.whatsapp-float { position: fixed; z-index: 90; right: 24px; bottom: 24px; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; box-shadow: 0 14px 32px rgba(11, 67, 37, .27); transition: transform .3s var(--ease), box-shadow .3s; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 18px 38px rgba(11, 67, 37, .35); }
.whatsapp-float svg { width: 29px; height: 29px; stroke-width: 1.7; }
.whatsapp-float > span { position: absolute; inset: -4px; border: 1px solid rgba(37, 211, 102, .5); border-radius: 50%; animation: whatsappPulse 2.5s ease-out infinite; }

html.js .reveal { opacity: 0; translate: 0 46px; scale: .985; filter: blur(5px); }
html.js .reveal[data-delay="1"] { --delay: 1; }
html.js .reveal[data-delay="2"] { --delay: 2; }
html.js .reveal[data-delay="3"] { --delay: 3; }
html.js .reveal.is-visible { animation: revealIn .95s var(--ease) both; animation-delay: calc(var(--delay, 0) * 90ms); }

html.js .hero-copy.reveal { translate: 0 0; scale: 1; filter: none; }
html.js .hero-copy > * { opacity: 0; translate: 0 24px; transition: opacity .7s ease, translate .9s var(--ease); }
html.js .hero-copy.is-visible > * { opacity: 1; translate: 0 0; }
html.js .hero-copy.is-visible > :nth-child(1) { transition-delay: .08s; }
html.js .hero-copy.is-visible > :nth-child(2) { transition-delay: .17s; }
html.js .hero-copy.is-visible > :nth-child(3) { transition-delay: .28s; }
html.js .hero-copy.is-visible > :nth-child(4) { transition-delay: .39s; }
html.js .hero-copy.is-visible > :nth-child(5) { transition-delay: .5s; }

@keyframes revealIn {
	to { opacity: 1; translate: 0 0; scale: 1; filter: blur(0); }
}

@keyframes statusPulse {
	0%, 100% { box-shadow: 0 0 0 5px rgba(139, 213, 189, .13); }
	50% { box-shadow: 0 0 0 9px rgba(139, 213, 189, 0); }
}

.status-pill i { animation: statusPulse 2.4s ease-in-out infinite; }

@keyframes whatsappPulse {
	0% { opacity: .8; transform: scale(.9); }
	70%, 100% { opacity: 0; transform: scale(1.35); }
}

@media (max-width: 1120px) {
	.desktop-nav { display: none; }
	.header-actions { margin-left: auto; }
	.menu-toggle { display: inline-flex; }
	.header-cta { display: none; }
	.hero-grid { grid-template-columns: .95fr 1.05fr; gap: 45px; }
	.hero-copy h1 { font-size: clamp(3.8rem, 7vw, 5.8rem); }
	.services-grid { grid-template-columns: repeat(2, 1fr); }
	.service-card { min-height: 255px; }
	.deliverables-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
	:root { --header-height: 72px; }
	.section-pad { padding-block: 100px; }
	.hero { padding-top: 130px; }
	.hero-grid, .payroll-stage, .platform-grid, .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
	.hero-grid { gap: 60px; }
	.hero-copy { max-width: 720px; }
	.image-frame { min-height: 640px; }
	.hero-status-card { left: 24px; }
	.split-heading { grid-template-columns: 1fr; gap: 25px; }
	.payroll-stage { gap: 55px; }
	.deliverables { grid-template-columns: 1fr; gap: 28px; }
	.deliverables h3 { max-width: 400px; }
	.trial-card { grid-template-columns: 1fr; align-items: start; min-height: auto; }
	.platform-grid { gap: 60px; }
	.platform-copy { max-width: 720px; }
	.product-scene { width: min(100%, 760px); margin-inline: auto; }
	.process-grid { grid-template-columns: repeat(2, 1fr); gap: 55px 0; }
	.about-image { width: min(75%, 570px); }
	.faq-heading, .contact-copy { position: static; }
	.contact-copy { max-width: 700px; }
}

@media (max-width: 680px) {
	:root { --header-height: 68px; }
	.container { width: min(calc(100% - 32px), var(--container)); }
	.section-pad { padding-block: 80px; }
	.brand img { width: 38px; height: 38px; }
	.brand-name strong { font-size: .82rem; }
	.brand-name small { font-size: .58rem; }
	.icon-control { min-width: 38px; height: 38px; }
	.hero { min-height: auto; padding-top: 128px; }
	.hero-copy h1 { margin-bottom: 24px; font-size: clamp(3.15rem, 15vw, 4.8rem); }
	.hero-text { font-size: 1rem; }
	.hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
	.micro-note { align-items: flex-start; }
	.image-frame { min-height: 500px; border-radius: 25px 25px 80px 25px; }
	.image-frame img { object-position: 62% center; }
	.hero-status-card { left: 14px; right: 14px; bottom: 16px; min-width: 0; padding: 14px; }
	.hero-status-card p { white-space: normal; }
	.proof-grid { grid-template-columns: repeat(2, 1fr); }
	.proof-item:nth-child(2) { border-right: 0; }
	.proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
	.proof-item:nth-child(3) { padding-left: 0; }
	.section-heading { margin-bottom: 50px; }
	h2 { font-size: clamp(2.45rem, 11vw, 3.7rem); }
	.payroll-dashboard { min-height: 520px; padding: 25px; border-radius: 26px; }
	.dashboard-steps { grid-template-columns: 1fr; }
	.dashboard-step { display: flex; align-items: center; gap: 12px; min-height: 0; }
	.dashboard-step > span { margin: 0; }
	.dashboard-chart { display: none; }
	.deliverables-list { grid-template-columns: 1fr 1fr; }
	.services-grid { grid-template-columns: 1fr; }
	.service-card { min-height: 235px; }
	.trial-section { padding-top: 0; }
	.trial-card { gap: 40px; padding: 40px 26px; border-radius: 28px; }
	.trial-copy h2 { font-size: clamp(2.4rem, 11vw, 3.7rem); }
	.product-scene { min-height: 420px; }
	.product-window { top: 10px; width: 97%; height: 340px; border-radius: 18px; transform: rotateY(-4deg); }
	.product-body { grid-template-columns: 48px 1fr; }
	.product-sidebar { gap: 15px; }
	.product-main { padding: 20px 15px; }
	.metric-row > div { padding: 12px 9px; }
	.metric-row span { font-size: .5rem; }
	.metric-row strong { font-size: 1rem; }
	.product-graph { height: 125px; }
	.phone-mock { width: 138px; height: 285px; padding: 38px 12px 15px; border-width: 5px; border-radius: 25px; }
	.phone-notch { width: 52px; height: 13px; }
	.phone-score { width: 80px; height: 80px; margin: 23px auto 17px; }
	.phone-score i { border-width: 6px; }
	.phone-score strong { font-size: 1rem; }
	.process-grid { grid-template-columns: 1fr; gap: 42px; }
	.process-step { padding-right: 0; }
	.about-image { width: calc(100% - 20px); }
	.about-image picture { border-radius: 24px 75px 24px 24px; }
	.founded-badge { right: -20px; bottom: 26px; }
	.faq-grid { gap: 35px; }
	.contact-grid { gap: 50px; }
	.contact-form-card { margin-inline: -6px; border-radius: 24px; }
	.form-row { grid-template-columns: 1fr; gap: 0; }
	.form-footer { align-items: stretch; flex-direction: column; }
	.form-footer .button { width: 100%; }
	.footer-grid { grid-template-columns: 1fr; gap: 38px; }
	.footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
	.whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
	html.js .site-header { opacity: 1; translate: none; }
	html.js .reveal, html.js .hero-copy > *, html.js .trial-card .trial-checks div { opacity: 1; translate: 0 0; scale: 1; filter: none; }
	.image-frame::before { display: none; }
	html.js .payroll-dashboard .progress-track span, html.js .payroll-dashboard .dashboard-chart span { transform: none; }
	html.js .payroll-dashboard .dashboard-step, html.js .payroll-dashboard .exception-note, html.js .product-scene .metric-row > div { opacity: 1; transform: none; }
	html.js .product-scene .product-graph .line { stroke-dashoffset: 0; }
	html.js .product-scene .product-graph .area { opacity: 1; }
	.step-line::after { transform: scaleX(1); }
}
