/* Base */
:root {
	--color-primary: #12aee8;
	--color-secondary: #27d66f;
	--color-background: #ffffff;
	--color-button: #12aee8;
	--color-text: #111217;
	--color-muted: #5f6673;
	--color-line: #edf0f3;
	--shadow-soft: 0 14px 34px rgba(18, 174, 232, .13);
	--container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: Inter, Arial, sans-serif;
	color: var(--color-text);
	background: var(--color-background);
	line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--color-muted); margin: 0 0 1rem; }
h1, h2, h3 { line-height: 1.12; margin: 0; letter-spacing: 0; }
h1 { font-size: clamp(2.25rem, 4.5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 750; }
h3 { font-size: 1.12rem; font-weight: 700; }
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.skip-link, .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}
.skip-link:focus {
	width: auto;
	height: auto;
	clip: auto;
	z-index: 99;
	background: #fff;
	padding: 10px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	padding: 0 26px;
	border: 0;
	border-radius: 7px;
	font-weight: 750;
	font-size: .98rem;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--color-button); color: #fff; box-shadow: var(--shadow-soft); }
.btn-whatsapp { background: var(--color-secondary); color: #fff; box-shadow: 0 14px 30px rgba(39, 214, 111, .22); }
.btn-light { background: #fff; color: var(--color-primary); }
.btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	line-height: 1;
}
.whatsapp-icon svg {
	width: 20px;
	height: 20px;
	display: block;
	fill: currentColor;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255,255,255,.96);
	border-bottom: 1px solid var(--color-line);
	backdrop-filter: blur(12px);
}
.header-inner {
	min-height: 122px;
	padding-block: 15px;
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
}
.site-branding {
	display: flex;
	align-items: center;
	min-width: 0;
}
.custom-logo-link {
	display: inline-flex;
	align-items: center;
}
.custom-logo {
	display: block;
	max-width: 160px;
	max-height: 92px;
	width: auto;
	height: auto;
	object-fit: contain;
}
.text-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 31px;
	border-radius: 5px;
	background: var(--color-primary);
	color: #fff;
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: 0;
	box-shadow: 0 8px 20px rgba(18,174,232,.22);
}
.primary-navigation ul {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	flex-wrap: nowrap;
}
.primary-navigation a {
	position: relative;
	color: #3f4652;
	font-weight: 500;
	font-size: .94rem;
	line-height: 1.35;
	white-space: nowrap;
}
.primary-navigation .current-menu-item > a,
.primary-navigation a:hover { color: var(--color-primary); }
.primary-navigation .current-menu-item > a::after,
.primary-navigation a:hover::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -9px;
	height: 3px;
	background: var(--color-primary);
	border-radius: 99px;
}
.header-actions {
	display: flex;
	align-items: center;
	gap: 20px;
}
.header-whatsapp { min-height: 46px; padding: 0 18px; }
.menu-toggle { display: none; }

/* Hero */
.hero {
	position: relative;
	min-height: 780px;
	background-color: #fff;
	background-position: center;
	background-size: cover;
	overflow: hidden;
	border-bottom: 1px solid #f4f6f8;
}
.hero-inner {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 780px;
}
.hero-copy {
	position: relative;
	z-index: 2;
	max-width: 610px;
	padding-top: 24px;
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 34px;
	padding: 8px 17px;
	border-radius: 999px;
	background: rgba(18,174,232,.1);
	color: #84c8dc;
	font-weight: 750;
}
.hero h1 { margin-bottom: 28px; }
.hero h1 strong, .hero h1 em { color: var(--color-primary); font-style: normal; }
.hero h1::first-letter { color: inherit; }
.hero p {
	max-width: 610px;
	font-size: 1.18rem;
	color: #4f5662;
	line-height: 1.72;
}
.hero-actions { display: flex; gap: 16px; margin-top: 42px; flex-wrap: wrap; }
.hero-printer {
	position: absolute;
	inset: 0 auto 0 37%;
	width: 43%;
	opacity: .38;
	background:
		linear-gradient(90deg, rgba(210,214,217,.9), rgba(248,249,250,.8) 8%, transparent 10%),
		linear-gradient(180deg, #d7f8f4 0%, #b4eef1 56%, #d8dde0 56%, #b7bdc2 100%);
	border: 1px solid rgba(0,0,0,.04);
	box-shadow: 20px 24px 58px rgba(0,0,0,.16);
}
.hero-printer::before {
	content: "";
	position: absolute;
	left: 12%;
	top: 16%;
	width: 70%;
	height: 28%;
	background: rgba(255,255,255,.72);
	border-radius: 50%;
	transform: rotate(-15deg);
}
.hero-printer span {
	position: absolute;
	right: 8%;
	bottom: 8%;
	width: 190px;
	height: 190px;
	border-radius: 50%;
	background: rgba(18,174,232,.12);
}

/* Sections */
.section { padding: 88px 0; }
.section-heading {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 58px;
}
.section-heading h2 { margin-bottom: 18px; }
.section-heading p { font-size: 1.05rem; }
.section-kicker {
	display: inline-block;
	margin-bottom: 12px;
	color: var(--color-primary);
	font-weight: 800;
	text-transform: uppercase;
	font-size: .78rem;
	letter-spacing: 0;
}

/* Product cards */
.products-section { background: #fff; }
.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}
.product-card {
	background: #fff;
	border: 1px solid #e9edf1;
	border-radius: 7px;
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 44px rgba(16, 30, 54, .08);
}
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.product-media {
	position: relative;
	aspect-ratio: 1 / 1;
	display: grid;
	place-items: center;
	background: #f7f8f9;
}
.product-media-1 { background: #020202; }
.product-media-3 { background: radial-gradient(circle at 55% 30%, #264c55, #07181d 70%); }
.product-tag {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 5px 10px;
	background: rgba(241,243,245,.92);
	color: #737b86;
	border-radius: 4px;
	font-size: .82rem;
	font-weight: 700;
}
.product-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product-placeholder {
	width: 72%;
	height: 22%;
	border-radius: 12px;
	background: linear-gradient(90deg, #20252a 0 15%, #f8fbfc 15% 52%, var(--color-primary) 52% 72%, #20252a 72% 100%);
	box-shadow: 0 14px 25px rgba(0,0,0,.12);
}
.product-media-2 .product-placeholder,
.product-media-4 .product-placeholder {
	height: 24%;
	transform: rotate(-8deg);
	background: linear-gradient(90deg, #1d2429 0 18%, #eff5f8 18% 74%, #222930 74% 100%);
}
.product-media-3 .product-placeholder {
	height: 38%;
	background: linear-gradient(135deg, #5b6970, #181d21);
	border-radius: 4px;
}
.product-body { padding: 21px 22px 24px; }
.product-body h3 { margin-bottom: 10px; }
.product-body p { font-size: .93rem; margin-bottom: 0; }

/* About and services */
.about-section, .services-section { background: #f8fafb; }
.split-layout {
	display: grid;
	grid-template-columns: .96fr 1fr;
	gap: 72px;
	align-items: center;
}
.about-image img,
.about-illustration {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 8px;
	background: linear-gradient(135deg, #eaf8fb, #fff 48%, #dff9e9);
	box-shadow: 0 24px 55px rgba(18, 174, 232, .1);
}
.about-copy p { font-size: 1.06rem; margin: 22px 0 30px; }
.offered-services-section {
	position: relative;
	background: #fff;
	padding: 0 0 70px;
	overflow: hidden;
}
.offered-services-hero {
	position: relative;
	min-height: 315px;
	padding: 58px 0 150px;
	text-align: center;
	background:
		linear-gradient(rgba(11, 13, 15, .94), rgba(11, 13, 15, .94)),
		linear-gradient(115deg, #151719 0%, #272c32 48%, #101214 100%);
}
.offered-services-hero::after {
	content: "";
	position: absolute;
	left: -3%;
	right: -3%;
	bottom: -1px;
	height: 54px;
	background: #fff;
	clip-path: polygon(0 58%, 18% 50%, 34% 58%, 50% 42%, 66% 58%, 82% 50%, 100% 58%, 100% 100%, 0 100%);
}
.offered-services-hero h2 {
	position: relative;
	z-index: 1;
	color: #fff;
	font-size: clamp(2.05rem, 4vw, 3.25rem);
	font-weight: 500;
	text-transform: uppercase;
}
.offered-services-hero p {
	position: relative;
	z-index: 1;
	margin: 28px 0 0;
	color: #fff;
	font-size: .84rem;
	font-weight: 800;
	letter-spacing: 8px;
	text-transform: uppercase;
}
.offered-services-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin-top: -32px;
	background: #fff;
	box-shadow: 0 26px 70px rgba(16, 30, 54, .07);
}
.offered-service-card {
	position: relative;
	display: grid;
	justify-items: center;
	align-content: start;
	min-height: 270px;
	padding: 74px 30px 44px;
	text-align: center;
	background: #fff;
	border-radius: 0;
	box-shadow: inset -1px 0 0 #f0f3f7;
	transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.offered-service-card:hover {
	z-index: 3;
	background: #fff;
	box-shadow: 0 24px 58px rgba(16, 30, 54, .13);
	transform: translateY(-8px);
}
.offered-service-icon {
	position: absolute;
	top: -54px;
	left: 50%;
	display: grid;
	place-items: center;
	width: 108px;
	height: 108px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: #777;
	box-shadow: 0 18px 44px rgba(16, 30, 54, .08);
	transform: translateX(-50%);
	transition: color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.offered-service-card:hover .offered-service-icon {
	color: var(--color-primary);
	box-shadow: 0 22px 54px rgba(18, 174, 232, .18);
	transform: translateX(-50%) translateY(-4px);
}
.offered-service-icon svg {
	width: 44px;
	height: 44px;
	fill: none;
	stroke: currentColor;
	stroke-width: 4.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.offered-service-copy {
	min-width: 0;
}
.offered-service-card h3 {
	max-width: 250px;
	margin-bottom: 20px;
	color: #0f141a;
	font-size: .9rem;
	font-weight: 800;
	letter-spacing: 4px;
	line-height: 1.25;
	text-transform: uppercase;
	white-space: normal;
	transition: color .2s ease;
}
.offered-service-card p {
	margin: 0;
	color: #9298a2;
	font-size: 1rem;
	line-height: 1.5;
	transition: color .2s ease;
}
.offered-service-card p.is-alert {
	color: #ff3040;
}
.offered-service-card:hover h3 {
	color: var(--color-primary);
}
.offered-service-card:hover p:not(.is-alert) {
	color: #5f6673;
}
.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.service-card {
	position: relative;
	background: #fff;
	border: 1px solid #e9edf1;
	border-radius: 8px;
	overflow: hidden;
	transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.service-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
	border: 1px solid transparent;
	pointer-events: none;
	transition: border-color .25s ease;
}
.service-card:hover {
	border-color: rgba(18, 174, 232, .26);
	box-shadow: 0 24px 56px rgba(16, 30, 54, .14);
	transform: translateY(-8px);
}
.service-card:hover::before {
	border-color: rgba(39, 214, 111, .22);
}
.service-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform .45s ease, filter .45s ease;
}
.service-card:hover img {
	filter: saturate(1.08) contrast(1.04);
	transform: scale(1.045);
}
.service-card-body { padding: 26px; }
.service-card-body span {
	display: inline-block;
	margin-bottom: 12px;
	color: var(--color-primary);
	font-weight: 800;
	font-size: .82rem;
	transition: color .2s ease, transform .2s ease;
}
.service-card-body h3 { margin-bottom: 12px; }
.service-card-body h3 a {
	transition: color .2s ease;
}
.service-card:hover .service-card-body span {
	color: var(--color-secondary);
	transform: translateX(3px);
}
.service-card:hover .service-card-body h3 a {
	color: var(--color-primary);
}

/* CTA, brands and contact */
.cta-section {
	padding: 54px 0;
	background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
	color: #fff;
	background-size: cover;
	background-position: center;
}
.cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}
.cta-inner h2 { margin-bottom: 10px; }
.cta-inner p { color: rgba(255,255,255,.9); margin: 0; }
.brand-logo-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(28px, 4.6vw, 58px);
	width: 100%;
	padding: 4px 0 10px;
	overflow-x: auto;
	scrollbar-width: none;
}
.brand-logo-row::-webkit-scrollbar {
	display: none;
}
.brand-logo {
	flex: 0 0 auto;
	display: block;
	height: 62px;
	max-width: 155px;
	color: #858585;
	fill: currentColor;
	stroke: currentColor;
	opacity: .94;
}
.brand-logo text {
	fill: currentColor;
	stroke: none;
	font-weight: 800;
	font-size: 32px;
	letter-spacing: -1px;
}
.brand-epson text {
	font-family: Arial Black, Arial, sans-serif;
	font-size: 32px;
	letter-spacing: -2px;
}
.brand-brother text {
	font-family: Arial Rounded MT Bold, Arial, sans-serif;
	font-size: 34px;
	font-weight: 900;
	letter-spacing: -3px;
}
.brand-hp {
	width: 98px;
}
.brand-hp rect {
	fill: #838383;
	stroke: none;
}
.brand-hp .hp-mark {
	fill: #fff;
	font-family: Georgia, serif;
	font-size: 31px;
	font-style: italic;
	font-weight: 700;
	letter-spacing: -4px;
}
.brand-hp .hp-invent {
	fill: #858585;
	font-family: Arial, sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0;
}
.brand-samsung {
	width: 150px;
}
.brand-samsung ellipse {
	fill: #7c7c7c;
	stroke: none;
}
.brand-samsung text {
	fill: #fff;
	font-family: Arial Black, Arial, sans-serif;
	font-size: 18px;
	letter-spacing: 1px;
}
.brand-xerox {
	width: 144px;
	color: #9a7479;
}
.brand-xerox text {
	font-family: Arial, sans-serif;
	font-size: 34px;
	font-weight: 700;
	letter-spacing: -2px;
}
.brand-xerox circle {
	fill: #b9b9b9;
	stroke: none;
}
.brand-xerox path {
	fill: none;
	stroke-width: 7;
	stroke-linecap: round;
}
.brand-lexmark text {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -2px;
}
.brand-lexmark path {
	fill: #858585;
	stroke: none;
}
.contact-grid {
	display: grid;
	grid-template-columns: .85fr 1fr;
	gap: 56px;
	align-items: start;
}
.contact-details {
	display: grid;
	gap: 30px;
	margin-top: 34px;
	max-width: 360px;
}
.contact-details-group h3 {
	margin-bottom: 14px;
	color: var(--color-primary);
	font-size: .96rem;
	font-weight: 800;
	text-transform: uppercase;
}
.contact-details-group p {
	margin: 0;
	color: var(--color-text);
	line-height: 1.65;
}
.contact-details-group a {
	color: var(--color-text);
}
.contact-details-group a:hover {
	color: var(--color-primary);
}
.contact-location-link {
	display: inline-block;
	line-height: 1.65;
}
.contact-whatsapp-button {
	min-height: 42px;
	margin-top: 2px;
	padding: 0 20px;
	border-radius: 4px;
	box-shadow: none;
}
.contact-form {
	display: grid;
	gap: 16px;
	padding: 30px;
	border: 1px solid #e9edf1;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 20px 52px rgba(16, 30, 54, .06);
}
.contact-form label {
	display: grid;
	gap: 7px;
	color: #303743;
	font-weight: 700;
}
.contact-form input,
.contact-form textarea,
.search-field {
	width: 100%;
	border: 1px solid #dfe5ea;
	border-radius: 7px;
	padding: 13px 14px;
	font: inherit;
	color: var(--color-text);
	background: #fff;
}
.form-alert {
	padding: 12px 14px;
	border-radius: 7px;
	font-weight: 700;
}
.form-alert.success { background: #e9fbf0; color: #14763a; }
.form-alert.error { background: #fff0f0; color: #a02a2a; }

/* Pages */
.page-section { padding-top: 56px; }
.content-layout { max-width: 900px; }
.breadcrumbs {
	display: flex;
	gap: 9px;
	flex-wrap: wrap;
	margin-bottom: 30px;
	color: var(--color-muted);
	font-size: .92rem;
}
.breadcrumbs a { color: var(--color-primary); font-weight: 700; }
.entry-content-wrap h1,
.archive-header h1 { margin-bottom: 22px; }
.entry-content-wrap > img { margin: 26px 0; border-radius: 8px; }
.entry-content a { color: var(--color-primary); text-decoration: underline; }
.archive-list { display: grid; gap: 24px; }
.archive-item {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 24px;
	padding: 20px;
	border: 1px solid #e9edf1;
	border-radius: 8px;
	background: #fff;
}
.archive-item img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 6px;
}

/* Footer */
.site-footer {
	background: #0f141a;
	color: #fff;
	--footer-accent: #d91563;
}
.footer-grid {
	display: grid;
	grid-template-columns: minmax(280px, 1.25fr) minmax(180px, .75fr) minmax(280px, 1fr);
	justify-content: space-between;
	gap: clamp(32px, 6vw, 96px);
	padding: 64px 0 48px;
}
.footer-grid > * {
	min-width: 0;
}
.site-footer h2 {
	font-size: 1rem;
	margin-bottom: 16px;
}
.site-footer p,
.site-footer li,
.site-footer a { color: rgba(255,255,255,.72); }
.footer-brand img,
.footer-brand .custom-logo {
	max-width: min(100%, 408px);
	max-height: 204px;
	width: auto;
	height: auto;
	margin-bottom: 18px;
}
.footer-menu,
.contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}
.social-links {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 20px;
	width: min(100%, 408px);
}
.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255,255,255,.9);
	border-radius: 50%;
	color: #fff;
	transition: background .2s ease, color .2s ease, transform .2s ease;
}
.social-links a:hover {
	background: var(--footer-accent);
	border-color: var(--footer-accent);
	color: #fff;
	transform: translateY(-2px);
}
.social-links svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.footer-menu a {
	position: relative;
	display: inline-flex;
	transition: color .2s ease, transform .2s ease;
}
.footer-menu a:hover {
	color: var(--footer-accent);
	transform: translateX(4px);
}
.footer-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -3px;
	height: 1px;
	background: var(--footer-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .2s ease;
}
.footer-menu a:hover::after {
	transform: scaleX(1);
}
.contact-list a span {
	color: #fff;
	font-weight: 700;
}
.contact-list li {
	display: flex;
	align-items: center;
	gap: 8px;
}
.contact-list a {
	overflow-wrap: anywhere;
}
.contact-list strong {
	color: #fff;
}
.contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	color: #fff;
}
.contact-icon svg {
	display: block;
	width: 18px !important;
	height: 18px !important;
	max-width: 18px;
	max-height: 18px;
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.08);
	padding: 18px 0;
}
.footer-bottom p { margin: 0; font-size: .9rem; }
.footer-bottom a {
	color: #fff;
	font-weight: 700;
}

/* Responsive */
@media (max-width: 1180px) {
	:root { --container: 980px; }
	.hero, .hero-inner { min-height: 680px; }
	.header-inner { grid-template-columns: 210px minmax(0, 1fr) auto; min-height: 116px; padding-block: 15px; gap: 16px; }
	.custom-logo { max-width: 148px; max-height: 86px; }
	.primary-navigation ul { gap: 16px; }
	.primary-navigation a { font-size: .88rem; }
	.product-grid { gap: 20px; }
}

@media (max-width: 960px) {
	.header-inner { grid-template-columns: 170px minmax(0, 1fr) auto; min-height: 104px; padding-block: 15px; }
	.custom-logo { max-width: 130px; max-height: 74px; }
	.menu-toggle {
		display: inline-grid;
		gap: 5px;
		justify-self: end;
		width: 42px;
		height: 42px;
		padding: 10px;
		border: 1px solid #dfe5ea;
		border-radius: 7px;
		background: #fff;
	}
	.menu-toggle span:not(.screen-reader-text) {
		display: block;
		height: 2px;
		background: var(--color-text);
		border-radius: 99px;
	}
	.primary-navigation {
		position: absolute;
		left: 16px;
		right: 16px;
		top: 104px;
		display: none;
		padding: 18px;
		background: #fff;
		border: 1px solid var(--color-line);
		border-radius: 8px;
		box-shadow: 0 20px 45px rgba(16,30,54,.12);
	}
	.primary-navigation.is-open { display: block; }
	.primary-navigation ul { display: grid; gap: 14px; justify-content: stretch; }
	.primary-navigation a::after { display: none; }
	.header-actions { gap: 12px; }
	.header-whatsapp { display: none; }
	.hero, .hero-inner { min-height: 620px; }
	.hero-printer { inset-inline-start: 48%; width: 52%; }
	.product-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
	.offered-services-hero { min-height: 300px; padding-bottom: 136px; }
	.offered-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 24px; margin-top: -28px; }
	.split-layout, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
	.footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
	.footer-brand img,
	.footer-brand .custom-logo { max-width: min(100%, 272px); }
	.social-links { width: min(100%, 272px); }
}

@media (max-width: 680px) {
	.container { width: min(100% - 24px, var(--container)); }
	.header-inner { grid-template-columns: 140px minmax(0, 1fr) auto; min-height: 96px; gap: 12px; padding-block: 15px; }
	.custom-logo { max-width: 112px; max-height: 66px; }
	.primary-navigation { top: 96px; }
	.hero {
		min-height: 600px;
		background-position: center;
	}
	.hero-inner {
		min-height: 600px;
		align-items: flex-start;
		padding-top: 84px;
	}
	.hero-copy { max-width: 100%; }
	.hero p { font-size: 1rem; }
	.hero-actions { margin-top: 30px; }
	.hero-actions .btn { width: 100%; }
	.hero-printer {
		inset: auto 0 0 auto;
		width: 78%;
		height: 42%;
	}
	.section { padding: 64px 0; }
	.product-grid, .service-grid { grid-template-columns: 1fr; }
	.offered-services-grid {
		grid-template-columns: 1fr;
		gap: 18px;
		margin-top: -24px;
	}
	.brand-logo-row { justify-content: flex-start; gap: 26px; }
	.brand-logo { height: 54px; max-width: 142px; }
	.product-media { aspect-ratio: 1.12 / 1; }
	.cta-inner { align-items: flex-start; flex-direction: column; }
	.contact-form { padding: 22px; }
	.archive-item { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; padding-top: 46px; }
}
