@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap");

:root {
	--ink: #0f172a;
	--muted: #64748b;
	--line: #e2e8f0;
	--soft: #f8fafc;
	--white: #ffffff;
	--primary: #2563eb;
	--primary-dark: #1d4ed8;
	--whatsapp: #16a34a;
	--shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
	--radius: 8px;
	--wa-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32 101 32 1 132 1 254.9c0 39.1 10.2 77.3 29.6 111L0 480l116.8-30.7c32.4 17.7 68.9 27 107.1 27h.1c122.9 0 222.9-100 222.9-222.9 0-59.4-23.1-115.2-66-156.3zM224 438.6c-33.6 0-66.5-9-95.2-26l-6.8-4-69.2 18.2 18.5-67.5-4.4-6.9c-18.7-29.7-28.6-64-28.6-99.5C38.3 151.1 122.2 67.2 224 67.2c49.6 0 96.1 19.3 131.2 54.4 35.1 35.1 54.4 81.7 54.4 131.8 0 101.8-83.8 185.2-185.6 185.2zm101.7-138.9c-5.6-2.8-33-16.3-38.1-18.2-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.4 18.2-17.6 21.9-3.2 3.7-6.5 4.2-12.1 1.4-33.1-16.5-54.8-29.5-76.6-66.8-5.8-10 5.8-9.3 16.5-30.9 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.7 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 33-13.5 37.6-26.5 4.6-13 4.6-24.1 3.2-26.5-1.3-2.4-5-3.8-10.6-6.7z'/%3E%3C/svg%3E");
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	font-weight: 500;
	background: var(--white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: geometricPrecision;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand strong,
.menu a,
.button,
button,
input,
select,
textarea {
	font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #0b1224;
	font-weight: 900;
	letter-spacing: 0;
}

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

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

.is-hidden {
	display: none !important;
}

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

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

.skip-link {
	position: absolute;
	left: 16px;
	top: -80px;
	z-index: 50;
	padding: 10px 14px;
	background: var(--ink);
	color: var(--white);
}

.skip-link:focus {
	top: 16px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(16px);
}

.top-strip {
	display: none;
	background: var(--soft);
	border-bottom: 1px solid var(--line);
	color: var(--muted);
	font-size: 0.84rem;
}

.top-strip__inner,
.top-strip__links,
.nav-shell,
.brand,
.menu,
.hero-actions,
.filter-row,
.project-card__meta,
.project-card__actions,
.footer-bottom {
	display: flex;
	align-items: center;
}

.top-strip__inner {
	justify-content: space-between;
	min-height: 36px;
	gap: 16px;
}

.top-strip__links {
	gap: 18px;
	flex-wrap: wrap;
}

.top-strip a {
	color: var(--ink);
	font-weight: 700;
}

.nav-shell {
	min-height: 74px;
	justify-content: space-between;
	gap: 22px;
}

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

.cart-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--ink);
	font-weight: 900;
}

.cart-link strong {
	display: grid;
	place-items: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--primary);
	color: var(--white);
	font-size: 0.78rem;
	line-height: 1;
}

.brand {
	gap: 12px;
	min-width: max-content;
}

.brand__logo-shell {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 320px;
	max-width: 46vw;
	height: 62px;
	overflow: hidden;
	border-radius: 0;
	background: transparent;
}

.brand__logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.brand__mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: var(--radius);
	background: var(--primary);
	color: var(--white);
	font-weight: 900;
}

.brand strong,
.brand small {
	display: block;
}

.brand strong {
	color: #0b1224;
	font-weight: 900;
	letter-spacing: 0;
}

.brand small {
	color: var(--muted);
	font-size: 0.76rem;
}

.menu {
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 24px;
	font-weight: 700;
	color: #334155;
}

.menu a {
	padding-block: 12px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-weight: 800;
	font-size: 0.95rem;
	line-height: 1.1;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
	transform: translateY(-1px);
}

.button--primary {
	background: var(--primary);
	color: var(--white);
	box-shadow: 0 12px 28px rgba(37, 99, 235, 0.18);
}

.button--accent {
	background: linear-gradient(135deg, #16a34a, #059669);
	color: var(--white);
	box-shadow: 0 14px 30px rgba(22, 163, 74, 0.24);
}

.button[href*="wa.me"],
.lead-form .button--accent,
.button--whatsapp-outline,
.floating-whatsapp {
	--wa-size: 18px;
	gap: 10px;
}

.button[href*="wa.me"]::before,
.lead-form .button--accent::before,
.button--whatsapp-outline::before,
.floating-whatsapp::before {
	content: "";
	display: block;
	flex: 0 0 auto;
	width: var(--wa-size);
	height: var(--wa-size);
	background: currentColor;
	mask: var(--wa-icon) center / contain no-repeat;
}

.contact-methods a[href*="wa.me"],
.top-strip a[href*="wa.me"],
.site-footer a[href*="wa.me"]:not(.button) {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.contact-methods a[href*="wa.me"]::before,
.top-strip a[href*="wa.me"]::before,
.site-footer a[href*="wa.me"]:not(.button)::before {
	content: "";
	display: block;
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	background: currentColor;
	mask: var(--wa-icon) center / contain no-repeat;
}

.button--accent[href*="wa.me"]::before,
.lead-form .button--accent::before {
	background: var(--white);
}

.button--hero {
	min-height: 58px;
	padding: 0 30px;
	border-radius: 999px;
	font-size: 1rem;
	box-shadow: 0 18px 36px rgba(37, 99, 235, 0.22);
}

.button--hero span {
	margin-left: 14px;
	font-size: 1.15rem;
}

.button--whatsapp-outline {
	min-height: 58px;
	padding: 0 28px;
	border-color: #22c55e;
	border-radius: 999px;
	background: var(--white);
	color: #059669;
	font-size: 1rem;
	font-weight: 800;
}

.button--whatsapp-outline span {
	display: none;
}

.button--pulse {
	position: relative;
}

.button--pulse::after {
	content: "";
	position: absolute;
	inset: -5px;
	border: 1px solid rgba(22, 163, 74, 0.38);
	border-radius: inherit;
	animation: pulse-ring 1.9s ease-out infinite;
}

@keyframes pulse-ring {
	0% {
		opacity: 0.75;
		transform: scale(0.96);
	}

	100% {
		opacity: 0;
		transform: scale(1.12);
	}
}

.button--dark {
	background: var(--ink);
	color: var(--white);
}

.button--light,
.button--ghost,
.button--ghost-dark {
	border-color: var(--line);
	background: var(--white);
	color: var(--ink);
}

.button--small {
	min-height: 42px;
	padding: 0 12px;
	font-size: 0.84rem;
	white-space: nowrap;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
}

.menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--ink);
}

.hero-section {
	position: relative;
	padding: 58px 0 50px;
	overflow: hidden;
	background: #f8fafc;
}

.hero-media {
	position: absolute;
	inset: 0 auto 0 0;
	width: 42%;
	background: var(--white);
	border-right: 1px solid var(--line);
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.78fr);
	gap: 46px;
	align-items: center;
}

.eyebrow {
	margin: 0 0 10px;
	color: var(--primary);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero-copy h1 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(2.4rem, 6vw, 4.4rem);
	line-height: 1;
	letter-spacing: 0;
}

.hero-copy h1 span,
.hero-storefront h1 span {
	color: var(--primary);
}

.hero-text {
	max-width: 650px;
	margin: 20px 0 0;
	color: var(--muted);
	font-size: 1.1rem;
	font-weight: 500;
}

.hero-actions {
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.hero-search {
	margin-top: 30px;
	max-width: 660px;
}

.hero-search label {
	display: block;
	margin-bottom: 8px;
	color: #334155;
	font-weight: 800;
}

.hero-search div {
	display: grid;
	grid-template-columns: 1fr auto;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	overflow: hidden;
	box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.hero-search input,
.hero-search button {
	min-height: 56px;
	border: 0;
	font: inherit;
}

.hero-search input {
	width: 100%;
	padding: 0 18px;
	background: var(--white);
	color: var(--ink);
}

.hero-search button {
	padding: 0 22px;
	background: var(--primary);
	color: var(--white);
	font-weight: 900;
}

.hero-copy {
	position: relative;
	padding-left: 26px;
}

.hero-copy::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 5px;
	height: 112px;
	border-radius: 999px;
	background: var(--primary);
}

.hero-panel {
	display: grid;
	gap: 14px;
}

.finder-card,
.delivery-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow);
}

.finder-card {
	padding: 0;
	overflow: hidden;
}

.finder-card__head {
	padding: 22px;
	background: var(--ink);
	color: var(--white);
}

.finder-card__head span {
	display: inline-flex;
	margin-bottom: 12px;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #bfdbfe;
	font-size: 0.82rem;
	line-height: 1;
	font-weight: 900;
}

.finder-card__head strong {
	display: block;
	font-size: 1.2rem;
	line-height: 1.3;
}

.finder-row {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 4px 16px;
	padding: 16px 20px;
	border-top: 1px solid var(--line);
}

.finder-row span {
	grid-row: span 2;
	align-self: center;
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border-radius: var(--radius);
	background: #eff6ff;
	color: var(--primary);
	font-weight: 900;
}

.finder-row strong {
	align-self: end;
}

.finder-row small {
	color: var(--muted);
}

.delivery-card {
	padding: 20px 22px;
}

.delivery-card small,
.delivery-card li {
	color: var(--muted);
}

.delivery-card ul {
	margin: 12px 0 0;
	padding-left: 20px;
}

.trust-band {
	padding: 24px 0;
	background: var(--white);
	border-bottom: 1px solid var(--line);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	background: transparent;
}

.trust-grid div {
	padding: 24px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.trust-grid strong {
	color: var(--primary);
	font-size: 2rem;
	line-height: 1;
}

.trust-grid strong,
.trust-grid span {
	display: block;
}

.trust-grid span {
	color: var(--muted);
}

.section {
	padding: 78px 0;
}

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

.section-heading {
	max-width: 760px;
	margin-bottom: 30px;
}

.section-heading--split,
.service-layout,
.seo-grid,
.faq-layout,
.whatsapp-box {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
	gap: 36px;
	align-items: start;
}

.section-heading--split {
	max-width: none;
	align-items: end;
}

.section h2,
.whatsapp-section h2,
.site-footer h2 {
	margin: 0;
	line-height: 1.12;
	letter-spacing: 0;
	font-weight: 900;
}

.section h2,
.whatsapp-section h2 {
	font-size: clamp(1.9rem, 4vw, 3.05rem);
}

.section-heading p:not(.eyebrow),
.lead {
	color: var(--muted);
	font-size: 1.02rem;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.category-card {
	position: relative;
	min-height: 238px;
	padding: 0 0 20px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.category-card::after {
	content: "";
	position: absolute;
	right: 14px;
	top: 122px;
	width: 34px;
	height: 34px;
	border: 1px solid #bfdbfe;
	border-radius: 50%;
	background: #eff6ff;
}

.category-card img {
	width: 100%;
	height: 112px;
	object-fit: cover;
}

.category-card__count {
	display: inline-flex;
	margin: 16px 20px 20px;
	padding: 4px 10px;
	border-radius: 999px;
	background: #f1f5f9;
	color: #334155;
	font-size: 0.82rem;
	font-weight: 900;
}

.category-card h3 {
	margin: 0 20px 8px;
	font-size: 1.15rem;
}

.category-card p {
	margin: 0 20px;
	color: var(--muted);
}

.latest-technologies,
.services-showcase {
	background: var(--white);
}

.section-title-line {
	margin-bottom: 34px;
}

.section-title-line h2 {
	display: inline-block;
	position: relative;
	margin: 0;
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	text-transform: uppercase;
}

.section-title-line h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 54px;
	height: 2px;
	background: var(--primary);
}

.section-title-line span {
	color: var(--primary);
}

.technology-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 26px;
}

.technology-card {
	display: grid;
	grid-template-columns: 190px 1fr;
	min-height: 164px;
	overflow: hidden;
	background: var(--white);
	border: 1px solid #dbeafe;
	border-radius: 18px;
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.technology-card:hover {
	transform: translateY(-3px);
	border-color: #bfdbfe;
	box-shadow: 0 24px 62px rgba(37, 99, 235, 0.14);
}

.technology-card__image {
	position: relative;
	min-height: 164px;
	overflow: hidden;
}

.technology-card__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.18));
}

.technology-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	transition: transform 240ms ease;
}

.technology-card:hover .technology-card__image img {
	transform: scale(1.08);
}

.technology-card__body {
	display: grid;
	align-content: center;
	padding: 24px 28px;
}

.technology-card h3 {
	margin: 0 0 18px;
	font-size: 1.18rem;
	font-weight: 800;
}

.technology-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 9px;
}

.technology-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid #bfdbfe;
	border-radius: 999px;
	background: #eff6ff;
	color: var(--primary);
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.25;
	transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.technology-links a:hover {
	transform: translateY(-1px);
	background: var(--primary);
	color: var(--white);
	box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

.service-tile-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.service-tile {
	display: grid;
	place-items: center;
	min-height: 126px;
	padding: 24px 18px;
	border-radius: 18px;
	background: var(--white);
	border: 1px solid #dbeafe;
	text-align: center;
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-tile:hover {
	transform: translateY(-3px);
	border-color: #bfdbfe;
	box-shadow: 0 24px 62px rgba(37, 99, 235, 0.14);
}

.service-tile .service-icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 10px;
	border: 1px solid #bfdbfe;
	border-radius: 14px;
	background: linear-gradient(135deg, #eff6ff, #ffffff);
	color: var(--primary);
	box-shadow: 0 10px 22px rgba(37, 99, 235, 0.12);
}

.service-tile .service-icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.service-tile strong {
	color: #0b1224;
	font-size: 0.95rem;
	line-height: 1.3;
	text-wrap: balance;
}

.selection-flow {
	margin-top: 44px;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(135deg, #f8fbff 0%, #ffffff 58%, #eff6ff 100%);
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.selection-flow__hero {
	margin-bottom: 30px;
	padding: 28px;
	border-radius: var(--radius);
	background:
		linear-gradient(90deg, rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.48)),
		url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1400&q=80") center/cover;
	color: var(--white);
}

.selection-flow__hero span {
	color: #bfdbfe;
	font-size: 0.82rem;
	font-weight: 900;
	text-transform: uppercase;
}

.selection-flow__hero h3 {
	margin: 8px 0;
	color: var(--white);
	font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.selection-flow__hero p {
	max-width: 680px;
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
}

.flow-page-hero {
	padding: 72px 0;
	background:
		linear-gradient(90deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.52)),
		url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1800&q=85") center/cover;
	color: var(--white);
}

.flow-page-hero h1 {
	max-width: 980px;
	margin: 0;
	color: var(--white);
	font-size: clamp(2.2rem, 5vw, 4rem);
	line-height: 1.05;
}

.flow-page-hero p:not(.eyebrow) {
	max-width: 720px;
	color: rgba(255, 255, 255, 0.78);
}

.flow-breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
	color: var(--muted);
	font-weight: 800;
}

.flow-breadcrumbs a,
.flow-breadcrumbs span {
	padding: 8px 12px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
}

.flow-breadcrumbs a {
	color: var(--primary);
}

.flow-step + .flow-step {
	margin-top: 30px;
}

.section-title-line--small {
	margin-bottom: 18px;
}

.section-title-line--small h2 {
	font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.flow-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.flow-grid a,
.flow-grid button {
	display: grid;
	place-items: center;
	min-height: 86px;
	padding: 16px;
	border: 1px solid #dbeafe;
	border-radius: var(--radius);
	background: var(--white);
	color: #0b1224;
	font: inherit;
	font-weight: 850;
	text-align: center;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
	cursor: pointer;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.flow-icon {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin-bottom: 8px;
	border: 1px solid #bfdbfe;
	border-radius: 50%;
	background: #eff6ff;
	color: var(--primary);
	font-size: 0.76rem;
	font-weight: 950;
}

.flow-grid small {
	margin-top: 8px;
	color: var(--primary);
	font-weight: 900;
}

.flow-grid a:hover,
.flow-grid button:hover,
.flow-grid .is-active {
	transform: translateY(-2px);
	border-color: var(--primary);
	color: var(--primary);
	box-shadow: 0 18px 42px rgba(37, 99, 235, 0.14);
}

.flow-grid--compact {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 760px;
}

.flow-grid--languages {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.flow-grid--languages a {
	min-height: 70px;
	font-size: 0.9rem;
}

.filter-row {
	justify-content: flex-end;
	gap: 8px;
	flex-wrap: wrap;
}

.filter-chip {
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
	color: #334155;
	font-weight: 800;
	cursor: pointer;
}

.filter-chip.is-active {
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}

.project-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.project-card {
	display: grid;
	grid-template-rows: auto 1fr auto;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	overflow: hidden;
	box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.project-card.is-hidden {
	display: none;
}

.project-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	background: #e2e8f0;
	overflow: hidden;
}

.project-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.project-visual {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	grid-template-rows: 1fr 1fr;
	gap: 10px;
	width: 100%;
	height: 100%;
	padding: 18px;
	background: linear-gradient(135deg, #f8fafc, #e0f2fe);
}

.project-visual span {
	border: 1px solid #cbd5e1;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.78);
}

.project-visual span:first-child {
	grid-row: 1 / -1;
	background: #ffffff;
}

.project-card__body {
	padding: 18px;
}

.project-card__meta {
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
	font-size: 0.85rem;
}

.project-card__meta span {
	color: var(--primary);
	font-weight: 900;
}

.project-card__meta strong {
	color: var(--ink);
}

.project-card h3 {
	margin: 0 0 10px;
	font-size: 1.08rem;
	line-height: 1.3;
}

.project-card p {
	margin: 0;
	color: var(--muted);
}

.tag-row {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 14px;
}

.tag-row span {
	padding: 4px 8px;
	border-radius: 999px;
	background: var(--soft);
	color: #475569;
	font-size: 0.78rem;
	font-weight: 800;
}

.project-card__actions {
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0 18px 18px;
}

.project-card__actions .button {
	flex: 1 1 calc(50% - 5px);
	min-width: 0;
	min-height: 46px;
	text-align: center;
	opacity: 1;
	cursor: pointer;
}

.project-card__actions .button--cart {
	flex-basis: 100%;
}

.project-card__actions .button--accent,
.project-card__actions .button--accent:visited {
	color: var(--white);
}

.project-card__actions .button::before {
	margin-top: 0;
}

.catalog-note {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	margin-top: 28px;
	padding: 18px 20px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
}

.catalog-note p {
	max-width: 760px;
	margin: 0;
	color: var(--muted);
}

.service-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.service-list div {
	padding: 20px;
	border: 1px solid var(--line);
	border-left: 4px solid var(--primary);
	border-radius: var(--radius);
	background: var(--white);
}

.service-list strong,
.service-list span {
	display: block;
}

.service-list span {
	margin-top: 6px;
	color: var(--muted);
}

.whatsapp-section {
	padding: 58px 0;
	background: #f0fdf4;
	border-top: 1px solid #dcfce7;
	border-bottom: 1px solid #dcfce7;
	color: var(--ink);
}

.whatsapp-box {
	align-items: center;
}

.whatsapp-section .eyebrow {
	color: var(--whatsapp);
}

.whatsapp-box p:not(.eyebrow) {
	color: var(--muted);
}

.lead-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	padding: 22px;
	border: 1px solid #bbf7d0;
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: 0 18px 44px rgba(22, 163, 74, 0.1);
}

.lead-form label,
.lead-form span {
	display: block;
}

.lead-form span {
	margin-bottom: 7px;
	color: #334155;
	font-size: 0.82rem;
	font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #f8fafc;
	color: var(--ink);
	font: inherit;
}

.lead-form input,
.lead-form select {
	min-height: 44px;
	padding: 0 12px;
}

.lead-form textarea {
	min-height: 110px;
	padding: 12px;
	resize: vertical;
}

.lead-form__wide {
	grid-column: 1 / -1;
}

.lead-form--large {
	padding: 28px;
	border-color: #dbeafe;
	box-shadow: 0 22px 54px rgba(37, 99, 235, 0.1);
}

.contact-hero {
	background:
		radial-gradient(circle at 84% 18%, rgba(37, 99, 235, 0.12), transparent 34%),
		linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.contact-hero-grid,
.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
	gap: 42px;
	align-items: center;
}

.contact-hero-grid img {
	width: 100%;
	height: clamp(300px, 30vw, 430px);
	border-radius: 20px;
	object-fit: cover;
	box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.contact-layout {
	align-items: start;
}

.contact-info-panel {
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.05);
}

.contact-info-panel h2 {
	margin: 0 0 22px;
}

.contact-methods {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-methods li {
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #f8fafc;
}

.contact-methods strong,
.contact-methods a,
.contact-methods span {
	display: block;
}

.contact-methods strong {
	margin-bottom: 4px;
	color: var(--primary);
}

.contact-methods a,
.contact-methods span {
	color: #334155;
	font-weight: 700;
}

.contact-note {
	margin-top: 18px;
	padding: 18px;
	border-radius: var(--radius);
	background: #eff6ff;
	color: #334155;
}

.contact-note p {
	margin: 6px 0 0;
	color: var(--muted);
}

.seo-links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.seo-links li {
	padding: 14px 16px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	font-weight: 800;
}

.faq-list {
	display: grid;
	gap: 10px;
}

.faq-list details {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	padding: 18px 20px;
}

.faq-list summary {
	cursor: pointer;
	font-weight: 900;
}

.faq-list p {
	margin-bottom: 0;
	color: var(--muted);
}

.site-footer {
	padding: 64px 0 28px;
	background: #0f172a;
	color: var(--white);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
	gap: 34px;
}

.site-footer p,
.site-footer a,
.site-footer li {
	color: rgba(255, 255, 255, 0.72);
}

.site-footer ul {
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.site-footer li + li {
	margin-top: 8px;
}

.site-footer h2 {
	font-size: 1rem;
}

.brand--footer {
	margin-bottom: 16px;
}

.brand--footer .brand__logo-shell {
	width: 310px;
	max-width: 100%;
	height: 82px;
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.brand--footer small {
	color: rgba(255, 255, 255, 0.58);
}

.footer-bottom {
	justify-content: space-between;
	gap: 20px;
	margin-top: 42px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.86rem;
}

.floating-whatsapp {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 45;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--whatsapp);
	color: var(--white);
	font-weight: 900;
	box-shadow: 0 16px 38px rgba(22, 163, 74, 0.3);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-whatsapp:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 44px rgba(22, 163, 74, 0.36);
}

.floating-whatsapp:focus-visible {
	outline: 3px solid rgba(34, 197, 94, 0.26);
	outline-offset: 4px;
}

.floating-whatsapp span {
	display: none;
}

.floating-whatsapp::before {
	--wa-size: 30px;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 35px;
	height: 35px;
	transform: translate(-50%, -50%);
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23ffffff' d='M380.9 97.1C339 55.1 283.2 32 223.9 32 101 32 1 132 1 254.9c0 39.1 10.2 77.3 29.6 111L0 480l116.8-30.7c32.4 17.7 68.9 27 107.1 27h.1c122.9 0 222.9-100 222.9-222.9 0-59.4-23.1-115.2-66-156.3zM224 438.6c-33.6 0-66.5-9-95.2-26l-6.8-4-69.2 18.2 18.5-67.5-4.4-6.9c-18.7-29.7-28.6-64-28.6-99.5C38.3 151.1 122.2 67.2 224 67.2c49.6 0 96.1 19.3 131.2 54.4 35.1 35.1 54.4 81.7 54.4 131.8 0 101.8-83.8 185.2-185.6 185.2zm101.7-138.9c-5.6-2.8-33-16.3-38.1-18.2-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.4 18.2-17.6 21.9-3.2 3.7-6.5 4.2-12.1 1.4-33.1-16.5-54.8-29.5-76.6-66.8-5.8-10 5.8-9.3 16.5-30.9 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.7 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 33-13.5 37.6-26.5 4.6-13 4.6-24.1 3.2-26.5-1.3-2.4-5-3.8-10.6-6.7z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: none;
}

.catalog-hero {
	position: relative;
	padding: 82px 0 104px;
	background:
		radial-gradient(circle at 80% 22%, rgba(37, 99, 235, 0.12), transparent 34%),
		linear-gradient(90deg, #ffffff 0%, #ffffff 58%, #f5f9ff 100%);
	border-bottom: 0;
	overflow: hidden;
}

.catalog-hero::before {
	content: "";
	position: absolute;
	inset: auto -10% -42% 52%;
	height: 70%;
	background: radial-gradient(circle, rgba(20, 184, 166, 0.1), transparent 62%);
	pointer-events: none;
}

.catalog-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1fr);
	gap: 76px;
	align-items: center;
}

.product-strip article,
.stats-grid div,
.news-grid article {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.hero-storefront {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0;
	background: transparent;
}

.hero-storefront h1 {
	max-width: 680px;
	margin: 0;
	font-size: clamp(2.55rem, 5vw, 4.65rem);
	line-height: 1;
	letter-spacing: 0;
}

.deal-panel {
	position: relative;
	padding: 0;
	background: transparent;
	color: inherit;
	overflow: hidden;
	border-radius: 28px;
	box-shadow: 0 34px 74px rgba(15, 23, 42, 0.16);
	transform: translateZ(0);
}

.deal-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.2)),
		linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 42%);
	pointer-events: none;
}

.deal-panel::after {
	content: "";
	position: absolute;
	inset: 18px;
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 20px;
	pointer-events: none;
}

.deal-panel img {
	width: 100%;
	height: clamp(340px, 34vw, 470px);
	object-fit: cover;
	image-rendering: auto;
	transform: scale(1.01);
	transition: transform 700ms ease;
}

.deal-panel:hover img {
	transform: scale(1.045);
}

.hero-proof {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 3;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
	backdrop-filter: blur(14px);
}

.hero-proof span {
	display: grid;
	place-items: center;
	min-height: 40px;
	border-radius: 10px;
	background: #f8fafc;
	color: #334155;
	font-size: 0.78rem;
	font-weight: 900;
	text-align: center;
}

.category-grid--store {
	grid-template-columns: repeat(4, 1fr);
}

.product-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.product-strip article {
	padding: 22px;
}

.product-strip span,
.news-grid span {
	display: inline-flex;
	margin-bottom: 12px;
	padding: 4px 9px;
	border-radius: 999px;
	background: #eff6ff;
	color: var(--primary);
	font-size: 0.78rem;
	font-weight: 900;
}

.product-strip h2 {
	margin: 0 0 10px;
	font-size: 1.18rem;
	line-height: 1.3;
}

.product-strip p {
	color: var(--muted);
}

.product-strip strong {
	color: var(--ink);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.stats-grid div {
	padding: 24px;
}

.stats-grid strong {
	display: block;
	font-size: 2rem;
	line-height: 1;
	color: var(--primary);
}

.stats-grid span {
	display: block;
	margin-top: 8px;
	color: var(--muted);
	font-weight: 800;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.news-grid article {
	padding: 0 0 22px;
	overflow: hidden;
}

.news-grid img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	margin-bottom: 18px;
}

.news-grid h3 {
	margin: 0 22px 10px;
	line-height: 1.28;
}

.news-grid p {
	margin: 0 22px;
	color: var(--muted);
}

.news-grid span {
	margin-left: 22px;
}

.page-hero {
	padding: 46px 0;
	background: var(--white);
	border-bottom: 1px solid var(--line);
}

.page-hero h1 {
	margin: 0;
	font-size: clamp(2.15rem, 4.4vw, 3.45rem);
	line-height: 1.05;
}

.page-hero--market {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #eef2ff 0%, #ffffff 48%, #ecfeff 100%);
}

.market-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
	gap: 44px;
	align-items: center;
}

.market-hero-visual {
	position: relative;
	min-height: 300px;
}

.market-hero-photo {
	min-height: 0;
	border-radius: 18px;
	box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
	overflow: hidden;
}

.market-hero-photo img {
	width: 100%;
	height: clamp(260px, 25vw, 350px);
	object-fit: cover;
}

.visual-window {
	position: absolute;
	inset: 32px 0 0 24px;
	border: 1px solid rgba(37, 99, 235, 0.18);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 32px 70px rgba(37, 99, 235, 0.15);
	backdrop-filter: blur(14px);
	overflow: hidden;
}

.visual-window__top {
	height: 44px;
	background: #0f172a;
}

.visual-chart {
	display: flex;
	align-items: end;
	gap: 12px;
	height: 138px;
	padding: 24px 30px 10px;
}

.visual-chart span {
	flex: 1;
	border-radius: 999px 999px 4px 4px;
	background: linear-gradient(180deg, #2563eb, #7c3aed);
	animation: bar-rise 2.4s ease-in-out infinite;
}

.visual-chart span:nth-child(1) { height: 46%; }
.visual-chart span:nth-child(2) { height: 78%; animation-delay: 0.15s; }
.visual-chart span:nth-child(3) { height: 58%; animation-delay: 0.3s; }
.visual-chart span:nth-child(4) { height: 90%; animation-delay: 0.45s; }

.visual-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	padding: 8px 24px 24px;
}

.visual-cards span {
	height: 58px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #f8fafc;
}

.visual-badge {
	position: absolute;
	z-index: 2;
	padding: 9px 13px;
	border-radius: 999px;
	background: var(--white);
	color: var(--primary);
	font-weight: 900;
	box-shadow: var(--shadow);
	animation: float-soft 3.2s ease-in-out infinite;
}

.visual-badge--one {
	left: 0;
	top: 34px;
}

.visual-badge--two {
	right: 14px;
	bottom: 12px;
	animation-delay: 0.4s;
}

@keyframes bar-rise {
	50% {
		transform: scaleY(0.78);
	}
}

@keyframes float-soft {
	50% {
		transform: translateY(-8px);
	}
}

.market-toolbar {
	display: grid;
	grid-template-columns: repeat(2, minmax(180px, 1fr));
	gap: 12px;
	margin-top: 28px;
	max-width: 760px;
}

.market-toolbar input,
.market-toolbar select {
	width: 100%;
	min-height: 48px;
	padding: 0 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
	color: var(--ink);
	font: inherit;
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.market-toolbar label {
	grid-column: 1 / -1;
}

.project-market-page {
	padding: 46px 0 70px;
	background: var(--soft);
}

.project-market-layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 32px;
	align-items: start;
}

.filter-sidebar,
.market-results,
.empty-state,
.project-detail,
.blog-card,
.blog-sidebar {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.filter-sidebar {
	position: sticky;
	top: 126px;
	padding: 26px;
}

.filter-sidebar h2 {
	margin: 0 0 26px;
	font-size: 1.35rem;
}

.filter-block + .filter-block {
	margin-top: 28px;
}

.filter-block h3 {
	margin: 0 0 14px;
	font-size: 0.95rem;
	text-transform: uppercase;
}

.filter-block label {
	display: block;
	margin-top: 10px;
	color: #475569;
	font-weight: 700;
}

.filter-block--categories {
	max-height: 430px;
	overflow-y: auto;
	padding-right: 6px;
}

.filter-block--categories::-webkit-scrollbar {
	width: 6px;
}

.filter-block--categories::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: #cbd5e1;
}

.filter-empty {
	margin: 12px 0 0;
	color: var(--muted);
	font-size: 0.9rem;
}

.filter-block label.is-hidden {
	display: none;
}

.filter-block input[type="radio"] {
	margin-right: 8px;
}

.filter-block input[type="range"] {
	width: 100%;
	accent-color: var(--primary);
}

.market-results {
	min-height: 0;
	padding: 22px;
}

.project-grid--market {
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.empty-state {
	display: grid;
	place-items: center;
	min-height: 430px;
	padding: 34px;
	text-align: center;
}

.empty-state span {
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	margin-bottom: 14px;
	border: 4px solid #cbd5e1;
	border-radius: 50%;
	color: transparent;
}

.empty-state h2 {
	margin: 0;
}

.empty-state p {
	color: var(--muted);
}

.project-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
}

.project-pagination.is-hidden {
	display: none;
}

.project-pagination button {
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--ink);
	font: inherit;
	font-weight: 900;
	cursor: pointer;
}

.project-pagination button:not(:disabled):hover {
	border-color: var(--primary);
	color: var(--primary);
}

.project-pagination button:disabled {
	cursor: not-allowed;
	opacity: 0.45;
}

.project-pagination span {
	color: var(--muted);
	font-weight: 800;
}

.project-detail {
	position: fixed;
	top: 110px;
	right: 22px;
	z-index: 70;
	display: none;
	width: min(390px, calc(100% - 44px));
	padding: 24px;
}

.project-detail.is-open {
	display: block;
}

.project-detail button {
	float: right;
	border: 0;
	background: transparent;
	color: var(--muted);
	font-weight: 800;
	cursor: pointer;
}

.project-detail span {
	display: inline-flex;
	margin-bottom: 12px;
	padding: 5px 10px;
	border-radius: 999px;
	background: #eff6ff;
	color: var(--primary);
	font-size: 0.78rem;
	font-weight: 900;
}

.project-detail h2 {
	clear: both;
	margin: 0 0 10px;
}

.project-detail p {
	color: var(--muted);
}

.project-detail strong {
	display: block;
	margin-bottom: 18px;
}

.blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 30px;
	align-items: start;
}

.blog-list {
	display: grid;
	gap: 18px;
}

.blog-card {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 22px;
	padding: 18px;
}

.blog-card__image,
.blog-card__placeholder {
	min-height: 160px;
	border-radius: var(--radius);
	background: linear-gradient(135deg, #eff6ff, #ede9fe);
	overflow: hidden;
}

.blog-card > img.blog-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-card span,
.blog-sidebar h2 {
	color: var(--primary);
	font-weight: 900;
}

.blog-card h2 {
	margin: 6px 0 8px;
	font-size: 1.35rem;
	line-height: 1.25;
}

.blog-card p {
	color: var(--muted);
}

.blog-sidebar {
	position: sticky;
	top: 126px;
	padding: 24px;
}

.blog-sidebar h2 {
	margin: 0 0 14px;
	font-size: 1rem;
	text-transform: uppercase;
}

.blog-sidebar ul {
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
}

.blog-sidebar li + li {
	border-top: 1px solid var(--line);
}

.blog-sidebar a:not(.button) {
	display: block;
	padding: 11px 0;
	color: #475569;
	font-weight: 800;
}

.product-detail-page {
	padding: 54px 0 38px;
	background: var(--white);
}

.product-detail-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
	gap: 48px;
	align-items: center;
}

.product-gallery {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #f8fafc;
	padding: 28px;
}

.project-flow-figure {
	display: grid;
	grid-template-columns: 1fr 34px 1fr;
	gap: 16px;
	align-items: center;
	min-height: 320px;
}

.project-flow-figure div {
	padding: 18px;
	border: 2px solid #0f172a;
	border-radius: var(--radius);
	background: var(--white);
	text-align: center;
	font-weight: 900;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.project-flow-figure span {
	height: 2px;
	background: #0f172a;
	position: relative;
}

.project-flow-figure span::after {
	content: "";
	position: absolute;
	right: -1px;
	top: -4px;
	border-left: 8px solid #0f172a;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}

.breadcrumb-lite {
	margin: 0 0 12px;
	color: var(--muted);
	font-size: 0.86rem;
}

.product-summary h1 {
	margin: 0 0 16px;
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1.08;
}

.product-price {
	display: block;
	margin-bottom: 18px;
	color: var(--whatsapp);
	font-size: 1.35rem;
}

.product-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 22px;
}

.product-actions .button {
	flex: 1 1 190px;
	min-height: 54px;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 900;
	text-align: center;
	opacity: 1;
	cursor: pointer;
}

.product-actions .button,
.product-actions .button:visited,
.product-actions .button:hover,
.product-actions .button:focus {
	color: var(--white);
}

.product-actions .product-add-cart,
.woocommerce .product-actions .product-add-cart,
.woocommerce a.button.product-add-cart {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	border-color: transparent;
	box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.product-actions .product-whatsapp,
.woocommerce .product-actions .product-whatsapp {
	background: linear-gradient(135deg, #16a34a, #059669);
	border-color: transparent;
	box-shadow: 0 14px 30px rgba(22, 163, 74, 0.24);
}

.product-actions .button:hover,
.product-actions .button:focus {
	transform: translateY(-1px);
	filter: saturate(1.05);
}

.product-meta-list {
	margin: 0;
	padding: 18px 0 0;
	border-top: 1px solid var(--line);
	list-style: none;
	color: var(--muted);
}

.product-meta-list li + li {
	margin-top: 10px;
}

.product-tabs-section {
	border-top: 1px solid var(--line);
	background: var(--white);
}

.product-tabs {
	display: flex;
	gap: 28px;
	border-bottom: 1px solid var(--line);
	overflow-x: auto;
}

.product-tabs a,
.product-tabs button {
	padding: 18px 0;
	border-bottom: 3px solid transparent;
	border-left: 0;
	border-right: 0;
	border-top: 0;
	background: transparent;
	color: var(--muted);
	font: inherit;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 0.82rem;
	white-space: nowrap;
	cursor: pointer;
}

.product-tabs a:first-child,
.product-tabs button.is-active {
	border-color: var(--primary);
	color: var(--ink);
}

.product-description {
	max-width: 980px;
	padding: 28px 0 54px;
	color: #334155;
}

.product-description h2 {
	margin: 22px 0 6px;
	font-size: 1.25rem;
}

.product-tab-panel {
	display: none;
}

.product-tab-panel.is-active {
	display: block;
}

.download-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 22px;
}

.download-card {
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--soft);
}

.download-card strong,
.download-card span {
	display: block;
}

.download-card strong {
	color: var(--ink);
}

.download-card span {
	margin-top: 6px;
	color: var(--muted);
	font-size: 0.92rem;
}

.abstract-box {
	padding: 22px;
	border: 1px solid #bfdbfe;
	border-radius: var(--radius);
	background: #eff6ff;
}

.review-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--soft);
}

.review-summary strong {
	display: block;
	font-size: 2rem;
	line-height: 1;
	color: var(--primary);
}

.review-summary span,
.review-card span {
	color: var(--muted);
}

.review-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	max-height: 660px;
	padding-right: 8px;
	overflow: auto;
}

.review-card {
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.review-card header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.review-card strong {
	color: var(--ink);
}

.review-stars {
	color: #f59e0b;
	font-size: 0.92rem;
	letter-spacing: 0;
	white-space: nowrap;
}

.review-card p {
	margin: 0;
	color: #334155;
}

@media (max-width: 980px) {
	.header-cta {
		display: none;
	}

	.cart-link {
		min-height: 40px;
		padding: 0 10px;
	}

	.cart-link span {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.main-nav {
		position: absolute;
		left: 16px;
		right: 16px;
		top: 111px;
		display: none;
		padding: 18px;
		border: 1px solid var(--line);
		border-radius: var(--radius);
		background: var(--white);
		box-shadow: var(--shadow);
	}

	.main-nav.is-open {
		display: block;
	}

	.menu {
		display: grid;
		gap: 4px;
	}

	.hero-grid,
	.section-heading--split,
	.service-layout,
	.seo-grid,
	.faq-layout,
	.whatsapp-box {
		grid-template-columns: 1fr;
	}

	.hero-section {
		padding-top: 58px;
	}

	.trust-grid,
	.category-grid,
	.service-tile-grid,
	.project-grid,
	.footer-grid,
	.product-strip,
	.news-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.technology-list {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.flow-grid,
	.flow-grid--languages {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.catalog-hero__grid {
		grid-template-columns: 1fr;
	}

	.hero-storefront {
		order: -1;
	}

	.deal-panel {
		min-height: 440px;
	}

	.project-market-layout,
	.blog-layout,
	.product-detail-grid {
		grid-template-columns: 1fr;
	}

	.filter-sidebar,
	.blog-sidebar {
		position: static;
	}

	.project-grid--market {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 680px) {
	.top-strip__inner,
	.catalog-note,
	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.nav-shell {
		min-height: 68px;
	}

	.brand__logo-shell {
		width: 220px;
		height: 54px;
		max-width: 64vw;
	}

	.main-nav {
		top: 104px;
	}

	.hero-section {
		padding: 44px 0 46px;
	}

	.hero-copy h1 {
		font-size: 2.32rem;
	}

	.hero-search div {
		grid-template-columns: 1fr;
	}

	.trust-grid,
	.category-grid,
	.project-grid,
	.service-list,
	.seo-links,
	.footer-grid,
	.catalog-hero__grid,
	.product-strip,
	.stats-grid,
	.news-grid {
		grid-template-columns: 1fr;
	}

	.service-tile-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.service-tile {
		min-height: 118px;
		padding: 18px 12px;
		border-radius: 16px;
	}

	.service-tile .service-icon {
		width: 42px;
		height: 42px;
		margin-bottom: 9px;
		border-radius: 13px;
	}

	.service-tile .service-icon svg {
		width: 22px;
		height: 22px;
	}

	.service-tile strong {
		max-width: 100%;
		font-size: 0.86rem;
		line-height: 1.25;
	}

	.technology-card {
		grid-template-columns: 1fr;
		min-height: 0;
		border-radius: 16px;
	}

	.technology-card__image {
		min-height: 190px;
		aspect-ratio: 16 / 9;
	}

	.technology-card__body {
		padding: 18px;
		align-content: start;
	}

	.technology-card h3 {
		margin-bottom: 14px;
		font-size: 1.08rem;
	}

	.technology-links {
		gap: 8px;
	}

	.technology-links a {
		flex: 1 1 100%;
		min-height: 42px;
		padding: 0 10px;
		font-size: 0.84rem;
	}

	.selection-flow {
		padding: 18px;
	}

	.flow-grid,
	.flow-grid--compact,
	.flow-grid--languages {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.section {
		padding: 56px 0;
	}

	.project-card__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.project-card__actions .button,
	.project-card__actions .button--cart {
		flex: 0 0 auto;
		width: 100%;
		min-height: 46px;
	}

	.market-toolbar,
	.project-grid--market,
	.download-grid,
	.review-grid,
	.blog-card,
	.market-hero-grid,
	.project-flow-figure {
		grid-template-columns: 1fr;
	}

	.market-hero-visual {
		min-height: 240px;
	}

	.market-results {
		padding: 18px;
	}

	.hero-proof {
		left: 14px;
		right: 14px;
		bottom: 14px;
		grid-template-columns: repeat(2, 1fr);
		padding: 8px;
	}

	.hero-proof span {
		min-height: 34px;
		font-size: 0.72rem;
	}

	.floating-whatsapp {
		right: 14px;
		bottom: 14px;
		width: 54px;
		height: 54px;
	}

	.floating-whatsapp::before {
		--wa-size: 28px;
	}
}
