/*
Theme Name: Vessentra Industrial
Theme URI: https://vessentra.com/
Author: Vessentra
Description: An original responsive industrial systems theme for Vessentra.
Version: 1.6.0
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: vessentra-industrial
*/

:root {
	--ink: #0d1c2a;
	--ink-soft: #425160;
	--navy: #0b2338;
	--navy-deep: #071827;
	--teal: #1a8178;
	--teal-bright: #48b7a9;
	--mint: #dcefeb;
	--ice: #eef4f3;
	--cloud: #f5f7f6;
	--white: #ffffff;
	--line: rgba(13, 28, 42, 0.14);
	--line-dark: rgba(255, 255, 255, 0.16);
	--shadow: 0 24px 70px rgba(11, 35, 56, 0.12);
	--radius-sm: 12px;
	--radius-md: 22px;
	--radius-lg: 34px;
	--container: 1200px;
	--font-sans: "Aptos", "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

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

button,
input,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid var(--teal-bright);
	outline-offset: 4px;
}

.skip-link {
	position: fixed;
	z-index: 1000;
	top: 12px;
	left: 12px;
	padding: 10px 16px;
	transform: translateY(-150%);
	border-radius: 8px;
	background: var(--white);
	color: var(--ink);
}

.skip-link:focus {
	transform: translateY(0);
}

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

.site-container {
	width: min(calc(100% - 48px), var(--container));
	margin-inline: auto;
}

.section {
	padding: 112px 0;
}

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

.section--dark {
	overflow: hidden;
	background: var(--navy-deep);
	color: var(--white);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 22px;
	color: var(--teal);
	font-size: 0.78rem;
	font-weight: 720;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 28px;
	height: 1px;
	background: currentColor;
	content: "";
}

.section--dark .eyebrow {
	color: var(--teal-bright);
}

.display-title,
.section-title,
.entry-title {
	margin: 0;
	font-weight: 540;
	letter-spacing: -0.045em;
	line-height: 1.03;
	text-wrap: balance;
}

.display-title {
	max-width: 780px;
	font-size: clamp(3.3rem, 6.7vw, 6.7rem);
}

.section-title {
	max-width: 760px;
	font-size: clamp(2.5rem, 4.8vw, 4.6rem);
}

.section-intro {
	max-width: 610px;
	margin: 28px 0 0;
	color: var(--ink-soft);
	font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.section--dark .section-intro {
	color: rgba(255, 255, 255, 0.7);
}

.button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--teal);
	color: var(--white);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
	background: #126c65;
}

.button--ghost {
	border-color: var(--line);
	background: transparent;
	color: var(--ink);
}

.button--ghost:hover {
	border-color: var(--ink);
	background: var(--ink);
	color: var(--white);
}

.button--light {
	background: var(--white);
	color: var(--navy);
}

.button--light:hover {
	background: var(--mint);
	color: var(--navy);
}

.button__arrow {
	font-size: 1.15em;
	transition: transform 180ms ease;
}

.button:hover .button__arrow,
.text-link:hover .button__arrow {
	transform: translateX(4px);
}

.site-header {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	left: 0;
	padding: 17px 0;
	border-bottom: 1px solid transparent;
	transition: padding 200ms ease, background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
	padding: 11px 0;
	border-color: var(--line);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 10px 35px rgba(11, 35, 56, 0.06);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.brand {
	display: inline-flex;
	align-items: center;
	color: var(--navy);
	font-size: 1.12rem;
	font-weight: 790;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.brand__logo {
	display: block;
	width: auto;
	height: 35px;
}

.site-header.is-scrolled .brand__logo,
.site-header.is-menu-open .brand__logo {
	height: 32px;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.4vw, 34px);
}

.primary-nav a {
	position: relative;
	color: #263848;
	font-size: 0.88rem;
	font-weight: 650;
}

.primary-nav > a:not(.button)::after {
	position: absolute;
	right: 0;
	bottom: -7px;
	left: 0;
	height: 1px;
	background: var(--teal);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.primary-nav .button {
	min-height: 44px;
	padding-inline: 19px;
	color: var(--white);
}

.nav-dropdown {
	position: relative;
}

.nav-dropdown__trigger {
	display: flex;
	align-items: center;
	gap: 7px;
}

.nav-dropdown__label {
	position: relative;
}

.nav-dropdown__label::after {
	position: absolute;
	right: 0;
	bottom: -7px;
	left: 0;
	height: 1px;
	background: var(--teal);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown__label::after,
.nav-dropdown:focus-within .nav-dropdown__label::after,
.nav-dropdown.is-open .nav-dropdown__label::after {
	transform: scaleX(1);
	transform-origin: left;
}

.nav-dropdown__toggle {
	display: inline-flex;
	width: 25px;
	height: 25px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--teal);
	cursor: pointer;
}

.nav-dropdown__chevron {
	width: 7px;
	height: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown__chevron,
.nav-dropdown:hover .nav-dropdown__chevron,
.nav-dropdown:focus-within .nav-dropdown__chevron {
	transform: translateY(2px) rotate(225deg);
}

.nav-dropdown__menu {
	position: absolute;
	z-index: 120;
	top: calc(100% + 25px);
	left: 50%;
	width: min(410px, calc(100vw - 32px));
	padding: 16px 28px 18px;
	border: 1px solid rgba(13, 28, 42, 0.08);
	border-radius: 3px;
	background: var(--white);
	box-shadow: 0 28px 75px rgba(7, 24, 39, 0.18);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-50%, 10px);
	transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.nav-dropdown__menu::before {
	position: absolute;
	right: 0;
	bottom: 100%;
	left: 0;
	height: 28px;
	content: "";
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.nav-dropdown__menu a {
	display: flex;
	min-height: 58px;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding: 0;
	border-bottom: 1px solid rgba(13, 28, 42, 0.09);
	color: var(--ink-soft);
	font-size: 0.94rem;
	font-weight: 560;
	transition: color 160ms ease, padding-left 160ms ease;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
	padding-left: 6px;
	color: var(--teal);
}

.nav-dropdown__menu a > span:last-child {
	color: var(--teal);
	font-size: 1.05rem;
	transition: transform 160ms ease;
}

.nav-dropdown__menu a:hover > span:last-child {
	transform: translateX(3px);
}

.nav-dropdown__menu .nav-dropdown__all {
	min-height: 54px;
	border-bottom: 0;
	color: var(--teal);
	font-size: 0.78rem;
	font-weight: 720;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--white);
	color: var(--ink);
	cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
	display: block;
	width: 19px;
	height: 1.5px;
	margin: 5px auto;
	background: currentColor;
	content: "";
	transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
	transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
	transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
	position: relative;
	overflow: hidden;
	min-height: 830px;
	padding: 148px 0 48px;
	background:
		linear-gradient(90deg, rgba(246, 249, 248, 0.98) 0%, rgba(246, 249, 248, 0.95) 38%, rgba(246, 249, 248, 0.24) 65%, rgba(246, 249, 248, 0) 100%),
		var(--cloud);
}

.hero::before {
	position: absolute;
	top: -16vw;
	left: -10vw;
	width: 46vw;
	height: 46vw;
	border: 1px solid rgba(26, 129, 120, 0.11);
	border-radius: 50%;
	content: "";
}

.hero__image {
	position: absolute;
	top: 0;
	right: 0;
	width: min(61vw, 1120px);
	height: 100%;
	object-fit: cover;
	object-position: 63% center;
}

.hero__veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(7, 24, 39, 0.12));
	pointer-events: none;
}

.hero__inner {
	position: relative;
	z-index: 2;
}

.hero__copy {
	width: min(62%, 750px);
	padding-top: 62px;
}

.hero__lead {
	max-width: 590px;
	margin: 32px 0 0;
	color: var(--ink-soft);
	font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

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

.hero__meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: min(61%, 720px);
	margin-top: 84px;
	border-top: 1px solid var(--line);
}

.hero__meta-item {
	padding: 22px 22px 0 0;
}

.hero__meta-item + .hero__meta-item {
	padding-left: 22px;
	border-left: 1px solid var(--line);
}

.hero__meta strong {
	display: block;
	margin-bottom: 4px;
	color: var(--ink);
	font-size: 0.9rem;
}

.hero__meta span {
	color: var(--ink-soft);
	font-size: 0.82rem;
}

.hero__note {
	position: absolute;
	z-index: 3;
	right: max(24px, calc((100vw - var(--container)) / 2));
	bottom: 48px;
	width: 270px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: var(--radius-md);
	background: rgba(7, 24, 39, 0.8);
	box-shadow: var(--shadow);
	color: var(--white);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

.hero__note-label {
	display: block;
	margin-bottom: 12px;
	color: var(--teal-bright);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hero__note strong {
	display: block;
	font-size: 1.08rem;
	line-height: 1.4;
}

.intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(60px, 9vw, 140px);
	align-items: start;
}

.intro-copy {
	max-width: 640px;
}

.intro-copy p {
	margin: 0 0 24px;
	color: var(--ink-soft);
	font-size: 1.12rem;
}

.intro-points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 42px;
}

.intro-point {
	padding: 22px 0;
	border-top: 1px solid var(--line);
}

.intro-point strong {
	display: block;
	margin-bottom: 6px;
	font-size: 1rem;
}

.intro-point span {
	color: var(--ink-soft);
	font-size: 0.88rem;
}

.section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 48px;
	margin-bottom: 56px;
}

.section-head .section-intro {
	margin-bottom: 4px;
}

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

.solution-card {
	position: relative;
	display: flex;
	min-height: 330px;
	flex-direction: column;
	justify-content: space-between;
	padding: 30px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--white);
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.solution-card::after {
	position: absolute;
	right: -65px;
	bottom: -65px;
	width: 150px;
	height: 150px;
	border: 1px solid rgba(26, 129, 120, 0.2);
	border-radius: 50%;
	content: "";
	transition: transform 300ms ease;
}

.solution-card:hover {
	transform: translateY(-7px);
	border-color: rgba(26, 129, 120, 0.55);
	box-shadow: 0 24px 55px rgba(11, 35, 56, 0.1);
}

.solution-card:hover::after {
	transform: scale(1.25);
}

.solution-card__index {
	color: var(--teal);
	font-size: 0.74rem;
	font-weight: 750;
	letter-spacing: 0.14em;
}

.solution-card h3 {
	max-width: 270px;
	margin: 0 0 14px;
	font-size: 1.55rem;
	font-weight: 620;
	letter-spacing: -0.025em;
	line-height: 1.18;
}

.solution-card p {
	max-width: 290px;
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.94rem;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 24px;
	color: var(--teal);
	font-size: 0.85rem;
	font-weight: 720;
}

.industries-layout {
	display: grid;
	grid-template-columns: minmax(270px, 0.74fr) minmax(0, 1.26fr);
	gap: clamp(50px, 8vw, 110px);
	align-items: start;
}

.industries-intro {
	position: sticky;
	top: 120px;
}

.industry-list {
	border-top: 1px solid var(--line);
}

.industry-item {
	position: relative;
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr) 28px;
	gap: 26px;
	align-items: start;
	padding: 34px 0;
	border-bottom: 1px solid var(--line);
	transition: padding-left 180ms ease;
}

.industry-item:hover {
	padding-left: 10px;
}

.industry-item__number {
	color: var(--teal);
	font-size: 0.74rem;
	font-weight: 720;
	letter-spacing: 0.12em;
}

.industry-item h3 {
	margin: 0 0 9px;
	font-size: clamp(1.35rem, 2vw, 1.8rem);
	font-weight: 590;
	letter-spacing: -0.025em;
}

.industry-item p {
	max-width: 560px;
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.94rem;
}

.industry-item__arrow {
	color: var(--teal);
	font-size: 1.3rem;
	transition: transform 180ms ease;
}

.industry-item:hover .industry-item__arrow {
	transform: translate(3px, -3px);
}

.approach-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 68px;
	border-top: 1px solid var(--line-dark);
}

.approach-step {
	position: relative;
	min-height: 300px;
	padding: 30px 28px;
	border-right: 1px solid var(--line-dark);
}

.approach-step:last-child {
	border-right: 0;
}

.approach-step__number {
	display: flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	margin-bottom: 78px;
	border: 1px solid rgba(72, 183, 169, 0.52);
	border-radius: 50%;
	color: var(--teal-bright);
	font-size: 0.75rem;
	font-weight: 750;
}

.approach-step h3 {
	margin: 0 0 12px;
	font-size: 1.25rem;
	font-weight: 620;
}

.approach-step p {
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.9rem;
}

.quality-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
	gap: clamp(50px, 8vw, 120px);
	align-items: center;
}

.quality-panel {
	position: relative;
	min-height: 570px;
	padding: 42px;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background:
		linear-gradient(180deg, rgba(7, 24, 39, 0.05), rgba(7, 24, 39, 0.87)),
		var(--quality-image) center / cover no-repeat;
	box-shadow: var(--shadow);
}

.quality-panel__content {
	position: absolute;
	right: 42px;
	bottom: 42px;
	left: 42px;
	color: var(--white);
}

.quality-panel__content span {
	display: block;
	margin-bottom: 12px;
	color: var(--teal-bright);
	font-size: 0.74rem;
	font-weight: 750;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.quality-panel__content strong {
	display: block;
	max-width: 430px;
	font-size: clamp(1.8rem, 3vw, 2.7rem);
	font-weight: 520;
	letter-spacing: -0.035em;
	line-height: 1.12;
}

.quality-list {
	margin: 42px 0 0;
	padding: 0;
	list-style: none;
}

.quality-list li {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid var(--line);
}

.quality-list__check {
	display: flex;
	width: 26px;
	height: 26px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(26, 129, 120, 0.36);
	border-radius: 50%;
	color: var(--teal);
	font-size: 0.75rem;
}

.quality-list strong {
	display: block;
	margin-bottom: 3px;
	font-size: 1rem;
}

.quality-list span {
	color: var(--ink-soft);
	font-size: 0.88rem;
}

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

.insight-card {
	display: flex;
	min-height: 330px;
	flex-direction: column;
	justify-content: space-between;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--white);
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.insight-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 24px 55px rgba(11, 35, 56, 0.09);
}

.insight-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: var(--ink-soft);
	font-size: 0.75rem;
	font-weight: 650;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.insight-card__type {
	color: var(--teal);
}

.insight-card h2,
.insight-card h3 {
	margin: 70px 0 16px;
	font-size: 1.45rem;
	font-weight: 590;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.insight-card p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.9rem;
}

.cta {
	padding: 0 0 28px;
	background: var(--cloud);
}

.cta__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 50px;
	align-items: end;
	padding: clamp(48px, 8vw, 92px);
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--teal);
	color: var(--white);
}

.cta__inner::before {
	position: absolute;
	top: -180px;
	right: -130px;
	width: 420px;
	height: 420px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	content: "";
}

.cta__inner::after {
	position: absolute;
	right: 76px;
	bottom: -220px;
	width: 500px;
	height: 500px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 50%;
	content: "";
}

.cta__copy,
.cta__action {
	position: relative;
	z-index: 2;
}

.cta h2 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(2.4rem, 4.7vw, 4.8rem);
	font-weight: 520;
	letter-spacing: -0.045em;
	line-height: 1.04;
}

.cta p {
	max-width: 650px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 1.05rem;
}

.site-footer {
	padding: 78px 0 30px;
	background: var(--navy-deep);
	color: var(--white);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 0.7fr 0.8fr 1fr;
	gap: 48px;
	padding-bottom: 70px;
}

.site-footer .brand {
	color: var(--white);
}

.footer-about {
	max-width: 350px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.9rem;
}

.footer-heading {
	margin: 4px 0 20px;
	color: rgba(255, 255, 255, 0.48);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.footer-links {
	display: grid;
	gap: 12px;
}

.footer-links a {
	width: fit-content;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9rem;
	transition: color 180ms ease;
}

.footer-links a:hover {
	color: var(--teal-bright);
}

.footer-contact {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
}

.footer-contact a {
	display: inline-block;
	margin-top: 14px;
	color: var(--teal-bright);
	font-weight: 680;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--line-dark);
	color: rgba(255, 255, 255, 0.42);
	font-size: 0.78rem;
}

.content-shell {
	min-height: 70vh;
	padding: 170px 0 110px;
}

.entry-header {
	max-width: 850px;
	margin-bottom: 48px;
}

.entry-title {
	font-size: clamp(2.8rem, 5vw, 5.3rem);
}

.entry-meta {
	margin-top: 18px;
	color: var(--ink-soft);
	font-size: 0.85rem;
}

.entry-content {
	max-width: 820px;
	color: #243746;
	font-size: 1.06rem;
}

.entry-content > * {
	max-width: 100%;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 2.2em;
	color: var(--ink);
	line-height: 1.2;
}

.entry-content a {
	color: var(--teal);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.post-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 52px;
}

.empty-state {
	padding: 52px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--cloud);
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Product catalogue and product-family pages. */
.product-breadcrumb {
	padding: 104px 0 18px;
	background: var(--cloud);
	color: var(--ink-soft);
	font-size: 0.76rem;
	font-weight: 650;
	letter-spacing: 0.05em;
}

.product-breadcrumb .site-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.product-breadcrumb a {
	transition: color 180ms ease;
}

.product-breadcrumb a:hover {
	color: var(--teal);
}

.product-hero {
	position: relative;
	padding: 76px 0 108px;
	overflow: hidden;
	background:
		radial-gradient(circle at 86% 15%, rgba(72, 183, 169, 0.15), transparent 30%),
		var(--cloud);
}

.product-hero--hub {
	padding-top: 178px;
}

.product-hero::after {
	position: absolute;
	right: -180px;
	bottom: -240px;
	width: 540px;
	height: 540px;
	border: 1px solid rgba(26, 129, 120, 0.17);
	border-radius: 50%;
	content: "";
}

.product-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.58fr);
	gap: clamp(54px, 9vw, 130px);
	align-items: end;
}

.product-title {
	max-width: 880px;
	margin: 0;
	font-size: clamp(3.4rem, 7vw, 7rem);
	font-weight: 520;
	letter-spacing: -0.055em;
	line-height: 0.97;
	text-wrap: balance;
}

.product-hero--detail .product-title {
	max-width: 950px;
	font-size: clamp(3rem, 5.8vw, 6rem);
}

.product-lead {
	max-width: 760px;
	margin: 34px 0 0;
	color: var(--ink-soft);
	font-size: clamp(1.12rem, 1.8vw, 1.42rem);
	line-height: 1.55;
}

.product-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 38px;
}

.product-application-media {
	padding: 62px 0 0;
	background: var(--white);
}

.product-application-media figure {
	margin: 0;
}

.product-application-media img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 2;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	object-fit: cover;
}

.product-application-media figcaption {
	max-width: 780px;
	margin: 18px 0 0;
	color: var(--ink-soft);
	font-size: 0.82rem;
	line-height: 1.6;
}

.product-hero__aside,
.product-focus {
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 18px 50px rgba(11, 35, 56, 0.07);
}

.product-hero__aside-label,
.product-focus__label {
	display: block;
	margin-bottom: 22px;
	color: var(--teal);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.product-hero__aside p {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.7;
}

.product-focus ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.product-focus li {
	position: relative;
	padding: 14px 0 14px 23px;
	border-top: 1px solid var(--line);
	font-size: 0.93rem;
	font-weight: 620;
}

.product-focus li::before {
	position: absolute;
	top: 22px;
	left: 2px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--teal);
	content: "";
}

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

.product-card {
	display: flex;
	min-height: 420px;
	flex-direction: column;
	padding: 32px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--white);
	transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.product-card:hover {
	transform: translateY(-5px);
	border-color: rgba(26, 129, 120, 0.45);
	box-shadow: var(--shadow);
}

.product-card__top {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	color: var(--teal);
	font-size: 0.7rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.product-card h2 {
	margin: 82px 0 20px;
	font-size: clamp(1.55rem, 2.4vw, 2.1rem);
	font-weight: 560;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.storage-product-card h3 {
	margin: 64px 0 20px;
	font-size: clamp(1.4rem, 2.1vw, 1.8rem);
	font-weight: 580;
	letter-spacing: -0.035em;
	line-height: 1.1;
}

.storage-product-card h3 a {
	transition: color 180ms ease;
}

.storage-product-card h3 a:hover {
	color: var(--teal);
}

.storage-product-card {
	min-height: 380px;
}

.product-card p {
	margin: 0 0 30px;
	color: var(--ink-soft);
	font-size: 0.92rem;
}

.product-card .text-link {
	margin-top: auto;
}

.product-two-column,
.product-faq-layout,
.product-spec-layout {
	display: grid;
	grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(58px, 9vw, 130px);
	align-items: start;
}

.product-overview__copy {
	padding-top: 42px;
	border-top: 1px solid var(--line);
}

.product-overview__copy p {
	margin: 0;
	color: var(--ink-soft);
	font-size: clamp(1.08rem, 1.7vw, 1.27rem);
	line-height: 1.8;
}

.product-overview__copy p + p {
	margin-top: 24px;
	font-size: 0.94rem;
}

.product-overview__copy .product-answer {
	color: var(--ink);
	font-size: clamp(1.16rem, 1.9vw, 1.38rem);
	font-weight: 580;
	line-height: 1.68;
}

.product-overview__copy .product-answer + p {
	margin-top: 34px;
	padding-top: 26px;
	border-top: 1px solid var(--line);
}

.application-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--line);
	list-style: none;
}

.application-grid li {
	display: flex;
	min-height: 145px;
	flex-direction: column;
	justify-content: space-between;
	padding: 24px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	font-size: 1.03rem;
	font-weight: 620;
}

.application-grid li:nth-child(3n) {
	border-right: 0;
}

.application-grid span {
	color: var(--teal);
	font-size: 0.7rem;
	letter-spacing: 0.1em;
}

.configuration-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.configuration-card {
	min-height: 320px;
	padding: 28px;
	border-right: 1px solid var(--line);
}

.configuration-card:last-child {
	border-right: 0;
}

.configuration-card > span {
	color: var(--teal);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.12em;
}

.configuration-card h3 {
	margin: 92px 0 16px;
	font-size: 1.25rem;
	font-weight: 610;
	letter-spacing: -0.025em;
}

.configuration-card p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.88rem;
}

.product-spec-layout {
	align-items: center;
}

.spec-table-wrap {
	overflow: hidden;
	border: 1px solid var(--line-dark);
	border-radius: var(--radius-md);
}

.spec-table {
	width: 100%;
	border-collapse: collapse;
	background: rgba(255, 255, 255, 0.03);
}

.spec-table th,
.spec-table td {
	padding: 18px 22px;
	border-bottom: 1px solid var(--line-dark);
	text-align: left;
	vertical-align: top;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
	border-bottom: 0;
}

.spec-table th {
	width: 38%;
	color: var(--teal-bright);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.spec-table td {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.88rem;
}

.product-faq-layout {
	align-items: start;
}

.faq-list {
	border-top: 1px solid var(--line);
}

.faq-list details {
	border-bottom: 1px solid var(--line);
}

.faq-list summary {
	position: relative;
	padding: 24px 44px 24px 0;
	cursor: pointer;
	font-size: 1.06rem;
	font-weight: 630;
	list-style: none;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary::after {
	position: absolute;
	top: 22px;
	right: 2px;
	color: var(--teal);
	font-size: 1.35rem;
	font-weight: 400;
	content: "+";
}

.faq-list details[open] summary::after {
	content: "−";
}

.faq-list details p {
	max-width: 650px;
	margin: -4px 0 26px;
	color: var(--ink-soft);
	font-size: 0.94rem;
}

.related-products {
	padding: 88px 0;
}

.related-products__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--line);
}

.related-products__grid a {
	position: relative;
	display: flex;
	min-height: 170px;
	flex-direction: column;
	padding: 24px 48px 24px 0;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.related-products__grid a + a {
	padding-left: 24px;
}

.related-products__grid span {
	color: var(--teal);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.related-products__grid strong {
	margin-top: auto;
	font-size: 1.25rem;
	font-weight: 590;
	line-height: 1.2;
}

.related-products__grid i {
	position: absolute;
	right: 20px;
	bottom: 24px;
	color: var(--teal);
	font-style: normal;
}

.product-cta {
	padding-top: 28px;
}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 1024px) {
	.product-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.configuration-card:nth-child(2) {
		border-right: 0;
	}

	.configuration-card:nth-child(-n+2) {
		border-bottom: 1px solid var(--line);
	}

	.section {
		padding: 90px 0;
	}

	.site-container {
		width: min(calc(100% - 36px), var(--container));
	}

	.primary-nav {
		gap: 20px;
	}

	.primary-nav a {
		font-size: 0.82rem;
	}

	.primary-nav .button {
		display: none;
	}

	.hero {
		min-height: 790px;
	}

	.hero__image {
		width: 62%;
		opacity: 0.64;
	}

	.hero__copy,
	.hero__meta {
		width: 72%;
	}

	.hero__note {
		right: 22px;
	}

	.solutions-grid,
	.insights-grid,
	.post-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.approach-step:nth-child(2) {
		border-right: 0;
	}

	.approach-step:nth-child(-n+2) {
		border-bottom: 1px solid var(--line-dark);
	}

	.quality-grid {
		grid-template-columns: 1fr;
	}

	.quality-panel {
		min-height: 520px;
	}

	.footer-grid {
		grid-template-columns: 1.4fr 0.7fr 0.8fr;
	}

	.footer-grid > :last-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 760px) {
	.product-breadcrumb {
		padding-top: 88px;
	}

	.product-hero,
	.product-hero--hub {
		padding: 108px 0 74px;
	}

	.product-breadcrumb + .product-hero {
		padding-top: 52px;
	}

	.product-hero__grid,
	.product-two-column,
	.product-faq-layout,
	.product-spec-layout {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.product-title {
		font-size: clamp(3rem, 15vw, 4.8rem);
	}

	.product-card-grid,
	.application-grid,
	.related-products__grid {
		grid-template-columns: 1fr;
	}

	.product-card {
		min-height: 340px;
	}

	.product-card h2 {
		margin-top: 54px;
	}

	.application-grid li,
	.application-grid li:nth-child(3n) {
		min-height: 122px;
		border-right: 0;
	}

	.configuration-grid {
		grid-template-columns: 1fr;
	}

	.configuration-card,
	.configuration-card:nth-child(2) {
		min-height: 250px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.configuration-card h3 {
		margin-top: 54px;
	}

	.spec-table th,
	.spec-table td {
		display: block;
		width: 100%;
	}

	.spec-table th {
		padding-bottom: 4px;
		border-bottom: 0;
	}

	.spec-table td {
		padding-top: 4px;
	}

	.related-products__grid a,
	.related-products__grid a + a {
		padding-left: 0;
		border-right: 0;
	}

	.site-container {
		width: min(calc(100% - 28px), var(--container));
	}

	.brand__logo,
	.site-header.is-scrolled .brand__logo,
	.site-header.is-menu-open .brand__logo {
		height: 32px;
	}

	.section {
		padding: 76px 0;
	}

	.menu-toggle {
		display: block;
	}

	.primary-nav {
		position: fixed;
		z-index: 99;
		top: 69px;
		right: 0;
		bottom: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 34px 22px;
		background: var(--white);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-12px);
		transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
	}

	.primary-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.primary-nav a {
		padding: 16px 2px;
		border-bottom: 1px solid var(--line);
		font-size: 1.15rem;
	}

	.nav-dropdown {
		border-bottom: 1px solid var(--line);
	}

	.nav-dropdown__trigger {
		justify-content: space-between;
	}

	.nav-dropdown__label {
		flex: 1;
		border-bottom: 0 !important;
	}

	.nav-dropdown__label::after {
		display: none;
	}

	.nav-dropdown__toggle {
		width: 54px;
		height: 56px;
		flex: 0 0 54px;
	}

	.nav-dropdown__menu {
		position: static;
		width: 100%;
		max-height: 0;
		padding: 0 14px;
		overflow: hidden;
		border: 0;
		border-radius: 0;
		background: var(--cloud);
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		pointer-events: none;
		transform: none;
		transition: max-height 240ms ease, padding 240ms ease;
	}

	.nav-dropdown__menu::before {
		display: none;
	}

	.nav-dropdown:hover .nav-dropdown__menu,
	.nav-dropdown:focus-within .nav-dropdown__menu,
	.nav-dropdown.is-open .nav-dropdown__menu {
		transform: none;
	}

	.nav-dropdown.is-open .nav-dropdown__menu {
		max-height: 520px;
		padding-top: 8px;
		padding-bottom: 12px;
		pointer-events: auto;
	}

	.nav-dropdown__menu a {
		min-height: 49px;
		padding: 0 4px;
		border-bottom: 1px solid var(--line);
		font-size: 0.94rem;
	}

	.nav-dropdown__menu a:hover,
	.nav-dropdown__menu a:focus-visible {
		padding-left: 8px;
	}

	.nav-dropdown__menu .nav-dropdown__all {
		min-height: 48px;
		border-bottom: 0;
		font-size: 0.72rem;
	}

	.primary-nav .button {
		display: inline-flex;
		margin-top: 24px;
		border: 0;
		font-size: 0.9rem;
	}

	.hero {
		min-height: auto;
		padding: 106px 0 34px;
		background: var(--cloud);
	}

	.hero__image {
		position: relative;
		width: calc(100% - 28px);
		height: 360px;
		margin: 34px 14px 0;
		border-radius: var(--radius-md);
		opacity: 1;
		object-position: 65% center;
	}

	.hero__veil {
		display: none;
	}

	.hero__copy {
		width: 100%;
		padding-top: 42px;
	}

	.display-title {
		font-size: clamp(3rem, 14vw, 4.6rem);
	}

	.hero__meta {
		grid-template-columns: 1fr;
		width: 100%;
		margin-top: 52px;
	}

	.hero__meta-item {
		display: grid;
		grid-template-columns: 1fr 1.4fr;
		gap: 16px;
		padding: 18px 0;
		border-bottom: 1px solid var(--line);
	}

	.hero__meta-item + .hero__meta-item {
		padding-left: 0;
		border-left: 0;
	}

	.hero__note {
		position: relative;
		right: auto;
		bottom: auto;
		width: calc(100% - 28px);
		margin: -110px 14px 34px;
	}

	.intro-grid,
	.industries-layout,
	.quality-grid {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.intro-points {
		grid-template-columns: 1fr;
	}

	.section-head {
		display: block;
		margin-bottom: 42px;
	}

	.solutions-grid,
	.insights-grid,
	.post-list {
		grid-template-columns: 1fr;
	}

	.solution-card,
	.insight-card {
		min-height: 290px;
	}

	.industries-intro {
		position: static;
	}

	.industry-item {
		grid-template-columns: 42px minmax(0, 1fr) 22px;
		gap: 14px;
	}

	.approach-grid {
		grid-template-columns: 1fr;
	}

	.approach-step {
		min-height: auto;
		padding: 30px 4px;
		border-right: 0;
		border-bottom: 1px solid var(--line-dark);
	}

	.approach-step__number {
		margin-bottom: 38px;
	}

	.quality-panel {
		min-height: 430px;
		padding: 24px;
	}

	.quality-panel__content {
		right: 24px;
		bottom: 24px;
		left: 24px;
	}

	.cta__inner {
		grid-template-columns: 1fr;
		gap: 34px;
		padding: 50px 28px;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-grid > :first-child,
	.footer-grid > :last-child {
		grid-column: 1 / -1;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.content-shell {
		padding: 130px 0 80px;
	}
}

@media (max-width: 480px) {
	.hero__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hero__actions .button {
		width: 100%;
	}

	.hero__image {
		height: 300px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid > * {
		grid-column: auto !important;
	}
}

/* WhatsApp consultation widget */
.whatsapp-widget {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 900;
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	gap: 14px;
	font-family: var(--font-sans);
}

.whatsapp-chat {
	width: min(390px, calc(100vw - 40px));
	overflow: hidden;
	border: 1px solid rgba(13, 28, 42, 0.08);
	border-radius: 20px;
	background: var(--white);
	box-shadow: 0 24px 70px rgba(7, 24, 39, 0.24);
	opacity: 0;
	transform: translateY(12px) scale(0.98);
	transform-origin: right bottom;
	transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-chat[hidden] {
	display: none;
}

.whatsapp-chat.is-open {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.whatsapp-chat__header {
	position: relative;
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	gap: 16px;
	padding: 26px 54px 25px 24px;
	background: #25d366;
	color: var(--white);
}

.whatsapp-chat__header h2 {
	margin: 0 0 7px;
	color: inherit;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.whatsapp-chat__header p {
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 15px;
	line-height: 1.55;
}

.whatsapp-chat__close {
	position: absolute;
	top: 13px;
	right: 13px;
	display: grid;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--white);
	cursor: pointer;
	font: inherit;
	place-items: center;
	transition: background-color 160ms ease;
}

.whatsapp-chat__close span {
	font-size: 27px;
	font-weight: 300;
	line-height: 1;
}

.whatsapp-chat__close:hover,
.whatsapp-chat__close:focus-visible {
	background: rgba(0, 0, 0, 0.12);
}

.whatsapp-chat__body {
	padding: 22px;
}

.whatsapp-chat__status {
	margin: 0 0 16px;
	color: #7b8794;
	font-size: 14px;
	line-height: 1.5;
}

.whatsapp-contact {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	min-height: 88px;
	padding: 15px 16px;
	border-left: 4px solid #25d366;
	border-radius: 10px;
	background: #f3f6f8;
	color: var(--ink);
	text-decoration: none;
	transition: background-color 160ms ease, transform 160ms ease;
}

.whatsapp-contact:hover {
	background: #edf8f1;
	color: var(--ink);
	transform: translateY(-1px);
}

.whatsapp-contact__copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 4px;
}

.whatsapp-contact__copy strong {
	font-size: 16px;
	font-weight: 650;
}

.whatsapp-contact__copy > span {
	color: #7b8794;
	font-size: 14px;
}

.whatsapp-contact__arrow {
	color: #25b75a;
	font-size: 24px;
}

.whatsapp-mark {
	position: relative;
	display: grid;
	flex: 0 0 auto;
	border-radius: 50%;
	place-items: center;
}

.whatsapp-mark::after {
	position: absolute;
	bottom: -1px;
	left: 3px;
	width: 13px;
	height: 13px;
	border-radius: 0 0 0 3px;
	content: "";
	transform: rotate(18deg);
}

.whatsapp-mark > span {
	position: relative;
	z-index: 1;
	font-size: 26px;
	line-height: 1;
	transform: rotate(-18deg);
}

.whatsapp-mark--outline {
	width: 54px;
	height: 54px;
	border: 3px solid var(--white);
	color: var(--white);
}

.whatsapp-mark--outline::after {
	border-right: 3px solid var(--white);
	border-bottom: 3px solid var(--white);
	background: #25d366;
}

.whatsapp-mark--solid {
	width: 52px;
	height: 52px;
	background: #25d366;
	color: var(--white);
	box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.1);
}

.whatsapp-mark--solid::after {
	background: #25d366;
}

.whatsapp-launcher {
	position: relative;
	display: grid;
	width: 66px;
	height: 66px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #25d366;
	box-shadow: 0 14px 34px rgba(7, 24, 39, 0.26);
	color: var(--white);
	cursor: pointer;
	font: inherit;
	place-items: center;
	transition: background-color 160ms ease, transform 160ms ease;
}

.whatsapp-launcher:hover {
	background: #20bd5a;
	transform: translateY(-2px);
}

.whatsapp-launcher:focus-visible,
.whatsapp-contact:focus-visible {
	outline: 3px solid rgba(37, 211, 102, 0.35);
	outline-offset: 4px;
}

.whatsapp-launcher__chat,
.whatsapp-launcher__close {
	position: absolute;
	font-size: 31px;
	line-height: 1;
	transition: opacity 160ms ease, transform 160ms ease;
}

.whatsapp-launcher__chat {
	transform: rotate(-18deg);
}

.whatsapp-launcher__close {
	opacity: 0;
	font-size: 39px;
	font-weight: 200;
	transform: rotate(-45deg) scale(0.75);
}

.whatsapp-widget.is-open .whatsapp-launcher__chat {
	opacity: 0;
	transform: rotate(18deg) scale(0.75);
}

.whatsapp-widget.is-open .whatsapp-launcher__close {
	opacity: 1;
	transform: rotate(0) scale(1);
}

@media (max-width: 600px) {
	.whatsapp-widget {
		right: 14px;
		bottom: 14px;
	}

	.whatsapp-chat {
		width: calc(100vw - 28px);
	}

	.whatsapp-chat__header {
		padding: 22px 48px 22px 20px;
	}

	.whatsapp-chat__header h2 {
		font-size: 21px;
	}

	.whatsapp-chat__body {
		padding: 18px;
	}

	.whatsapp-launcher {
		width: 60px;
		height: 60px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.whatsapp-chat,
	.whatsapp-contact,
	.whatsapp-launcher,
	.whatsapp-launcher__chat,
	.whatsapp-launcher__close {
		transition: none;
	}
}
