:root {
	--green: #006b32;
	--green-dark: #004f26;
	--green-soft: #eaf4ec;
	--ink: #10251a;
	--muted: #50635a;
	--line: #dce8df;
	--panel: #ffffff;
	--soft: #f7faf7;
	--shadow: 0 18px 55px rgba(16, 37, 26, 0.1);
}

@media (max-width: 520px) {
	.cv-phone-input {
		grid-template-columns: 1fr;
	}
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #fff;
	color: var(--ink);
	font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	overflow-x: clip;
}

.wp-site-blocks > * {
	margin-block-start: 0;
}

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

a {
	color: inherit;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	border-bottom: 1px solid rgba(16, 37, 26, 0.08);
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: min(1280px, calc(100% - 40px));
	min-height: 88px;
	margin: 0 auto;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	text-decoration: none;
}

.site-logo img {
	width: 164px;
}

.site-nav ul,
.mobile-menu__panel ul {
	display: flex;
	align-items: center;
	gap: 21px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a,
.mobile-menu__panel a {
	color: var(--ink);
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.site-nav a:hover,
.mobile-menu__panel a:hover {
	color: var(--green);
}

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

.language-switcher {
	position: relative;
	min-width: 116px;
	font-size: 0.9rem;
}

.language-switcher::after {
	content: "";
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	height: 12px;
}

.language-switcher__current {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	min-height: 42px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #fff;
	color: var(--ink);
	cursor: pointer;
	font: inherit;
	font-weight: 800;
	padding: 0 12px;
	text-align: left;
}

.language-switcher__menu {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 60;
	display: grid;
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #fff;
	box-shadow: var(--shadow);
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	transform: translateY(-4px);
	transition: opacity 0.12s ease, transform 0.12s ease;
}

.language-switcher:hover .language-switcher__menu,
.language-switcher:focus-within .language-switcher__menu,
.language-switcher.is-open .language-switcher__menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.language-switcher__menu a {
	color: var(--ink);
	font-weight: 750;
	padding: 10px 12px;
	text-decoration: none;
}

.language-switcher__menu a:hover,
.language-switcher__menu a:focus {
	background: var(--green-soft);
	color: var(--green);
}

.button-link,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	border: 1px solid var(--green);
	border-radius: 6px;
	background: var(--green);
	color: #fff;
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1;
	padding: 0 24px;
	text-decoration: none;
	white-space: nowrap;
}

.button-link::after {
	content: "->";
	font-weight: 900;
}

.button-link.secondary {
	background: #fff;
	color: var(--green);
}

.button-link.light {
	border-color: #fff;
	background: #fff;
	color: var(--green);
}

.button-link.ghost-light {
	border-color: rgba(255, 255, 255, 0.75);
	background: transparent;
	color: #fff;
}

.button-link.no-arrow::after {
	content: none;
}

.mobile-menu {
	position: relative;
	display: none;
}

.mobile-menu summary {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #fff;
	color: var(--ink);
	cursor: pointer;
	font-weight: 800;
	list-style: none;
	padding: 0 13px;
}

.mobile-menu summary::-webkit-details-marker {
	display: none;
}

.mobile-menu__icon,
.mobile-menu__icon::before,
.mobile-menu__icon::after {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--green);
}

.mobile-menu__icon {
	position: relative;
}

.mobile-menu__icon::before,
.mobile-menu__icon::after {
	position: absolute;
	left: 0;
	content: "";
}

.mobile-menu__icon::before {
	top: -6px;
}

.mobile-menu__icon::after {
	top: 6px;
}

.mobile-menu__panel {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	width: min(310px, calc(100vw - 32px));
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: var(--shadow);
	padding: 10px;
}

.mobile-menu__panel ul {
	display: grid;
	gap: 2px;
}

.mobile-menu__panel a {
	display: block;
	border-radius: 6px;
	padding: 12px;
}

.mobile-menu__language {
	padding: 8px 12px;
}

.mobile-menu__language .language-switcher {
	width: 100%;
}

.mobile-menu__language .language-switcher__menu {
	position: static;
	margin-top: 6px;
	opacity: 1;
	pointer-events: auto;
	transform: none;
}

.cv-main {
	background: #fff;
}

.cv-wrap {
	width: min(1220px, calc(100% - 64px));
	margin: 0 auto;
}

.hero {
	position: relative;
	padding: 56px 0 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 46%, rgba(255, 255, 255, 0.86) 59%, rgba(255, 255, 255, 0.2) 80%),
		url("../images/hero-cbd-lab.png") right center / auto 100% no-repeat,
		linear-gradient(120deg, #fff, #eef6ef);
	overflow: visible;
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
	gap: 28px;
	align-items: center;
	min-height: 390px;
}

.hero h1 {
	max-width: 690px;
	margin: 0;
	font-size: clamp(2.45rem, 3.35vw, 3.95rem);
	line-height: 1.12;
	letter-spacing: 0;
}

.hero__copy {
	max-width: 570px;
	margin: 24px 0 0;
	color: #1f3027;
	font-size: clamp(1.05rem, 1.45vw, 1.32rem);
	line-height: 1.6;
}

.hero__actions,
.section-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 36px;
}

.product-scene {
	position: relative;
	min-height: 390px;
	border-radius: 12px;
}

.trust-bar {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	margin: 24px auto -52px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.trust-item {
	display: grid;
	justify-items: center;
	gap: 8px;
	align-items: center;
	min-height: 94px;
	border-right: 1px solid var(--line);
	padding: 20px 22px;
	text-align: center;
}

.trust-item:last-child {
	border-right: 0;
}

.icon-round {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 2px solid rgba(0, 107, 50, 0.28);
	border-radius: 50%;
	color: var(--green);
	font-size: 1.25rem;
	font-weight: 900;
}

.trust-item strong,
.mini-step strong,
.cert-card strong,
.info-card strong {
	display: block;
	margin-bottom: 4px;
	font-size: 0.98rem;
	line-height: 1.25;
}

.trust-item span,
.mini-step span,
.cert-card span,
.info-card span {
	color: var(--muted);
	font-size: 0.86rem;
	line-height: 1.4;
}

.trust-item .icon-round {
	color: var(--green);
}

.trust-item > div {
	display: grid;
	justify-items: center;
	gap: 2px;
	min-width: 0;
}

.trust-item > div > span {
	display: block;
}

.section {
	padding: clamp(62px, 6vw, 98px) 0;
}

.section--after-hero {
	padding-top: 104px;
}

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

.section h2 {
	max-width: 650px;
	margin: 0;
	font-size: clamp(2rem, 3.1vw, 3.1rem);
	line-height: 1.08;
}

.section-lede {
	max-width: 590px;
	margin: 20px 0 0;
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.65;
}

.split-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
	gap: clamp(42px, 7vw, 88px);
	align-items: center;
}

.check-list {
	display: grid;
	gap: 14px;
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 34px;
	color: #203329;
	font-weight: 650;
	line-height: 1.5;
}

.check-list li::before {
	position: absolute;
	left: 0;
	top: 2px;
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--green);
	color: #fff;
	content: "✓";
	font-size: 0.75rem;
	font-weight: 900;
}

.commitment-card,
.process-card,
.info-card {
	border: 1px solid var(--line);
	border-radius: 12px;
	background:
		linear-gradient(135deg, rgba(0, 107, 50, 0.06), rgba(255, 255, 255, 0.9)),
		#fff;
	box-shadow: 0 10px 36px rgba(16, 37, 26, 0.05);
	padding: 32px;
}

.commitment-card,
.process-card {
	margin-bottom: 24px;
	text-align: center;
}

.commitment-card h3,
.process-card h3 {
	margin: 0 0 28px;
	font-size: 1.15rem;
}

.mini-flow,
.process-flow {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	column-gap: 46px;
	row-gap: 24px;
	align-items: start;
}

.mini-step,
.process-step {
	position: relative;
	text-align: center;
}

.mini-step:not(:last-child)::after,
.process-step:not(:last-child)::after {
	position: absolute;
	top: 35px;
	right: -30px;
	color: var(--green);
	content: "";
	width: 16px;
	height: 2px;
	background: currentColor;
	font-weight: 900;
}

.mini-step:not(:last-child)::before,
.process-step:not(:last-child)::before {
	position: absolute;
	top: 32px;
	right: -31px;
	width: 7px;
	height: 7px;
	border-top: 2px solid var(--green);
	border-right: 2px solid var(--green);
	content: "";
	transform: rotate(45deg);
}

.mini-step .icon-round,
.process-step .icon-round {
	width: 72px;
	height: 72px;
	margin: 0 auto 16px;
	font-size: 1.55rem;
}

.mini-step strong,
.process-step strong {
	display: block;
	color: var(--green);
}

.mini-step span:not(.icon-round),
.process-step span {
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.45;
}

.cta-band {
	background: linear-gradient(90deg, var(--green-dark), var(--green));
	color: #fff;
	padding: 44px 0;
}

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

.cta-band__copy {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 24px;
	align-items: center;
}

.cta-band h2 {
	margin: 0 0 8px;
	font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.cta-band p {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
}

.cta-icon {
	display: grid;
	place-items: center;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: #fff;
	color: var(--green);
	font-size: 2rem;
}

.centered {
	text-align: center;
}

.centered h2,
.centered .section-lede {
	margin-left: auto;
	margin-right: auto;
}

.cert-grid {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 10px;
	margin-top: 34px;
}

.cert-card {
	display: grid;
	grid-template-rows: 46px minmax(42px, auto) minmax(44px, auto) 1fr;
	align-content: start;
	justify-items: center;
	min-height: 170px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(16, 37, 26, 0.06);
	padding: 18px 12px;
	text-align: center;
}

.cert-card .icon-round {
	margin: 0 auto 10px;
}

.cert-card strong {
	display: grid;
	align-items: center;
	min-height: 42px;
	margin: 0;
}

.cert-card > span:not(.icon-round) {
	display: grid;
	align-items: center;
	min-height: 44px;
}

.cert-card a,
.info-card a {
	display: inline-block;
	margin-top: 14px;
	color: var(--green);
	font-size: 0.85rem;
	font-weight: 900;
	text-decoration: none;
}

.cert-card a {
	align-self: end;
	margin-top: 10px;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin-top: 34px;
}

.info-explorer {
	display: grid;
	grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
	gap: 24px;
	align-items: stretch;
	margin-top: 34px;
}

.info-card-list {
	display: grid;
	gap: 16px;
}

.info-card-list .info-card {
	min-height: 150px;
}

.info-card-list .info-card.is-active {
	border-color: rgba(0, 107, 50, 0.32);
	box-shadow: 0 16px 38px rgba(16, 37, 26, 0.12);
}

.info-panel-wrap {
	min-height: 100%;
}

.info-panel {
	display: none;
	height: 100%;
	border: 1px solid var(--line);
	border-radius: 12px;
	background:
		linear-gradient(135deg, rgba(0, 107, 50, 0.05), rgba(255, 255, 255, 0.92)),
		#fff;
	box-shadow: 0 12px 34px rgba(16, 37, 26, 0.06);
	padding: clamp(24px, 4vw, 38px);
}

.info-panel.is-active {
	display: block;
}

.info-panel h3 {
	margin: 0 0 12px;
	font-size: clamp(1.45rem, 2vw, 2rem);
}

.info-panel .section-lede {
	margin-bottom: 22px;
}

.info-panel-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.use-scroller {
	display: grid;
	gap: 14px;
	margin-top: 24px;
}

.use-scroller__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.use-scroller__head strong {
	color: var(--ink);
	font-size: 0.98rem;
}

.use-scroller__controls {
	display: flex;
	gap: 8px;
}

.use-scroller__controls button {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(0, 107, 50, 0.24);
	border-radius: 50%;
	background: #fff;
	color: var(--green);
	cursor: pointer;
	font-size: 1.2rem;
	font-weight: 900;
}

.use-scroller__track {
	display: grid;
	grid-auto-columns: minmax(210px, 0.48fr);
	grid-auto-flow: column;
	gap: 14px;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	padding: 2px 4px 12px;
	scroll-snap-type: x mandatory;
	scrollbar-color: rgba(0, 107, 50, 0.28) transparent;
}

.use-card {
	scroll-snap-align: start;
	display: grid;
	align-content: start;
	min-height: 190px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(16, 37, 26, 0.05);
	padding: 18px;
}

.use-card strong {
	display: block;
	color: var(--ink);
	font-size: 0.98rem;
}

.use-card span {
	display: inline-block;
	width: fit-content;
	margin: 10px 0 12px;
	border-radius: 999px;
	background: rgba(0, 107, 50, 0.08);
	color: var(--green);
	font-size: 0.74rem;
	font-weight: 900;
	padding: 5px 9px;
}

.use-card p {
	margin: 0;
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.5;
}

.industry-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 24px;
}

.industry-card {
	display: grid;
	align-content: start;
	min-height: 178px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(16, 37, 26, 0.05);
	padding: 18px;
}

.industry-card strong {
	display: block;
	color: var(--ink);
	font-size: 0.98rem;
}

.industry-card span {
	display: inline-block;
	width: fit-content;
	margin: 10px 0 12px;
	border-radius: 999px;
	background: rgba(0, 107, 50, 0.08);
	color: var(--green);
	font-size: 0.74rem;
	font-weight: 900;
	padding: 5px 9px;
}

.industry-card p {
	margin: 0;
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.5;
}

.info-card {
	position: relative;
	min-height: 188px;
	overflow: hidden;
	padding: 28px;
}

.info-card strong,
.info-card span,
.info-card a {
	position: relative;
	z-index: 2;
	max-width: 48%;
}

.info-card span {
	display: block;
}

.info-card__preview {
	position: absolute;
	left: 22px;
	right: 22px;
	bottom: 18px;
	z-index: 4;
	display: grid;
	gap: 6px;
	max-width: none;
	border: 1px solid rgba(0, 107, 50, 0.16);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 16px 34px rgba(16, 37, 26, 0.14);
	padding: 14px 16px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.info-card .info-card__preview strong,
.info-card .info-card__preview span {
	position: static;
	z-index: auto;
	max-width: none;
}

.info-card .info-card__preview strong {
	margin: 0;
	color: var(--ink);
	font-size: 0.92rem;
}

.info-card .info-card__preview span {
	color: var(--muted);
	font-size: 0.82rem;
	line-height: 1.45;
}

@media (hover: hover) and (pointer: fine) {
	.info-card--process:hover .info-card__preview,
	.info-card--process:focus-within .info-card__preview {
		opacity: 1;
		transform: translateY(0);
	}
}

.info-card::after {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 45%;
	height: 100%;
	border-radius: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(246, 250, 247, 0.2)),
		radial-gradient(ellipse at 72% 78%, rgba(0, 107, 50, 0.14), transparent 58%);
	content: "";
	pointer-events: none;
}

.info-card--image::after {
	width: 47%;
	height: 100%;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(246, 250, 247, 0.18)),
		var(--card-image);
	background-repeat: no-repeat;
	background-size: cover;
}

.info-card--products::after {
	--card-image: url("../images/card-products.png");
	background-position: 72% center;
}

.info-card--industries::after {
	--card-image: url("../images/card-industries.png");
	background-position: 74% center;
}

.info-card--process::after {
	--card-image: url("../images/card-process.png");
	background-position: 72% center;
}

.info-card--knowledge::after {
	--card-image: url("../images/card-knowledge.png");
	background-position: 72% center;
}

.info-card--faq::after {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(246, 250, 247, 0.18)),
		url("../images/card-faq.png");
	background-position: 72% center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
}

.info-card--custom::after {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(246, 250, 247, 0.1)),
		radial-gradient(circle at 50% 55%, rgba(0, 107, 50, 0.14), transparent 44%),
		url("../images/cannavera-logo.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 122px auto;
}

.faq-section {
	padding: clamp(70px, 8vw, 104px) 0;
	background: #fff;
}

.faq-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	align-items: start;
	margin-top: 30px;
}

.faq-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.faq-item {
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--soft);
	box-shadow: 0 10px 28px rgba(16, 37, 26, 0.05);
	padding: 18px 20px;
}

.faq-item summary {
	cursor: pointer;
	color: var(--ink);
	font-weight: 900;
}

.faq-item p {
	margin: 12px 0 0;
	color: var(--muted);
}

.cert-sample-dropdown {
	grid-column: auto;
}

.cert-sample-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 14px;
	margin-top: 18px;
}

.cert-sample {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #fff;
	padding: 14px;
	text-align: left;
}

.cert-sample img {
	width: 92px;
	aspect-ratio: 3 / 4;
	border: 1px solid var(--line);
	border-radius: 6px;
	object-fit: cover;
	background: #fff;
}

.cert-sample strong,
.cert-sample span {
	display: block;
}

.cert-sample strong {
	color: var(--ink);
	font-size: 1rem;
	line-height: 1.2;
}

.cert-sample span {
	margin-top: 6px;
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.45;
}

.cert-lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: none;
	place-items: center;
	background: rgba(7, 24, 15, 0.82);
	padding: 24px;
}

.cert-lightbox.is-open {
	display: grid;
}

.cert-lightbox img {
	max-width: min(92vw, 820px);
	max-height: 92vh;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

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

.mix-card {
	display: grid;
	align-content: start;
	min-height: 210px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--soft);
	padding: 22px;
	box-shadow: 0 10px 28px rgba(16, 37, 26, 0.05);
}

.mix-card strong {
	display: block;
	color: var(--ink);
	font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.mix-card p {
	margin: 12px 0 0;
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.55;
	max-width: 34ch;
}

.mix-card a {
	align-self: end;
	margin-top: 18px;
	color: var(--green);
	font-weight: 900;
	text-decoration: none;
}

.contact-page {
	padding: clamp(70px, 8vw, 118px) 0;
	background: var(--soft);
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
	gap: 42px;
	align-items: start;
}

.contact-card {
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
	box-shadow: var(--shadow);
	padding: 34px;
}

.cv-form {
	display: grid;
	gap: 16px;
}

.cv-form label {
	display: grid;
	gap: 7px;
	color: var(--ink);
	font-size: 0.92rem;
	font-weight: 800;
}

.cv-form input,
.cv-form textarea,
.cv-form select,
.newsletter-form input {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #fff;
	color: var(--ink);
	font: inherit;
	padding: 13px 14px;
}

.newsletter-form input {
	min-width: 0;
	padding-right: 14px;
}

.newsletter-form button {
	font-size: 0.88rem;
}

.newsletter-form button::before {
	content: "";
	font-size: inherit;
}

.cv-form textarea {
	min-height: 140px;
	resize: vertical;
}

.lead-info-topics {
	margin: 2px 0 0;
	padding: 0;
	border: 0;
}

.lead-info-topics legend {
	margin-bottom: 10px;
	color: var(--ink);
	font-weight: 800;
}

.lead-info-topics__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 12px;
}

.lead-info-topics label {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: var(--muted);
	font-weight: 700;
	line-height: 1.25;
}

.lead-info-topics input {
	width: 16px;
	height: 16px;
	accent-color: var(--green);
}

.cv-phone-input {
	display: grid;
	grid-template-columns: minmax(112px, 0.36fr) minmax(0, 1fr);
	gap: 10px;
}

.cv-phone-input select {
	padding-left: 12px;
	white-space: nowrap;
}

.cv-phone-input input {
	min-width: 0;
}

.cv-turnstile {
	display: flex;
	justify-content: flex-start;
	min-height: 65px;
}

.cv-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.site-footer {
	border-top: 1px solid var(--line);
	background: #fff;
	color: var(--ink);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(210px, 1.05fr) minmax(130px, 0.7fr) minmax(160px, 0.82fr) minmax(260px, 1fr);
	justify-content: center;
	gap: clamp(38px, 6vw, 76px);
	width: min(1040px, calc(100% - 64px));
	margin: 0 auto;
	padding: 58px 0;
}

.site-footer__logo {
	width: 145px;
	margin-bottom: 18px;
}

.site-footer p,
.site-footer li {
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.6;
}

.site-footer h4 {
	margin: 0 0 18px;
	font-size: 1rem;
}

.site-footer ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer a {
	text-decoration: none;
}

.social-row {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

.social-row a {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--green);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.social-row a.social-row__linkedin {
	width: 48px;
	height: 48px;
	font-size: 1rem;
}

.newsletter-form {
	display: grid;
	grid-template-columns: minmax(230px, 1fr);
	gap: 10px;
	align-items: stretch;
	width: min(100%, 360px);
	margin-top: 14px;
}

.newsletter-form button {
	position: static;
	width: 100%;
	min-width: 160px;
	height: auto;
	border: 1px solid var(--green);
	border-radius: 6px;
	background: var(--green);
	color: #fff;
	cursor: pointer;
	font-weight: 900;
	padding: 13px 18px;
	white-space: nowrap;
}

.site-footer__bar {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	background: var(--green);
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.86rem;
	padding: 20px max(32px, calc((100vw - 1220px) / 2));
}

.site-footer__bar a {
	margin-left: 28px;
	color: #fff;
	text-decoration: none;
}

.cookie-banner {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 100;
	width: min(420px, calc(100vw - 40px));
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: var(--shadow);
	padding: 18px;
}

.cookie-banner p {
	margin: 0 0 12px;
	color: var(--ink);
	font-size: 0.94rem;
}

.cookie-banner div {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.cookie-banner button {
	border: 1px solid var(--green);
	border-radius: 6px;
	background: var(--green);
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 800;
	padding: 9px 12px;
}

.cookie-banner button:last-child {
	background: transparent;
	color: var(--green);
}

@media (max-width: 1180px) {
	.site-nav {
		display: none;
	}

	.mobile-menu {
		display: block;
	}

	.header-actions > .button-link {
		display: none;
	}

	.header-actions > .language-switcher {
		display: none;
	}

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

	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(220px, 1fr));
		width: min(860px, calc(100% - 48px));
	}
}

@media (max-width: 900px) {
	.site-header__inner,
	.cv-wrap,
	.site-footer__grid {
		width: min(100% - 36px, 1220px);
	}

	.site-footer__grid {
		justify-content: center;
	}

	.site-header__inner {
		min-height: 76px;
	}

	.site-logo img {
		width: 156px;
	}

	.hero {
		padding-top: 48px;
	}

	.hero__grid,
	.split-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.product-scene {
		min-height: 380px;
	}

	.trust-bar {
		grid-template-columns: 1fr;
		margin-bottom: -30px;
	}

	.trust-item {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.trust-item:last-child {
		border-bottom: 0;
	}

	.section--after-hero {
		padding-top: 90px;
	}

	.mini-flow,
	.process-flow,
	.info-grid,
	.info-explorer,
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.faq-list {
		grid-template-columns: 1fr;
	}

	.mix-cards {
		grid-template-columns: 1fr;
	}

	.cert-sample-grid {
		grid-template-columns: 1fr;
	}

	.use-scroller__head {
		align-items: flex-start;
	}

	.use-scroller__track {
		grid-auto-columns: minmax(230px, 84%);
	}

	.industry-cards {
		grid-template-columns: 1fr;
	}

	.info-card__preview {
		display: none;
	}

	.mini-step:not(:last-child)::after,
	.process-step:not(:last-child)::after {
		display: none;
	}

	.cta-band__inner,
	.cta-band__copy {
		display: grid;
		justify-items: start;
	}

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

@media (max-width: 620px) {
	html,
	body {
		overflow-x: hidden;
	}

	.hero h1 {
		font-size: 2.15rem;
		line-height: 1.12;
	}

	.site-header__inner,
	.cv-wrap,
	.site-footer__grid {
		width: min(100% - 28px, 1220px);
	}

	.newsletter-form {
		width: 100%;
	}

	.site-header__inner {
		min-height: 66px;
	}

	.site-logo img {
		width: 138px;
	}

	.mobile-menu summary {
		min-height: 40px;
		padding: 8px 10px;
		font-size: 0.86rem;
	}

	.mobile-menu__panel {
		right: -2px;
		width: min(300px, calc(100vw - 28px));
		max-height: calc(100vh - 88px);
		overflow: auto;
	}

	.hero {
		padding-top: 30px;
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0 48%, rgba(255, 255, 255, 0.86) 100%),
			url("../images/hero-cbd-lab.png") right top / auto 48% no-repeat,
			linear-gradient(120deg, #fff, #eef6ef);
	}

	.hero__grid {
		gap: 14px;
		min-height: 0;
	}

	.hero__copy {
		margin-top: 16px;
		font-size: 1rem;
		line-height: 1.55;
	}

	.hero__actions,
	.section-actions {
		display: grid;
		gap: 12px;
		margin-top: 24px;
	}

	.button-link {
		width: 100%;
		min-height: 46px;
		justify-content: center;
		padding: 13px 16px;
	}

	.product-scene {
		min-height: 230px;
	}

	.bottle--large {
		right: 7%;
		width: 112px;
		height: 202px;
	}

	.bottle--small {
		right: 45%;
		width: 78px;
		height: 148px;
	}

	.lab-glass {
		left: 2%;
		width: 126px;
		height: 74px;
	}

	.trust-bar {
		margin-top: 18px;
		margin-bottom: 0;
		border-radius: 10px;
	}

	.trust-item {
		grid-template-columns: 46px minmax(0, 1fr);
		justify-items: start;
		gap: 12px;
		min-height: 72px;
		padding: 14px 16px;
		text-align: left;
	}

	.trust-item > div {
		justify-items: start;
	}

	.icon-round {
		width: 38px;
		height: 38px;
	}

	.section {
		padding: 46px 0;
	}

	.section--after-hero {
		padding-top: 52px;
	}

	.section h2,
	.info-panel h3,
	.faq-section h2 {
		font-size: 1.75rem;
		line-height: 1.16;
	}

	.section-lede {
		margin-top: 14px;
		font-size: 0.98rem;
		line-height: 1.58;
	}

	.split-card,
	.info-panel,
	.faq-item,
	.mix-card {
		border-radius: 10px;
		padding: 18px;
	}

	.info-card {
		min-height: 150px;
		padding: 20px;
	}

	.info-card strong,
	.info-card span,
	.info-card a {
		max-width: 62%;
	}

	.info-card::after {
		width: 42%;
		background-position: center;
	}

	.faq-section {
		padding: 48px 0;
	}

	.faq-grid {
		margin-top: 22px;
	}

	.faq-item summary {
		font-size: 0.98rem;
		line-height: 1.35;
	}

	.faq-item p {
		font-size: 0.95rem;
		line-height: 1.55;
	}

	.mix-cards {
		gap: 12px;
	}

	.mix-card {
		min-height: 0;
	}

	.mix-card p {
		max-width: none;
	}

	.cert-grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.site-footer__logo,
	.newsletter-form {
		margin-left: auto;
		margin-right: auto;
	}

	.social-row {
		justify-content: center;
	}

	.cert-sample-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.cert-sample {
		grid-template-columns: 76px minmax(0, 1fr);
		gap: 12px;
		padding: 12px;
	}

	.cert-sample img {
		width: 76px;
	}

	.cert-lightbox {
		padding: 14px;
	}

	.cookie-banner {
		right: 14px;
		bottom: 14px;
		width: calc(100vw - 28px);
		padding: 14px;
	}

	.cookie-banner div {
		display: grid;
	}

	.site-footer__bar {
		display: grid;
		gap: 12px;
		padding: 18px 14px;
	}

	.site-footer__bar a {
		margin: 0 18px 0 0;
	}

	.site-footer__grid {
		gap: 26px;
	}
}

@media (max-width: 390px) {
	.hero h1 {
		font-size: 1.95rem;
	}

	.site-logo img {
		width: 124px;
	}

	.mobile-menu summary span:last-child {
		display: none;
	}

	.product-scene {
		min-height: 205px;
	}

	.info-card strong,
	.info-card span,
	.info-card a {
		max-width: 70%;
	}

	.cert-sample {
		grid-template-columns: 68px minmax(0, 1fr);
	}

	.cert-sample img {
		width: 68px;
	}
}
