:root {
	--color-dark: #0F172A;
	--color-yellow: #F59E0B;
	--color-white: #fff;
	--color-light: #f4f6f8;
	--color-muted: #64748b;
	--color-line: #e5e7eb;
	--shadow: 0 14px 35px rgba(15, 23, 42, .12);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--color-dark);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.6;
	background: var(--color-white);
}

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

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

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

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

.topbar {
	background: #06101f;
	color: var(--color-white);
	font-size: 14px;
}

.topbar__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 42px;
}

.topbar__inner a:first-child::before {
	content: "✉";
	color: var(--color-yellow);
	margin-right: 8px;
}

.topbar__inner a:nth-child(2)::before {
	content: "☎";
	color: var(--color-yellow);
	margin-right: 8px;
}

.topbar__whatsapp {
	margin-left: auto;
}

.topbar__whatsapp::before {
	content: "●";
	color: #22c55e;
	margin-right: 8px;
}

.navbar {
	position: sticky;
	top: 0;
	z-index: 30;
	background: var(--color-white);
	box-shadow: 0 1px 0 rgba(15, 23, 42, .08);
}

.navbar__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 86px;
}

.site-branding,
.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.site-branding img {
	width: 70px;
}

.site-branding strong {
	display: block;
	font-size: 34px;
	line-height: 1;
	letter-spacing: 0;
}

.site-branding small {
	display: block;
	color: var(--color-yellow);
	font-size: 17px;
	letter-spacing: 0;
	line-height: 1;
}

.primary-navigation {
	margin-left: auto;
}

.primary-navigation ul,
.site-footer ul {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation a {
	display: block;
	padding: 30px 0;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
}

.primary-navigation a:hover {
	color: var(--color-yellow);
}

.button,
button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 22px;
	border: 0;
	background: var(--color-yellow);
	color: #111827;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	cursor: pointer;
}

.button::after {
	content: "›";
	margin-left: 12px;
	font-size: 22px;
	line-height: 1;
}

.button--ghost {
	border: 1px solid rgba(255,255,255,.7);
	background: rgba(15,23,42,.78);
	color: var(--color-white);
}

.button--header {
	white-space: nowrap;
}

.button--wide {
	width: 100%;
}

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

.menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 5px auto;
	background: var(--color-dark);
}

.hero-slider {
	position: relative;
	min-height: 430px;
	overflow: hidden;
	background: var(--color-dark);
}

.hero-slide {
	position: absolute;
	inset: 0;
	display: grid;
	align-items: center;
	min-height: 430px;
	background-image: linear-gradient(90deg, rgba(15, 23, 42, .86), rgba(15, 23, 42, .28)), url('../images/hero-placeholder.svg');
	background-position: center;
	background-size: cover;
	opacity: 0;
	transition: opacity .5s ease;
}

.hero-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(2, 6, 23, .45) 0%, rgba(2, 6, 23, .05) 58%, rgba(2, 6, 23, .14) 100%);
}

.hero-slide.is-active {
	position: relative;
	opacity: 1;
	z-index: 1;
}

.hero__content {
	position: relative;
	z-index: 2;
	color: var(--color-white);
}

.eyebrow,
.section-kicker {
	margin: 0 0 8px;
	color: var(--color-yellow);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.hero h1 {
	max-width: 460px;
	margin: 0;
	font-size: 46px;
	line-height: 1.04;
	letter-spacing: 0;
}

.hero h1::first-line {
	color: var(--color-white);
}

.hero p:not(.eyebrow) {
	max-width: 420px;
	margin: 18px 0 0;
	font-size: 18px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.slider-arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(15, 23, 42, .78);
	color: var(--color-white);
	font-size: 34px;
	cursor: pointer;
	transform: translateY(-50%);
}

.slider-arrow--prev {
	left: 18px;
}

.slider-arrow--next {
	right: 18px;
}

.slider-dots {
	position: absolute;
	z-index: 3;
	left: 50%;
	bottom: 18px;
	display: flex;
	gap: 10px;
	transform: translateX(-50%);
}

.slider-dots button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--color-white);
	opacity: .7;
	cursor: pointer;
}

.slider-dots button.is-active {
	background: var(--color-yellow);
	opacity: 1;
}

.proof-strip,
.why-section,
.site-footer,
.contact-section {
	background: var(--color-dark);
	color: var(--color-white);
}

.proof-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding: 22px 0;
}

.proof-grid div {
	border-left: 1px solid rgba(255,255,255,.14);
	padding-left: 22px;
}

.proof-grid span,
.why-item span {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 8px;
	border: 2px solid var(--color-yellow);
	border-radius: 50%;
	color: var(--color-yellow);
	font-weight: 800;
}

.proof-grid strong {
	display: block;
}

.proof-grid p {
	margin: 2px 0 0;
	color: #dbe4ef;
	font-size: 14px;
}

.section {
	padding: 74px 0;
}

.section--light {
	background: var(--color-light);
}

.section-title {
	margin: 0 0 32px;
	text-align: center;
	font-size: 34px;
	line-height: 1.2;
}

.section .section-kicker {
	text-align: center;
}

.about-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 48px;
	align-items: center;
}

.about-grid h2,
.contact-section h2 {
	margin: 0 0 16px;
	font-size: 40px;
	line-height: 1.15;
}

.about-grid p {
	font-size: 17px;
}

.brand-panel {
	padding: 30px;
	background: var(--color-light);
	box-shadow: var(--shadow);
}

.brand-panel p {
	margin: 0 0 18px;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

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

.brand-grid span {
	display: grid;
	place-items: center;
	min-height: 92px;
	background: var(--color-white);
	box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
	overflow: hidden;
}

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

.card-grid {
	display: grid;
	gap: 18px;
}

.card-grid--parts {
	grid-template-columns: repeat(7, 1fr);
}

.card-grid--services {
	grid-template-columns: repeat(3, 1fr);
}

.part-card,
.service-card,
blockquote,
.contact-card {
	background: var(--color-white);
	box-shadow: 0 8px 24px rgba(15, 23, 42, .09);
}

.part-card {
	min-width: 0;
	padding: 16px;
}

.part-card__visual {
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	margin-bottom: 14px;
	background: #fff;
	overflow: hidden;
}

.part-card__visual img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 8px;
}

.part-card h3,
.service-card h3 {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.2;
}

.part-card p,
.service-card p {
	margin: 0 0 14px;
	color: #334155;
	font-size: 14px;
}

.part-card a {
	color: var(--color-yellow);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.service-card {
	position: relative;
	overflow: hidden;
}

.service-card__visual {
	height: 140px;
	background: linear-gradient(135deg, rgba(15,23,42,.95), rgba(15,23,42,.4)), url('../images/hero-placeholder.svg');
	background-position: center;
	background-size: cover;
}

.service-card__icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin: -29px 0 12px 20px;
	border-radius: 50%;
	background: var(--color-yellow);
	font-weight: 800;
}

.service-card h3,
.service-card p {
	padding: 0 20px;
}

.service-card p {
	padding-bottom: 20px;
}

.why-section {
	padding: 44px 0;
	background-image: linear-gradient(90deg, rgba(15,23,42,.95), rgba(15,23,42,.92)), url('../images/hero-placeholder.svg');
	background-position: center;
	background-size: cover;
}

.why-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(6, 1fr);
	gap: 18px;
	align-items: stretch;
}

.why-heading {
	border-right: 1px solid rgba(255,255,255,.18);
	padding-right: 28px;
}

.why-heading h2 {
	margin: 0;
	font-size: 36px;
	text-transform: uppercase;
}

.why-item {
	border-left: 1px solid rgba(255,255,255,.14);
	padding: 0 12px;
	text-align: center;
}

.why-item span {
	width: 34px;
	height: 34px;
	background: var(--color-yellow);
}

.why-item strong {
	display: block;
	font-size: 14px;
	line-height: 1.35;
}

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

blockquote {
	margin: 0;
	padding: 32px;
}

blockquote p {
	margin: 0 0 18px;
	font-size: 18px;
}

blockquote::before {
	content: "“";
	color: var(--color-yellow);
	font-size: 60px;
	line-height: .5;
}

cite {
	font-style: normal;
	font-weight: 800;
}

.contact-section {
	padding: 64px 0;
	background-image: linear-gradient(90deg, rgba(15,23,42,.98), rgba(15,23,42,.82)), url('../images/hero-placeholder.svg');
	background-position: center;
	background-size: cover;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 40px;
	align-items: stretch;
}

.contact-form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 24px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	min-height: 48px;
	border: 0;
	padding: 12px 14px;
	font: inherit;
}

.contact-form textarea {
	grid-column: 1 / -1;
	min-height: 104px;
	resize: vertical;
}

.contact-form .button {
	width: fit-content;
}

.contact-card {
	padding: 18px;
	color: var(--color-dark);
}

.contact-card h3 {
	margin: 0 0 8px;
	font-size: 18px;
}

.map-frame {
	overflow: hidden;
	margin: -18px -18px 20px;
	background: var(--color-light);
}

.map-frame iframe {
	display: block;
	width: 100%;
	height: 280px;
	border: 0;
}

.location-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 18px;
}

.location-list > div {
	border-left: 3px solid var(--color-yellow);
	padding-left: 14px;
}

.location-list p {
	margin: 0 0 8px;
	color: #334155;
	font-size: 14px;
}

.site-footer {
	padding-top: 46px;
	background: #06101f;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr .8fr 1fr;
	gap: 44px;
}

.footer-brand img {
	width: 54px;
}

.site-footer p,
.site-footer a {
	color: #dbe4ef;
}

.site-footer h3 {
	margin: 0 0 14px;
	color: var(--color-white);
	font-size: 16px;
	text-transform: uppercase;
}

.site-footer ul {
	display: block;
}

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

.footer-bottom {
	margin-top: 34px;
	border-top: 1px solid rgba(255,255,255,.12);
	padding: 16px 0;
	font-size: 14px;
}

.footer-bottom p {
	margin: 0;
}

.generic-page {
	padding: 70px 0;
}

.section-action {
	margin: 30px 0 0;
	text-align: center;
}

.page-hero {
	padding: 82px 0;
	background-image: linear-gradient(90deg, rgba(15,23,42,.9), rgba(15,23,42,.45)), url('../images/hero-slide-1.png');
	background-position: center;
	background-size: cover;
	color: var(--color-white);
}

.page-hero h1 {
	max-width: 720px;
	margin: 0;
	font-size: 48px;
	line-height: 1.1;
}

.page-hero p:not(.section-kicker) {
	max-width: 620px;
	margin: 16px 0 26px;
	font-size: 18px;
}

.catalog-group + .catalog-group {
	margin-top: 58px;
}

.catalog-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
	border-bottom: 1px solid var(--color-line);
	padding-bottom: 14px;
}

.catalog-heading .section-kicker {
	text-align: left;
}

.catalog-heading h2 {
	margin: 0;
	font-size: 30px;
}

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

.product-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: var(--color-white);
	box-shadow: 0 8px 24px rgba(15, 23, 42, .09);
}

.product-card__image {
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	padding: 12px;
	background: #fff;
	border-bottom: 1px solid var(--color-line);
}

.product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-card__body {
	padding: 16px;
}

.product-card__body span {
	display: inline-block;
	margin-bottom: 8px;
	color: var(--color-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.product-card h3 {
	margin: 0 0 8px;
	font-size: 17px;
	line-height: 1.25;
}

.product-card p {
	margin: 0 0 14px;
	color: #334155;
	font-size: 14px;
}

.product-card a:not(.product-card__image) {
	color: var(--color-yellow);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

@media (max-width: 1080px) {
	.card-grid--parts {
		grid-template-columns: repeat(3, 1fr);
	}

	.why-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.why-heading {
		grid-column: 1 / -1;
		border-right: 0;
	}
}

@media (max-width: 820px) {
	.container {
		width: min(100% - 28px, 1180px);
	}

	.topbar__inner {
		flex-wrap: wrap;
		gap: 8px 18px;
		padding: 9px 0;
	}

	.topbar__whatsapp {
		margin-left: 0;
	}

	.navbar__inner {
		min-height: 72px;
	}

	.site-branding img {
		width: 54px;
	}

	.site-branding strong {
		font-size: 26px;
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
	}

	.primary-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		margin-left: 0;
		background: var(--color-white);
		box-shadow: var(--shadow);
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-navigation ul {
		display: block;
		padding: 10px 22px 22px;
	}

	.primary-navigation a {
		padding: 12px 0;
	}

	.button--header {
		display: none;
	}

	.hero-slider,
	.hero-slide {
		min-height: 560px;
	}

	.hero h1 {
		font-size: 42px;
	}

	.slider-arrow {
		display: none;
	}

	.proof-grid,
	.about-grid,
	.contact-grid,
	.footer-grid,
	.testimonial-grid {
		grid-template-columns: 1fr;
	}

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

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

	.location-list,
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.card-grid--parts,
	.card-grid--services,
	.why-grid,
	.brand-grid,
	.location-list,
	.product-grid {
		grid-template-columns: 1fr;
	}

	.hero h1 {
		font-size: 34px;
	}

	.section {
		padding: 54px 0;
	}

	.section-title,
	.about-grid h2,
	.contact-section h2 {
		font-size: 28px;
	}
}
