/**
 * SimplHRM theme — main stylesheet
 */

:root {
	--sh-primary: #0065ff;
	--sh-primary-dark: #0052d4;
	--sh-text: #1e293b;
	--sh-text-muted: #64748b;
	--sh-bg: #ffffff;
	--sh-bg-muted: #f8fafc;
	--sh-border: #e2e8f0;
	--sh-radius: 12px;
	--sh-radius-sm: 8px;
	--sh-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
	--sh-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
	--sh-container: 1140px;
	--sh-header-h: 72px;
	--sh-font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body.simplhrm-theme {
	margin: 0;
	color: var(--sh-text);
	font-family: var(--sh-font);
	font-size: 1rem;
	line-height: 1.6;
	background: var(--sh-bg);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--sh-primary);
}

a:hover,
a:focus-visible {
	color: var(--sh-primary-dark);
}

.sh-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sh-skip-link {
	position: absolute;
	top: -100px;
	left: 1rem;
	z-index: 10000;
	padding: 0.75rem 1rem;
	border-radius: var(--sh-radius-sm);
	background: var(--sh-primary);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

.sh-skip-link:focus {
	top: 1rem;
}

.sh-container {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.sh-container--narrow {
	max-width: 720px;
}

/* Site header */
.sh-site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid #e5e7eb;
}

.admin-bar .sh-site-header {
	top: 32px;
}

.sh-site-header.is-scrolled {
	box-shadow: var(--sh-shadow-sm);
}

.sh-header-inner {
	position: relative;
	min-height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.sh-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	min-width: 160px;
	text-decoration: none;
	font-weight: 800;
	color: #0f172a;
}

.sh-logo:hover,
.sh-logo:focus-visible {
	color: #0f172a;
}

.sh-logo img,
.sh-logo-img {
	max-height: 46px;
	width: auto;
	display: block;
}

.sh-logo-mark {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0065ff, #0e4bdb);
	color: #fff;
	font-weight: 800;
	flex-shrink: 0;
}

.sh-logo-text {
	font-size: 21px;
	letter-spacing: -0.03em;
}

.sh-primary-nav {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	min-width: 0;
}

.sh-menu,
.sh-primary-nav .sh-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sh-menu a {
	color: #1e293b;
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
}

.sh-menu a:hover,
.sh-menu a:focus-visible,
.sh-menu .current-menu-item > a,
.sh-menu .current_page_item > a {
	color: #0065ff;
}

.sh-header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 0 0 auto;
}

.sh-login-link {
	color: #1e293b;
	text-decoration: none;
	font-weight: 700;
	font-size: 15px;
}

.sh-login-link:hover,
.sh-login-link:focus-visible {
	color: #0065ff;
}

.sh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: #0065ff;
	color: #fff;
	text-decoration: none;
	font-weight: 800;
	box-shadow: 0 12px 28px rgba(0, 101, 255, 0.22);
	border: 0;
}

.sh-btn:hover,
.sh-btn:focus-visible {
	background: #0052d4;
	color: #fff;
}

.sh-btn-small {
	min-height: 42px;
	padding: 0 18px;
	font-size: 14px;
}

.sh-mobile-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 12px;
	background: #0065ff;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	flex-shrink: 0;
}

.sh-mobile-toggle span {
	width: 20px;
	height: 2px;
	background: #fff;
	display: block;
	border-radius: 2px;
}

/* Buttons */
.sh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.75rem 1.35rem;
	border: 2px solid transparent;
	border-radius: var(--sh-radius-sm);
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.sh-btn:focus-visible {
	outline: 2px solid var(--sh-primary);
	outline-offset: 2px;
}

.sh-btn--sm {
	min-height: 40px;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

.sh-btn--primary {
	background: var(--sh-primary);
	color: #fff;
}

.sh-btn--primary:hover {
	background: var(--sh-primary-dark);
	color: #fff;
}

.sh-btn--secondary {
	border-color: var(--sh-border);
	background: #fff;
	color: var(--sh-text);
}

.sh-btn--secondary:hover {
	border-color: var(--sh-primary);
	color: var(--sh-primary);
}

.sh-btn--outline {
	border-color: rgba(255, 255, 255, 0.5);
	background: transparent;
	color: #fff;
}

.sh-btn--light-outline {
	border-color: rgba(255, 255, 255, 0.65);
	color: #fff;
}

.sh-btn--light-outline:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.sh-header-actions .sh-btn.sh-btn-small {
	min-height: 42px;
	padding: 0 18px;
	font-size: 14px;
	font-weight: 800;
	border: 0;
	background: #0065ff;
	color: #fff;
	box-shadow: 0 12px 28px rgba(0, 101, 255, 0.22);
}

.sh-header-actions .sh-btn.sh-btn-small:hover,
.sh-header-actions .sh-btn.sh-btn-small:focus-visible {
	background: #0052d4;
	color: #fff;
}

/* Hero */
.sh-hero {
	padding: clamp(2.5rem, 6vw, 4.5rem) 0;
	background: linear-gradient(165deg, #0b1f3a 0%, #0e4bdb 50%, #0065ff 100%);
	color: #fff;
}

.sh-hero__grid {
	display: grid;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 992px) {
	.sh-hero__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.sh-badge {
	display: inline-block;
	margin: 0 0 1rem;
	padding: 0.35rem 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.sh-hero__title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 800;
	line-height: 1.12;
}

.sh-hero__lead {
	margin: 0 0 1.5rem;
	max-width: 36rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1rem, 1.6vw, 1.125rem);
}

.sh-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.sh-hero__trust {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	font-weight: 700;
}

.sh-hero__branded-card {
	padding: 1rem 1.15rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--sh-radius);
	background: rgba(255, 255, 255, 0.08);
}

.sh-hero__branded-card p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
}

.sh-hero__branded-example {
	margin-top: 0.35rem !important;
	color: rgba(255, 255, 255, 0.65) !important;
	font-style: italic;
}

/* Dashboard mockup */
.sh-mockup {
	border: 1px solid var(--sh-border);
	border-radius: var(--sh-radius);
	background: #fff;
	box-shadow: var(--sh-shadow);
	overflow: hidden;
	color: var(--sh-text);
}

.sh-mockup__chrome {
	display: flex;
	gap: 0.4rem;
	padding: 0.65rem 0.85rem;
	background: var(--sh-bg-muted);
}

.sh-mockup__chrome span {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--sh-border);
}

.sh-mockup__chrome span:nth-child(1) { background: #f87171; }
.sh-mockup__chrome span:nth-child(2) { background: #fbbf24; }
.sh-mockup__chrome span:nth-child(3) { background: #34d399; }

.sh-mockup__body {
	padding: 1.25rem;
}

.sh-mockup__top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.sh-mockup__label {
	margin: 0;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--sh-text-muted);
}

.sh-mockup__company {
	margin: 0.15rem 0 0;
	font-size: 1.125rem;
	font-weight: 800;
}

.sh-mockup__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.sh-mockup__pill {
	padding: 0.3rem 0.6rem;
	border-radius: 999px;
	background: rgba(0, 101, 255, 0.1);
	color: var(--sh-primary);
	font-size: 0.75rem;
	font-weight: 700;
}

.sh-mockup__pill--muted {
	background: var(--sh-bg-muted);
	color: var(--sh-text-muted);
}

.sh-mockup__url {
	margin-bottom: 1rem;
	padding: 0.65rem 0.75rem;
	border: 1px dashed var(--sh-border);
	border-radius: var(--sh-radius-sm);
	background: var(--sh-bg-muted);
}

.sh-mockup__url-label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--sh-text-muted);
}

.sh-mockup__url-value {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--sh-primary);
}

.sh-mockup__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.65rem;
	margin-bottom: 1rem;
}

.sh-mockup__stat {
	padding: 0.65rem;
	border: 1px solid var(--sh-border);
	border-radius: var(--sh-radius-sm);
	text-align: center;
	background: var(--sh-bg-muted);
}

.sh-mockup__stat strong {
	display: block;
	font-size: 1.2rem;
	line-height: 1.2;
}

.sh-mockup__stat span {
	font-size: 0.6875rem;
	font-weight: 600;
	color: var(--sh-text-muted);
}

.sh-mockup__panel {
	padding: 0.85rem;
	border: 1px solid var(--sh-border);
	border-radius: var(--sh-radius-sm);
	background: var(--sh-bg-muted);
}

.sh-mockup__panel-title {
	margin: 0 0 0.65rem;
	font-size: 0.875rem;
	font-weight: 700;
}

.sh-mockup__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sh-mockup__list li {
	padding: 0.45rem 0;
	border-bottom: 1px solid var(--sh-border);
	font-size: 0.8125rem;
	color: var(--sh-text-muted);
}

.sh-mockup__list li:last-child {
	border-bottom: 0;
}

/* Benefits */
.sh-benefits {
	padding: 1.25rem 0;
	border-block: 1px solid var(--sh-border);
	background: var(--sh-bg-muted);
}

.sh-benefits__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sh-benefits__item {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--sh-text-muted);
}

.sh-benefits__icon {
	flex-shrink: 0;
	color: var(--sh-primary);
}

/* Sections */
.sh-section {
	padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.sh-section--muted {
	background: var(--sh-bg-muted);
}

.sh-section__header {
	margin-bottom: 2rem;
	max-width: 40rem;
}

.sh-section__header--center {
	margin-inline: auto;
	text-align: center;
}

.sh-section__header--center .sh-section__lead {
	margin-inline: auto;
}

.sh-section__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	line-height: 1.2;
}

.sh-section__lead {
	margin: 0;
	color: var(--sh-text-muted);
	font-size: 1.0625rem;
}

/* Cards */
.sh-features {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 576px) {
	.sh-features {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.sh-features {
		grid-template-columns: repeat(3, 1fr);
	}
}

.sh-card {
	padding: 1.25rem;
	border: 1px solid var(--sh-border);
	border-radius: var(--sh-radius);
	background: #fff;
	box-shadow: var(--sh-shadow-sm);
}

.sh-card--flat {
	box-shadow: none;
}

.sh-card--accent {
	border-color: rgba(0, 101, 255, 0.2);
	background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.sh-card__title {
	margin: 0 0 0.5rem;
	font-size: 1.0625rem;
	font-weight: 700;
}

.sh-card__text {
	margin: 0;
	color: var(--sh-text-muted);
	font-size: 0.9375rem;
}

.sh-card--feature {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.sh-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: rgba(0, 101, 255, 0.1);
	color: var(--sh-primary);
}

.sh-card__icon svg {
	display: block;
}

/* Stats strip */
.sh-stats-strip {
	padding: 1.25rem 0;
	background: linear-gradient(90deg, #0e4bdb 0%, var(--sh-primary) 100%);
	color: #fff;
}

.sh-stats-strip__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}

@media (min-width: 768px) {
	.sh-stats-strip__list {
		grid-template-columns: repeat(4, 1fr);
	}
}

.sh-stats-strip__item {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.35;
}

/* Integrations */
.sh-integrations {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 768px) {
	.sh-integrations {
		grid-template-columns: repeat(3, 1fr);
	}
}

.sh-card--integration {
	text-align: center;
}

.sh-integration__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 4.5rem;
	min-height: 2.5rem;
	margin: 0 auto 0.75rem;
	padding: 0.5rem 1rem;
	border-radius: var(--sh-radius-sm);
	background: var(--sh-bg-muted);
	color: var(--sh-text);
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.sh-integrations__note {
	margin: 1.5rem 0 0;
	text-align: center;
	color: var(--sh-text-muted);
	font-size: 0.875rem;
}

.sh-why {
	display: grid;
	gap: 1rem;
}

@media (min-width: 768px) {
	.sh-why {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.sh-why {
		grid-template-columns: repeat(3, 1fr);
	}
}

.sh-workflow {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 768px) {
	.sh-workflow {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* CTA */
.sh-cta {
	padding: clamp(2rem, 4vw, 3rem);
	border-radius: var(--sh-radius);
	text-align: center;
	background: linear-gradient(110deg, #0e4bdb 0%, var(--sh-primary) 100%);
	color: #fff;
	box-shadow: var(--sh-shadow);
}

.sh-cta__title {
	margin: 0 0 1.25rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
}

.sh-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

/* Inner pages */
.sh-page-hero {
	padding: clamp(2rem, 4vw, 3rem) 0;
	background: linear-gradient(110deg, #0e4bdb 0%, var(--sh-primary) 100%);
	color: #fff;
	text-align: center;
}

.sh-page-hero h1 {
	margin: 0;
	max-width: 48rem;
	margin-inline: auto;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.sh-page-main {
	padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.sh-page-main--flush-top {
	padding-top: clamp(2rem, 4vw, 3rem);
}

.sh-page-content {
	max-width: 820px;
	margin-inline: auto;
}

.sh-page-content.sh-container {
	width: min(1180px, calc(100% - 32px));
}

.sh-page-article {
	margin: 0;
}

.sh-page-content img,
.sh-entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--sh-radius-sm);
}

.sh-page-content h2,
.sh-page-content h3,
.sh-entry-content h2,
.sh-entry-content h3 {
	margin: 2rem 0 0.75rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--sh-text);
}

.sh-page-content h2,
.sh-entry-content h2 {
	font-size: clamp(1.375rem, 2.5vw, 1.75rem);
}

.sh-page-content h3,
.sh-entry-content h3 {
	font-size: clamp(1.125rem, 2vw, 1.375rem);
}

.sh-page-content p,
.sh-entry-content p {
	margin: 0 0 1rem;
	color: var(--sh-text-muted);
	line-height: 1.7;
}

.sh-page-content ul,
.sh-page-content ol,
.sh-entry-content ul,
.sh-entry-content ol {
	margin: 0 0 1.25rem;
	padding-left: 1.35rem;
	color: var(--sh-text-muted);
}

.sh-page-content li,
.sh-entry-content li {
	margin-bottom: 0.35rem;
}

.sh-page-content a:not(.sh-btn),
.sh-entry-content a:not(.sh-btn) {
	color: var(--sh-primary);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.sh-page-content a:not(.sh-btn):hover,
.sh-page-content a:not(.sh-btn):focus-visible,
.sh-entry-content a:not(.sh-btn):hover,
.sh-entry-content a:not(.sh-btn):focus-visible {
	color: var(--sh-primary-dark);
}

.sh-content-wrap {
	padding: clamp(2rem, 4vw, 3rem) 0 4rem;
}

.sh-page-title {
	margin: 0 0 1rem;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 800;
	line-height: 1.2;
}

.sh-entry-content > *:first-child {
	margin-top: 0;
}

.sh-post-meta--singular {
	margin: -0.5rem 0 1.5rem;
	text-align: center;
}

.sh-post-grid {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.sh-post-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.sh-post-card {
	border: 1px solid var(--sh-border);
	border-radius: var(--sh-radius);
	background: #fff;
	overflow: hidden;
	box-shadow: var(--sh-shadow-sm);
}

.sh-post-card__thumb img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.sh-post-card__title {
	margin: 0;
	padding: 1rem 1rem 0;
	font-size: 1.125rem;
}

.sh-post-card__title a {
	color: var(--sh-text);
	text-decoration: none;
}

.sh-post-card .sh-article__header,
.sh-post-card .sh-article__content {
	padding: 0 1rem 1rem;
}

.sh-post-meta {
	margin: 0.35rem 0 0;
	color: var(--sh-text-muted);
	font-size: 0.875rem;
}

.sh-archive-header {
	margin-bottom: 2rem;
}

.sh-archive-desc {
	color: var(--sh-text-muted);
}

.sh-404 {
	text-align: center;
}

/* Site footer */
.sh-site-footer {
	padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem;
	background: #0f172a;
	color: #cbd5e1;
}

.sh-site-footer a {
	color: #e2e8f0;
	text-decoration: none;
	transition: color 0.2s ease;
}

.sh-site-footer a:hover,
.sh-site-footer a:focus-visible {
	color: #fff;
}

.sh-footer-grid {
	display: grid;
	gap: 2rem 1.5rem;
	margin-bottom: 2rem;
}

@media (min-width: 640px) {
	.sh-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.sh-footer-grid {
		grid-template-columns: 1.5fr repeat(3, 1fr);
		gap: 2rem;
	}
}

.sh-footer-brand {
	max-width: 22rem;
}

.sh-footer-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 1rem;
	text-decoration: none;
	color: #fff;
	font-weight: 800;
}

.sh-footer-logo__img {
	max-height: 42px;
	width: auto;
	display: block;
}

.sh-footer-logo__text {
	font-size: 1.25rem;
	letter-spacing: -0.03em;
	color: #fff;
}

.sh-footer-desc {
	margin: 0 0 1.25rem;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: #94a3b8;
}

.sh-footer-contact {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sh-footer-contact li {
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
}

.sh-footer-contact a {
	color: #cbd5e1;
}

.sh-footer-heading {
	margin: 0 0 0.85rem;
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.sh-footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sh-footer-links li {
	margin-bottom: 0.5rem;
}

.sh-footer-links a {
	font-size: 0.9375rem;
	font-weight: 500;
}

.sh-footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
	.sh-footer-bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.sh-footer-copy {
	margin: 0;
	font-size: 0.875rem;
	color: #94a3b8;
}

.sh-footer-legal {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sh-footer-legal a {
	font-size: 0.875rem;
	font-weight: 600;
}

/* Mobile header */
@media (max-width: 991px) {
	.admin-bar .sh-site-header {
		top: 46px;
	}

	.sh-header-inner {
		min-height: 68px;
		flex-wrap: wrap;
	}

	.sh-primary-nav,
	.sh-header-actions {
		display: none;
	}

	.sh-mobile-toggle {
		display: inline-flex;
	}

	body.sh-menu-open .sh-primary-nav {
		display: block;
		flex-basis: 100%;
		order: 4;
		width: 100%;
		background: #fff;
		border: 1px solid #e5e7eb;
		border-radius: 18px;
		box-shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
		padding: 18px;
		margin-top: 4px;
	}

	body.sh-menu-open .sh-menu {
		display: grid;
		gap: 14px;
		justify-content: stretch;
	}

	body.sh-menu-open .sh-menu a {
		display: block;
		padding: 4px 0;
	}

	body.sh-menu-open .sh-header-actions {
		display: flex;
		flex-basis: 100%;
		order: 5;
		width: 100%;
		gap: 10px;
		padding: 0 0 8px;
	}

	body.sh-menu-open .sh-header-actions .sh-btn-small {
		flex: 1;
		justify-content: center;
	}

	.sh-mockup__stats {
		grid-template-columns: 1fr;
	}

	.sh-hero__actions {
		flex-direction: column;
	}

	.sh-hero__actions .sh-btn {
		width: 100%;
	}
}

/* Desktop: never show hamburger */
@media (min-width: 992px) {
	.sh-mobile-toggle {
		display: none !important;
	}

	.sh-primary-nav,
	.sh-header-actions {
		display: flex !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
	}
}
