:root {
	--bg: #0f1720;
	--panel: #16212d;
	--text: #edf3f8;
	--muted: #9fb0c1;
	--line: rgba(255, 255, 255, 0.08);
	--accent: #d94134;
	--accent-alt: #1f6fb2;
	--white: #ffffff;
	--shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Segoe UI", Tahoma, sans-serif;
	background: radial-gradient(circle at top right, rgba(31, 111, 178, 0.22), transparent 28%), linear-gradient(180deg, #0b1219 0%, #0f1720 52%, #101b26 100%);
	color: var(--text);
	line-height: 1.6;
	padding-bottom: 120px;
}

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

a:focus-visible,
button:focus-visible {
	outline: 2px solid rgba(217, 65, 52, 0.9);
	outline-offset: 3px;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 24px;
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(11, 18, 25, 0.88);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
}

.site-header__inner,
.site-nav,
.hero__actions,
.cta-band,
.site-footer__bottom .container,
.sticky-cta {
	display: flex;
	align-items: center;
}

.site-header__inner {
	justify-content: space-between;
	padding: 18px 0;
	gap: 24px;
}

.site-brand {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.site-brand__eyebrow,
.section-tag,
.card__badge,
.taxonomy-pills span {
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 12px;
}

.site-brand strong {
	font-size: 22px;
}

.site-nav {
	gap: 18px;
}

.site-nav__menu,
.footer-menu,
.footer-points,
.check-list,
.detail-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-nav__menu {
	display: flex;
	gap: 18px;
	color: var(--muted);
}

.site-nav__menu a:hover,
.site-nav__menu .current-menu-item > a,
.site-nav__menu .current_page_item > a,
.text-link,
.section-tag,
.card__badge {
	color: var(--accent);
}

.site-header__toggle {
	display: none;
	cursor: pointer;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent) 0%, #ef5a4d 100%);
	color: var(--white);
	font-weight: 700;
	border: 0;
	box-shadow: var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.button--secondary {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: none;
}

.button--light {
	background: var(--white);
	color: #101b26;
}

.hero,
.section,
.page-shell {
	padding: 84px 0;
}

.hero__grid,
.split-section,
.product-single__hero {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 42px;
	align-items: center;
}

.hero h1,
.section-heading h1,
.section-heading h2,
.page-header h1,
.product-single h1,
.case-single h1 {
	margin: 0 0 16px;
	font-size: clamp(36px, 5vw, 62px);
	line-height: 1.06;
}

.hero__subtitle,
.section-heading p,
.hero p,
.page-content,
.page-content p,
.product-row__content p {
	color: var(--muted);
}

.hero__actions {
	gap: 14px;
	margin: 30px 0;
	flex-wrap: wrap;
}

.hero__metrics,
.feature-grid,
.card-grid,
.contact-cards,
.site-footer__grid,
.product-detail-grid {
	display: grid;
	gap: 22px;
}

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

.hero__metrics div,
.feature-card,
.card,
.quote-box,
.stats-panel,
.contact-card,
.product-row,
.taxonomy-pills span {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--line);
	border-radius: 24px;
}

.hero__metrics div,
.stats-panel div {
	padding: 20px;
}

.hero__metrics strong,
.stats-panel strong {
	display: block;
	font-size: 30px;
	margin-bottom: 6px;
}

.quote-box {
	padding: 28px;
	background: linear-gradient(180deg, rgba(217, 65, 52, 0.14), rgba(255, 255, 255, 0.04));
}

.quote-box__placeholder {
	padding: 22px;
	border: 1px dashed rgba(255, 255, 255, 0.2);
	border-radius: 18px;
}

#wpforms-28-field_1-container {
	display: none !important;
}

.section-heading {
	max-width: 780px;
	margin-bottom: 36px;
}

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

.feature-card,
.contact-card {
	padding: 26px;
}

.section--dark {
	background: rgba(6, 12, 18, 0.52);
}

.section--accent {
	padding-top: 0;
}

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

.card {
	overflow: hidden;
}

.card img,
.product-row__image img,
.product-single__image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: #12202c;
}

.card__body,
.product-row__content {
	padding: 24px;
}

.image-stack {
	position: relative;
}

.stats-panel {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 16px;
	margin-top: 20px;
}

.stats-panel--full {
	grid-template-columns: 1fr;
}

.check-list li,
.detail-list li,
.footer-points li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 12px;
	color: var(--muted);
}

.check-list li::before,
.detail-list li::before,
.footer-points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 11px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
}

.cta-band {
	justify-content: space-between;
	gap: 20px;
	padding: 36px;
	border-radius: 28px;
	background: linear-gradient(135deg, var(--accent-alt) 0%, var(--accent) 100%);
}

.taxonomy-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}

.taxonomy-pills span {
	padding: 12px 16px;
}

.product-list {
	display: grid;
	gap: 28px;
}

.product-row {
	display: grid;
	grid-template-columns: 320px 1fr;
	overflow: hidden;
}

.product-detail-grid {
	grid-template-columns: repeat(3, 1fr);
	margin: 22px 0;
}

.product-detail-grid--single {
	margin-top: 42px;
}

.text-link {
	font-weight: 700;
}

.site-footer {
	background: #0a1016;
	border-top: 1px solid var(--line);
}

.site-footer__grid {
	grid-template-columns: 1.3fr 0.8fr 1fr;
	padding: 56px 0;
}

.site-footer__bottom {
	border-top: 1px solid var(--line);
	padding: 18px 0;
	color: var(--muted);
}

.sticky-cta {
	position: fixed;
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%);
	width: min(760px, calc(100% - 24px));
	justify-content: space-between;
	gap: 18px;
	padding: 16px 18px;
	background: rgba(10, 16, 22, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	backdrop-filter: blur(14px);
	box-shadow: var(--shadow);
	z-index: 45;
}

.sticky-cta__text {
	display: grid;
	gap: 2px;
}

.sticky-cta__text span {
	color: var(--muted);
}

.whatsapp-float {
	position: fixed;
	right: 18px;
	bottom: 112px;
	z-index: 45;
	padding: 14px 18px;
	background: #1d9d58;
	border-radius: 999px;
	color: var(--white);
	font-weight: 700;
	box-shadow: var(--shadow);
}

@media (max-width: 980px) {
	.hero__grid,
	.split-section,
	.product-single__hero,
	.product-row,
	.site-footer__grid,
	.feature-grid,
	.card-grid,
	.product-detail-grid,
	.hero__metrics,
	.stats-panel {
		grid-template-columns: 1fr;
	}

	.site-header__toggle {
		display: inline-flex;
		padding: 10px 14px;
		border-radius: 999px;
		border: 1px solid var(--line);
		background: transparent;
		color: var(--text);
	}

	.site-nav {
		position: absolute;
		right: 16px;
		top: calc(100% + 12px);
		flex-direction: column;
		align-items: stretch;
		width: min(320px, calc(100% - 32px));
		padding: 20px;
		background: #111b25;
		border: 1px solid var(--line);
		border-radius: 20px;
		display: none;
	}

	.site-nav.is-open,
	.site-nav__menu {
		display: flex;
	}

	.site-nav__menu {
		flex-direction: column;
	}
}

@media (max-width: 680px) {
	.hero,
	.section,
	.page-shell {
		padding: 64px 0;
	}

	.sticky-cta {
		flex-direction: column;
		align-items: stretch;
		bottom: 12px;
	}

	.whatsapp-float {
		right: 12px;
		bottom: 172px;
		padding: 12px 16px;
	}

	body {
		padding-bottom: 180px;
	}
}
