/* =========================================================
   VALTHERA TECHNOLOGIES — Mockup-matched design
   ========================================================= */

:root {
	--navy:        #1B3A5B;
	--navy-dark:   #142C46;
	--navy-deep:   #0E2238;
	--navy-soft:   #2C4E72;
	--green:       #5AA66B;
	--green-dark:  #4A8C5C;
	--green-soft:  #6FB87E;
	--text:        #4A5568;
	--text-light:  #6B7280;
	--bg:          #FFFFFF;
	--bg-soft:     #F7F8FA;
	--bg-card:     #FFFFFF;
	--border:      #E5E7EB;
	--border-soft: #EEF1F4;

	--font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

	--container: 1200px;
	--gutter:    clamp(20px, 4vw, 40px);
	--ease:      cubic-bezier(.2,.7,0,1);
}

*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
h1,h2,h3,h4,h5,h6,p,dl,dd { margin: 0; }

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
	position: fixed; top: 8px; left: 8px;
	background: var(--navy); color: #fff;
	padding: 10px 14px; clip: auto; width: auto; height: auto; z-index: 9999;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

/* HEADER */
.site-header {
	background: #fff;
	border-bottom: 1px solid var(--border-soft);
	position: sticky;
	top: 0;
	z-index: 100;
}
.site-header__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 18px var(--gutter);
	display: flex;
	align-items: center;
	gap: 32px;
}
.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--navy);
}

/* WP Customizer custom-logo support */
.brand--custom { padding: 4px 0; }
.brand--custom .custom-logo-link {
	display: inline-flex;
	align-items: center;
}
.brand--custom .custom-logo {
	max-height: 56px;
	width: auto;
	height: auto;
	display: block;
}
@media (max-width: 600px) {
	.brand--custom .custom-logo { max-height: 44px; }
}

.brand__mark { width: 46px; height: 46px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: .04em;
	color: var(--navy);
}
.brand__sub {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .22em;
	color: var(--navy);
	margin-top: 6px;
}
.site-nav { margin-left: auto; }
.site-nav__list { display: flex; gap: 36px; }
.site-nav__list a {
	font-size: 15px;
	font-weight: 500;
	color: var(--navy);
	padding: 8px 0;
	transition: color .25s var(--ease);
}
.site-nav__list a:hover { color: var(--green); }

.site-header__cta {
	background: var(--green);
	color: #fff;
	padding: 12px 22px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	transition: background .25s var(--ease), transform .25s var(--ease);
}
.site-header__cta:hover { background: var(--green-dark); transform: translateY(-1px); }

.nav-toggle {
	display: none;
	width: 40px; height: 40px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	border-radius: 6px;
	border: 1px solid var(--border);
}
.nav-toggle span {
	width: 18px; height: 2px; background: var(--navy);
	transition: transform .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 900px) {
	.site-nav, .site-header__cta { display: none; }
	.nav-toggle { display: inline-flex; margin-left: auto; }
	.site-header.is-nav-open .site-nav {
		display: flex;
		position: absolute;
		top: 100%; left: 0; right: 0;
		background: #fff;
		padding: 24px var(--gutter);
		border-top: 1px solid var(--border-soft);
		border-bottom: 1px solid var(--border-soft);
	}
	.site-header.is-nav-open .site-nav__list { flex-direction: column; gap: 16px; width: 100%; }
}

/* BUTTONS */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
	border: 2px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
	background: var(--green);
	color: #fff;
	border-color: var(--green);
}
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn--outline {
	background: #fff;
	color: var(--navy);
	border-color: #fff;
}
.btn--outline:hover { background: transparent; color: #fff; border-color: #fff; }
.btn--navy {
	background: var(--navy);
	color: #fff;
	border-color: var(--navy);
}
.btn--navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); }
.btn--ghost-navy {
	background: transparent;
	color: var(--navy);
	border-color: var(--navy);
}
.btn--ghost-navy:hover { background: var(--navy); color: #fff; }

/* HERO */
.hero {
	position: relative;
	min-height: 560px;
	background: var(--navy-deep);
	color: #fff;
	overflow: hidden;
	display: flex;
	align-items: center;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center right;
}
.hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg,
			rgba(14,34,56,.95) 0%,
			rgba(20,44,70,.88) 45%,
			rgba(14,34,56,.78) 75%,
			rgba(14,34,56,.72) 100%),
		radial-gradient(80% 60% at 80% 50%, rgba(14,34,56,.0), rgba(14,34,56,.4));
}
.hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 100px var(--gutter);
}
.hero__content { max-width: 640px; }
.hero__title {
	font-size: clamp(34px, 4.8vw, 54px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -.01em;
	color: #fff;
	margin-bottom: 24px;
}
.hero__sub {
	font-size: 17px;
	line-height: 1.6;
	color: rgba(255,255,255,.85);
	margin-bottom: 36px;
	max-width: 520px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; position: relative; z-index: 4; }

@media (max-width: 700px) {
	.hero { min-height: 500px; }
	.hero__inner { padding: 70px var(--gutter) 90px; }
	.hero__bg::after {
		background: linear-gradient(180deg,
			rgba(14,34,56,.92) 0%,
			rgba(20,44,70,.88) 100%);
	}
}

/* SECTIONS */
.section { padding: clamp(70px, 10vw, 120px) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy-deep); color: #fff; }
.section--navy .section-title { color: #fff; }
.section--navy .section-sub { color: rgba(255,255,255,.75); }

.section-header {
	text-align: center;
	margin-bottom: 60px;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}
.section-title {
	font-size: clamp(28px, 3.6vw, 40px);
	font-weight: 700;
	line-height: 1.25;
	color: var(--navy);
	letter-spacing: -.01em;
	margin-bottom: 12px;
}
.section-title__accent {
	color: var(--text-light);
	font-weight: 500;
	display: block;
}
.section-sub {
	font-size: 17px;
	line-height: 1.6;
	color: var(--text-light);
}
.section-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--green);
	margin-bottom: 14px;
}

/* FEATURE CARDS (3 from mockup) */
.features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 20px;
}
.feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border-soft);
	border-radius: 8px;
	padding: 44px 36px;
	box-shadow: 0 1px 3px rgba(20,44,70,.04), 0 8px 24px -16px rgba(20,44,70,.08);
	text-align: center;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 1px 3px rgba(20,44,70,.04), 0 24px 48px -20px rgba(20,44,70,.18);
	border-color: var(--border);
}
.feature-card__icon {
	display: inline-flex;
	width: 64px; height: 64px;
	color: var(--navy);
	margin-bottom: 24px;
}
.feature-card__icon svg { width: 100%; height: 100%; }
.feature-card__icon .accent { color: var(--green); }

.feature-card__title {
	font-size: 20px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 16px;
}
.feature-card__body {
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-light);
	max-width: 32ch;
	margin: 0 auto;
}

@media (max-width: 900px) { .features__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

/* POSITIONING */
.positioning__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
}
.positioning__lead .section-title { text-align: left; }
.positioning__body p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text);
	margin-bottom: 16px;
}
.positioning__body p:last-child { margin-bottom: 0; }

.check-list {
	margin-top: 30px;
	display: grid;
	gap: 14px;
}
.check-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	font-size: 16px;
	color: var(--navy);
	font-weight: 500;
}
.check-list li::before {
	content: "";
	display: inline-block;
	width: 22px; height: 22px;
	flex-shrink: 0;
	margin-top: 2px;
	background: var(--green);
	border-radius: 50%;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'><path d='M6 11.5l3.5 3.5 7-7' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	background-size: contain;
}

@media (max-width: 800px) {
	.positioning__grid { grid-template-columns: 1fr; }
	.positioning__lead .section-title { text-align: center; }
}

/* CAPABILITIES (4 cards) */
.capabilities__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 20px;
}
.cap-card {
	background: #fff;
	border: 1px solid var(--border-soft);
	border-radius: 8px;
	padding: 36px 32px;
	box-shadow: 0 1px 3px rgba(20,44,70,.04), 0 8px 24px -16px rgba(20,44,70,.08);
	display: flex;
	flex-direction: column;
	gap: 18px;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.cap-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 1px 3px rgba(20,44,70,.04), 0 24px 48px -20px rgba(20,44,70,.18);
}
.cap-card__head {
	display: flex;
	align-items: center;
	gap: 16px;
}
.cap-card__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	background: rgba(90,166,107,.12);
	color: var(--green-dark);
	border-radius: 50%;
	font-size: 14px;
	font-weight: 700;
	flex-shrink: 0;
}
.cap-card__title {
	font-size: 19px;
	font-weight: 700;
	color: var(--navy);
	line-height: 1.3;
}
.cap-card__body {
	font-size: 15px;
	line-height: 1.65;
	color: var(--text-light);
}
.cap-card__list {
	display: grid;
	gap: 10px;
	padding-top: 18px;
	border-top: 1px solid var(--border-soft);
}
.cap-card__list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: var(--navy-soft);
	font-weight: 500;
}
.cap-card__list li::before {
	content: "";
	width: 6px; height: 6px;
	background: var(--green);
	border-radius: 50%;
	flex-shrink: 0;
}
.cap-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: auto;
	padding-top: 18px;
}
.cap-card__tags span {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--navy);
	background: var(--bg-soft);
	padding: 6px 12px;
	border-radius: 999px;
}

@media (max-width: 800px) { .capabilities__grid { grid-template-columns: 1fr; } }

/* FEATURED TECHNOLOGY */
.featured__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
}
.featured__visual {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 4/5;
	box-shadow: 0 24px 60px -24px rgba(20,44,70,.35);
}
.featured__visual img { width: 100%; height: 100%; object-fit: cover; }
.featured__visual::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(20,44,70,.05) 0%, rgba(20,44,70,.55) 100%);
}
.featured__badge {
	position: absolute;
	top: 24px; left: 24px;
	background: var(--green);
	color: #fff;
	padding: 8px 14px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	z-index: 1;
}
.featured__data {
	position: absolute;
	left: 24px; right: 24px; bottom: 24px;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 12px;
	background: rgba(255,255,255,.95);
	padding: 16px 18px;
	border-radius: 6px;
	z-index: 1;
}
.featured__data > div { display: flex; flex-direction: column; gap: 2px; }
.featured__data dt {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--text-light);
}
.featured__data dd {
	font-size: 16px;
	font-weight: 700;
	color: var(--navy);
}
.featured__content .section-title { text-align: left; margin-bottom: 16px; }
.value-list {
	margin-top: 30px;
	display: grid;
	gap: 22px;
}
.value-list li {
	display: grid;
	grid-template-columns: 36px 1fr;
	gap: 16px;
	align-items: start;
}
.value-list__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px; height: 36px;
	background: var(--green);
	color: #fff;
	border-radius: 50%;
	font-size: 14px;
	font-weight: 700;
}
.value-list strong {
	display: block;
	font-size: 17px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 4px;
}
.value-list p {
	font-size: 15px;
	line-height: 1.55;
	color: var(--text-light);
}

@media (max-width: 800px) {
	.featured__grid { grid-template-columns: 1fr; }
	.featured__content .section-title { text-align: center; }
}

/* APPLICATIONS */
.applications__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 20px;
}
.app-card {
	background: #fff;
	border: 1px solid var(--border-soft);
	border-radius: 8px;
	padding: 32px 24px;
	text-align: center;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
	box-shadow: 0 1px 3px rgba(20,44,70,.04);
}
.app-card:hover {
	transform: translateY(-4px);
	background: var(--navy);
	box-shadow: 0 24px 48px -20px rgba(20,44,70,.3);
}
.app-card:hover h3,
.app-card:hover p { color: #fff; }
.app-card:hover .app-card__icon { color: var(--green-soft); }

.app-card__icon {
	display: inline-flex;
	width: 48px; height: 48px;
	color: var(--green);
	margin-bottom: 18px;
	transition: color .35s var(--ease);
}
.app-card h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 10px;
	transition: color .35s var(--ease);
}
.app-card p {
	font-size: 14px;
	line-height: 1.55;
	color: var(--text-light);
	transition: color .35s var(--ease);
}

@media (max-width: 1000px) { .applications__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .applications__grid { grid-template-columns: 1fr; } }

/* PROCESS */
.process__flow {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 20px;
}
.step {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 8px;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.step:hover {
	background: rgba(90,166,107,.10);
	border-color: rgba(90,166,107,.35);
	transform: translateY(-4px);
}
.step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	background: var(--green);
	color: #fff;
	border-radius: 50%;
	font-size: 14px;
	font-weight: 700;
}
.step__body h3 {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
	line-height: 1.3;
}
.step__body p {
	font-size: 14.5px;
	line-height: 1.6;
	color: rgba(255,255,255,.7);
}
.process__lab {
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.process__lab figure {
	margin: 0;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 4/3;
}
.process__lab img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.process__lab figure:hover img { transform: scale(1.05); }
.process__lab figcaption {
	position: absolute;
	left: 16px; right: 16px; bottom: 14px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	z-index: 1;
}
.process__lab figure::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(14,34,56,.85) 100%);
}

@media (max-width: 900px) { .process__flow { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .process__lab { grid-template-columns: 1fr; } }

/* CTA */
.cta {
	background: var(--navy);
	color: #fff;
	padding: clamp(70px, 9vw, 100px) 0;
	position: relative;
	overflow: hidden;
}
.cta::before {
	content: "";
	position: absolute;
	right: -10%; top: -50%;
	width: 60vw; height: 200%;
	background: radial-gradient(closest-side, rgba(90,166,107,.18), transparent 70%);
	pointer-events: none;
}
.cta__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
	position: relative;
}
.cta__title {
	font-size: clamp(28px, 3.2vw, 40px);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	letter-spacing: -.01em;
}
.cta__copy {
	font-size: 16px;
	line-height: 1.65;
	color: rgba(255,255,255,.8);
	margin-bottom: 28px;
}
.cta__buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.cta .btn--ghost-light {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,.4);
}
.cta .btn--ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

@media (max-width: 800px) {
	.cta__grid { grid-template-columns: 1fr; text-align: center; }
	.cta__buttons { justify-content: center; }
}

/* FOOTER */
.site-footer {
	background: var(--navy-deep);
	color: rgba(255,255,255,.7);
}
.site-footer__top { padding: 70px 0 50px; }
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr .8fr .8fr 1.2fr;
	gap: clamp(32px, 4vw, 60px);
	align-items: start;
}
.brand--footer { color: #fff; margin-bottom: 18px; }
.brand--footer .brand__name,
.brand--footer .brand__sub { color: #fff; }
.brand--footer .brand__sub { color: rgba(255,255,255,.55); }

.brand--custom-footer {
	display: inline-flex;
	align-items: center;
	margin-bottom: 18px;
}
.brand--custom-footer img {
	max-height: 60px;
	width: auto;
	height: auto;
	display: block;
}

.footer-blurb {
	font-size: 14.5px;
	line-height: 1.6;
	color: rgba(255,255,255,.65);
	margin-bottom: 24px;
	max-width: 38ch;
}
.footer-address {
	font-style: normal;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255,255,255,.7);
}
.footer-address strong {
	display: block;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.footer-address a {
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,.25);
}
.footer-col__title {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 18px;
}
.footer-grid__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-grid__col ul a {
	font-size: 14.5px;
	color: rgba(255,255,255,.7);
	transition: color .25s var(--ease);
}
.footer-grid__col ul a:hover { color: var(--green-soft); }

.footer-cta__text {
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
	margin: 8px 0 20px;
	max-width: 24ch;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255,255,255,.10);
	padding: 22px 0;
}
.site-footer__bottom .container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 13px;
	color: rgba(255,255,255,.55);
}
.site-footer__bottom a { color: rgba(255,255,255,.75); }
.site-footer__bottom a:hover { color: #fff; }

@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .footer-grid { grid-template-columns: 1fr; } }

/* REVEAL */
[data-reveal] {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

[data-reveal-stagger] > * {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal-stagger].is-in > * { opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-in > *:nth-child(1) { transition-delay: .05s; }
[data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: .15s; }
[data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: .25s; }
[data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: .35s; }
[data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: .45s; }
[data-reveal-stagger].is-in > *:nth-child(6) { transition-delay: .55s; }

/* =========================================================
   PARTICLE CANVAS in HERO
   ========================================================= */
.hero__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
	opacity: 1;
}
.hero__inner { z-index: 2; }
.hero__bg { z-index: 0; }

/* Hero entrance animation — letter by letter */
.hero__title {
	overflow: hidden;
}
.hero__title .word {
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
}
.hero__title .word__inner {
	display: inline-block;
	transform: translateY(110%);
	animation: heroWord 1s var(--ease) forwards;
}
.hero__title .word:nth-child(1) .word__inner { animation-delay: .1s; }
.hero__title .word:nth-child(2) .word__inner { animation-delay: .15s; }
.hero__title .word:nth-child(3) .word__inner { animation-delay: .2s; }
.hero__title .word:nth-child(4) .word__inner { animation-delay: .25s; }
.hero__title .word:nth-child(5) .word__inner { animation-delay: .3s; }
.hero__title .word:nth-child(6) .word__inner { animation-delay: .35s; }
.hero__title .word:nth-child(7) .word__inner { animation-delay: .4s; }
.hero__title .word:nth-child(8) .word__inner { animation-delay: .45s; }
@keyframes heroWord {
	to { transform: translateY(0); }
}
.hero__sub, .hero__actions {
	opacity: 0;
	transform: translateY(20px);
	animation: heroFade .9s .7s var(--ease) forwards;
}
.hero__actions { animation-delay: .9s; }
@keyframes heroFade {
	to { opacity: 1; transform: translateY(0); }
}


/* =========================================================
   STATS STRIP (animated counters)
   ========================================================= */
.stats-strip {
	background: var(--navy);
	color: #fff;
	padding: 0;
	position: relative;
	overflow: hidden;
}
.stats-strip::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(40% 100% at 20% 50%, rgba(90,166,107,.18), transparent 60%),
		radial-gradient(40% 100% at 80% 50%, rgba(90,166,107,.10), transparent 60%);
}
.stats-strip__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}
.stat {
	padding: 48px 32px;
	text-align: center;
	border-right: 1px solid rgba(255,255,255,.10);
	position: relative;
	transition: background .35s var(--ease);
}
.stat:last-child { border-right: 0; }
.stat:hover { background: rgba(90,166,107,.10); }
.stat__num {
	display: block;
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 800;
	line-height: 1;
	color: var(--green-soft);
	letter-spacing: -.02em;
	margin-bottom: 12px;
	font-variant-numeric: tabular-nums;
}
.stat__num .suffix {
	font-size: .55em;
	color: #fff;
	font-weight: 600;
	margin-left: 2px;
}
.stat__label {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255,255,255,.85);
}
.stat__sub {
	font-size: 12px;
	color: rgba(255,255,255,.5);
	margin-top: 6px;
}

@media (max-width: 800px) {
	.stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
	.stat:nth-child(2) { border-right: 0; }
	.stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.10); }
}
@media (max-width: 480px) {
	.stats-strip__grid { grid-template-columns: 1fr; }
	.stat { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.10); }
	.stat:last-child { border-bottom: 0; }
}

/* =========================================================
   MARQUEE / CAPABILITIES STRIP
   ========================================================= */
.marquee-strip {
	background: #fff;
	border-top: 1px solid var(--border-soft);
	border-bottom: 1px solid var(--border-soft);
	padding: 22px 0;
	overflow: hidden;
	position: relative;
}
.marquee-strip::before,
.marquee-strip::after {
	content: "";
	position: absolute;
	top: 0; bottom: 0;
	width: 120px;
	z-index: 2;
	pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(-90deg, #fff, transparent); }

.marquee {
	display: flex;
	gap: 60px;
	white-space: nowrap;
	animation: marqueeScroll 40s linear infinite;
	width: max-content;
}
.marquee__item {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--navy);
}
.marquee__item .dot {
	width: 6px; height: 6px;
	background: var(--green);
	border-radius: 50%;
	flex-shrink: 0;
}
@keyframes marqueeScroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* =========================================================
   LIQUID WAVE DIVIDERS
   ========================================================= */
.wave-divider {
	display: block;
	width: 100%;
	height: 80px;
	margin: 0;
	background: transparent;
	position: relative;
	overflow: hidden;
}
.wave-divider svg { width: 100%; height: 100%; display: block; }
.wave-divider--down { transform: rotate(180deg); }

/* =========================================================
   FLOATING MOLECULE BG (soft sections)
   ========================================================= */
.section--soft { position: relative; overflow: hidden; }
.section--soft::before,
.section--soft::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}
.section--soft::before {
	width: 360px; height: 360px;
	background: radial-gradient(closest-side, rgba(90,166,107,.10), transparent 70%);
	top: -120px; right: -120px;
	animation: floatBlob 16s ease-in-out infinite;
}
.section--soft::after {
	width: 280px; height: 280px;
	background: radial-gradient(closest-side, rgba(27,58,91,.08), transparent 70%);
	bottom: -100px; left: -80px;
	animation: floatBlob 18s ease-in-out infinite reverse;
}
.section--soft .container { position: relative; z-index: 1; }

@keyframes floatBlob {
	0%,100% { transform: translate(0,0) scale(1); }
	50%     { transform: translate(20px, 20px) scale(1.1); }
}

/* =========================================================
   MAGNETIC + GLOW BUTTONS
   ========================================================= */
.btn--primary {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn--primary::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--green-soft), var(--green-dark));
	opacity: 0;
	z-index: -1;
	transition: opacity .35s var(--ease);
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary::after {
	content: "";
	position: absolute;
	top: -50%;
	left: -100%;
	width: 60%;
	height: 200%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
	transform: skewX(-20deg);
	transition: left .7s var(--ease);
}
.btn--primary:hover::after { left: 130%; }

.site-header__cta {
	position: relative;
	overflow: hidden;
}
.site-header__cta::after {
	content: "";
	position: absolute;
	top: -50%; left: -100%;
	width: 60%; height: 200%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
	transform: skewX(-20deg);
	transition: left .7s var(--ease);
}
.site-header__cta:hover::after { left: 130%; }

/* =========================================================
   PROCESS — connector line + pulse
   ========================================================= */
.process { position: relative; }
.process__flow {
	position: relative;
}
.process__flow::before {
	content: "";
	position: absolute;
	left: 0; right: 0;
	top: 54px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(90,166,107,.4) 10%, rgba(90,166,107,.4) 90%, transparent);
	z-index: 0;
}
.step { position: relative; z-index: 1; }
.step__num {
	position: relative;
	box-shadow: 0 0 0 0 rgba(90,166,107,.6);
	animation: pulseRing 3s ease-out infinite;
}
.step:nth-child(2) .step__num { animation-delay: .4s; }
.step:nth-child(3) .step__num { animation-delay: .8s; }
.step:nth-child(4) .step__num { animation-delay: 1.2s; }
.step:nth-child(5) .step__num { animation-delay: 1.6s; }
.step:nth-child(6) .step__num { animation-delay: 2.0s; }
@keyframes pulseRing {
	0%   { box-shadow: 0 0 0 0 rgba(90,166,107,.5); }
	70%  { box-shadow: 0 0 0 14px rgba(90,166,107,0); }
	100% { box-shadow: 0 0 0 0 rgba(90,166,107,0); }
}

@media (max-width: 900px) {
	.process__flow::before { display: none; }
}

/* =========================================================
   FEATURE CARDS — animated icon
   ========================================================= */
.feature-card {
	position: relative;
	overflow: hidden;
}
.feature-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--green), var(--green-soft), var(--green));
	background-size: 200% 100%;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .5s var(--ease);
	animation: shimmer 3s linear infinite;
}
.feature-card:hover::before { transform: scaleX(1); }
@keyframes shimmer {
	from { background-position: 0% 0; }
	to   { background-position: 200% 0; }
}
.feature-card__icon {
	transition: transform .5s var(--ease);
}
.feature-card:hover .feature-card__icon {
	transform: translateY(-6px) scale(1.08);
}
.feature-card:hover .feature-card__icon .accent {
	animation: bounce 1s var(--ease);
}
@keyframes bounce {
	0%,100% { transform: translateX(0); }
	50%     { transform: translateX(4px); }
}

/* =========================================================
   APP-CARDS — radial reveal on hover
   ========================================================= */
.app-card {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.app-card::before {
	content: "";
	position: absolute;
	left: 50%; top: 50%;
	width: 0; height: 0;
	background: var(--navy);
	border-radius: 50%;
	transform: translate(-50%,-50%);
	transition: width .55s var(--ease), height .55s var(--ease);
	z-index: -1;
}
.app-card:hover::before {
	width: 220%; height: 220%;
}

/* =========================================================
   CAP-CARD — gradient sweep on hover
   ========================================================= */
.cap-card {
	position: relative;
	overflow: hidden;
}
.cap-card::after {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 3px;
	background: linear-gradient(90deg, var(--green), var(--navy-soft), var(--green));
	background-size: 200% 100%;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .5s var(--ease);
}
.cap-card:hover::after { transform: scaleX(1); animation: shimmer 2s linear infinite; }
.cap-card__num {
	transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.cap-card:hover .cap-card__num {
	background: var(--green);
	color: #fff;
	transform: rotate(360deg);
}

/* =========================================================
   VALUE LIST — slide on hover
   ========================================================= */
.value-list li {
	transition: transform .35s var(--ease);
}
.value-list li:hover {
	transform: translateX(8px);
}
.value-list__num {
	transition: transform .4s var(--ease), background .35s var(--ease);
}
.value-list li:hover .value-list__num {
	transform: rotate(-12deg) scale(1.1);
	background: var(--green-dark);
}

/* =========================================================
   FEATURED VISUAL — float + parallax glow
   ========================================================= */
.featured__visual {
	transition: transform .8s var(--ease);
}
.featured__visual:hover {
	transform: translateY(-8px) rotate(-.5deg);
}
.featured__visual::before {
	content: "";
	position: absolute;
	top: -20px; left: -20px;
	width: 100%; height: 100%;
	border: 2px solid var(--green);
	border-radius: 8px;
	z-index: -1;
	transition: transform .5s var(--ease);
}
.featured__visual:hover::before {
	transform: translate(-8px, -8px);
}

/* =========================================================
   CTA — animated mesh
   ========================================================= */
.cta {
	background:
		linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.cta::after {
	content: "";
	position: absolute;
	left: -20%; top: -50%;
	width: 80vw; height: 200%;
	background:
		radial-gradient(closest-side, rgba(90,166,107,.18), transparent 70%);
	pointer-events: none;
	animation: ctaShift 14s ease-in-out infinite;
}
@keyframes ctaShift {
	0%,100% { transform: translate(0,0); }
	50%     { transform: translate(40px, 30px); }
}
.cta__title {
	background: linear-gradient(90deg, #fff 0%, var(--green-soft) 50%, #fff 100%);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientShift 6s ease-in-out infinite;
}
@keyframes gradientShift {
	0%,100% { background-position: 0% 0; }
	50%     { background-position: 100% 0; }
}

/* =========================================================
   STICKY MOBILE/SCROLL CTA
   ========================================================= */
.scroll-cta {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 90;
	background: var(--green);
	color: #fff;
	padding: 14px 24px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	box-shadow: 0 16px 40px -10px rgba(90,166,107,.5), 0 4px 12px rgba(20,44,70,.15);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	opacity: 0;
	transform: translateY(80px);
	transition: opacity .5s var(--ease), transform .5s var(--ease), background .25s var(--ease);
	pointer-events: none;
}
.scroll-cta.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.scroll-cta:hover { background: var(--green-dark); transform: translateY(-2px); }
.scroll-cta__pulse {
	display: inline-block;
	width: 8px; height: 8px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(255,255,255,.7);
	animation: dotPulse 1.8s ease-out infinite;
}
@keyframes dotPulse {
	0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
	70%  { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
	100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

@media (max-width: 600px) {
	.scroll-cta { right: 16px; bottom: 16px; padding: 12px 20px; font-size: 12px; }
}

/* =========================================================
   PROCESS LAB — alternating image lift
   ========================================================= */
.process__lab figure {
	transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.process__lab figure:hover {
	transform: translateY(-6px) scale(1.02);
	box-shadow: 0 24px 50px -20px rgba(0,0,0,.5);
}

/* =========================================================
   TILT effect helper
   ========================================================= */
.tilt {
	transform-style: preserve-3d;
	transition: transform .25s var(--ease);
}

/* =========================================================
   CHECK-LIST — sweep
   ========================================================= */
.check-list li {
	transition: transform .35s var(--ease), color .35s var(--ease);
}
.check-list li:hover {
	transform: translateX(8px);
	color: var(--green-dark);
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

/* =========================================================
   PAGE HERO (subpages)
   ========================================================= */
.page-hero {
	position: relative;
	padding: 110px 0 90px;
	background: var(--navy-deep);
	color: #fff;
	overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; filter: saturate(.7); }
.page-hero__bg::after {
	content: "";
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(14,34,56,.85), rgba(14,34,56,.95)),
		radial-gradient(60% 80% at 80% 0%, rgba(90,166,107,.18), transparent 70%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero__title {
	font-size: clamp(34px, 4.6vw, 56px);
	font-weight: 700;
	line-height: 1.1;
	margin: 14px 0 18px;
	letter-spacing: -.02em;
	color: #fff;
}
.page-hero__sub {
	font-size: 17px;
	line-height: 1.6;
	color: rgba(255,255,255,.82);
	max-width: 56ch;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: clamp(40px, 5vw, 80px);
	align-items: start;
}
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }

.contact__aside-title {
	font-size: clamp(24px, 2.6vw, 32px);
	font-weight: 700;
	color: var(--navy);
	line-height: 1.2;
	margin: 12px 0 28px;
	letter-spacing: -.01em;
}
.contact__info {
	display: grid;
	gap: 20px;
	margin: 0 0 32px;
	padding: 28px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.contact__info li { display: grid; gap: 4px; }
.contact__info-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--text-light);
}
.contact__info-value {
	font-size: 16px;
	color: var(--navy);
	font-weight: 600;
	line-height: 1.5;
}
a.contact__info-value:hover { color: var(--green); }

.contact__assurance {
	display: flex;
	gap: 14px;
	padding: 20px;
	background: rgba(90,166,107,.08);
	border: 1px solid rgba(90,166,107,.25);
	border-radius: 8px;
}
.contact__assurance svg { flex-shrink: 0; margin-top: 2px; }
.contact__assurance strong {
	display: block;
	font-size: 14.5px;
	color: var(--navy);
	margin-bottom: 4px;
}
.contact__assurance p {
	font-size: 13.5px;
	color: var(--text-light);
	line-height: 1.55;
	margin: 0;
}

/* Form */
.contact__form-wrap {
	background: #fff;
	border: 1px solid var(--border-soft);
	border-radius: 10px;
	padding: clamp(28px, 3.5vw, 44px);
	box-shadow: 0 1px 3px rgba(20,44,70,.04), 0 24px 60px -28px rgba(20,44,70,.18);
}

.valthera-form { display: grid; gap: 22px; position: relative; }
.vf-row--two {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
@media (max-width: 600px) { .vf-row--two { grid-template-columns: 1fr; } }

.vf-field { display: grid; gap: 8px; }
.vf-field label {
	font-size: 13px;
	font-weight: 600;
	color: var(--navy);
	letter-spacing: .01em;
}
.vf-field .req { color: var(--green); }
.vf-field input[type="text"],
.vf-field input[type="email"],
.vf-field input[type="tel"],
.vf-field textarea,
.vf-field select {
	width: 100%;
	font: inherit;
	font-size: 15px;
	padding: 13px 14px;
	background: var(--bg-soft);
	border: 1.5px solid var(--border);
	border-radius: 6px;
	color: var(--navy);
	transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.vf-field textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
.vf-field input:focus,
.vf-field textarea:focus,
.vf-field select:focus {
	outline: none;
	border-color: var(--green);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(90,166,107,.18);
}

.vf-select-wrap { position: relative; }
.vf-select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 38px; cursor: pointer; }
.vf-select-wrap svg {
	position: absolute; right: 14px; top: 50%;
	transform: translateY(-50%);
	color: var(--text-light);
	pointer-events: none;
}

.vf-field--check label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 13.5px;
	font-weight: 500;
	color: var(--text);
	line-height: 1.55;
	cursor: pointer;
}
.vf-field--check input[type="checkbox"] {
	flex-shrink: 0;
	width: 18px; height: 18px;
	margin-top: 2px;
	accent-color: var(--green);
	cursor: pointer;
}
.vf-field--check a { color: var(--green); text-decoration: underline; }

.vf-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	margin-top: 8px;
}
.btn--submit { padding: 16px 30px; }
.vf-recaptcha-notice {
	font-size: 11.5px;
	color: var(--text-light);
	line-height: 1.5;
	max-width: 36ch;
}
.vf-recaptcha-notice a { color: var(--text); text-decoration: underline; }

.vf-hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.form-alert {
	margin-bottom: 24px;
	padding: 16px 18px;
	border-radius: 8px;
	font-size: 14.5px;
	line-height: 1.5;
}
.form-alert--success {
	background: rgba(90,166,107,.12);
	border: 1px solid rgba(90,166,107,.4);
	color: var(--navy);
}
.form-alert--error {
	background: rgba(199,36,90,.08);
	border: 1px solid rgba(199,36,90,.3);
	color: #851a3e;
}

/* =========================================================
   COOKIE CONSENT BANNER (Consent Mode v2)
   ========================================================= */
.vc-banner[hidden],
.vc-modal[hidden],
.vc-fab[hidden] { display: none !important; }

.vc-banner {
	position: fixed;
	left: 16px; right: 16px;
	bottom: 16px;
	z-index: 200;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	box-shadow: 0 24px 60px -10px rgba(14,34,56,.25), 0 8px 20px -8px rgba(14,34,56,.12);
	max-width: 820px;
	margin: 0 auto;
	transform: translateY(40px);
	opacity: 0;
	transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.vc-banner.is-visible { transform: translateY(0); opacity: 1; }
.vc-banner__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 24px;
	align-items: center;
	padding: 22px 26px;
}
.vc-banner__title {
	font-size: 16px;
	font-weight: 700;
	color: var(--navy);
	margin: 0 0 6px;
}
.vc-banner__copy p {
	font-size: 13.5px;
	color: var(--text-light);
	line-height: 1.55;
	margin: 0;
}
.vc-banner__copy a { color: var(--green); text-decoration: underline; }
.vc-banner__actions { display: flex; flex-wrap: wrap; gap: 8px; }

@media (max-width: 720px) {
	.vc-banner__inner { grid-template-columns: 1fr; padding: 18px 20px; }
	.vc-banner__actions { justify-content: flex-start; }
}

.vc-btn {
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	padding: 11px 18px;
	border-radius: 6px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.vc-btn:hover { transform: translateY(-1px); }
.vc-btn--primary { background: var(--green); color: #fff; border-color: var(--green); }
.vc-btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.vc-btn--ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.vc-btn--ghost:hover { border-color: var(--navy); }

/* Modal */
.vc-modal {
	position: fixed;
	inset: 0;
	z-index: 210;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	opacity: 0;
	transition: opacity .35s var(--ease);
}
.vc-modal.is-visible { opacity: 1; }
.vc-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(14,34,56,.55);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.vc-modal__panel {
	position: relative;
	background: #fff;
	width: 100%;
	max-width: 560px;
	max-height: calc(100vh - 40px);
	border-radius: 14px;
	box-shadow: 0 30px 80px -10px rgba(14,34,56,.4);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transform: scale(.97);
	transition: transform .35s var(--ease);
}
.vc-modal.is-visible .vc-modal__panel { transform: scale(1); }
.vc-modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 26px 18px;
	border-bottom: 1px solid var(--border-soft);
}
.vc-modal__head h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 0; }
.vc-modal__close {
	background: none; border: 0;
	font-size: 26px; line-height: 1;
	color: var(--text-light); cursor: pointer;
	padding: 0 4px;
}
.vc-modal__close:hover { color: var(--navy); }
.vc-modal__body { overflow-y: auto; padding: 22px 26px; }
.vc-modal__intro {
	font-size: 13.5px;
	color: var(--text-light);
	line-height: 1.55;
	margin: 0 0 18px;
}

.vc-cat {
	display: block;
	padding: 16px 0;
	border-top: 1px solid var(--border-soft);
}
.vc-cat:first-of-type { border-top: 0; padding-top: 0; }
.vc-cat__head {
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px;
	margin-bottom: 6px;
}
.vc-cat__name { font-size: 14.5px; font-weight: 700; color: var(--navy); }
.vc-cat__desc {
	font-size: 13px;
	color: var(--text-light);
	line-height: 1.5;
	margin: 0;
}

.vc-toggle {
	position: relative;
	display: inline-block;
	width: 38px; height: 22px;
	flex-shrink: 0;
}
.vc-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.vc-toggle > span {
	position: absolute; inset: 0;
	background: var(--border);
	border-radius: 999px;
	transition: background .25s var(--ease);
}
.vc-toggle > span::before {
	content: "";
	position: absolute;
	left: 3px; top: 3px;
	width: 16px; height: 16px;
	background: #fff;
	border-radius: 50%;
	transition: transform .25s var(--ease);
	box-shadow: 0 1px 2px rgba(0,0,0,.15);
}
.vc-toggle input:checked + span { background: var(--green); }
.vc-toggle input:checked + span::before { transform: translateX(16px); }
.vc-toggle--locked > span { background: var(--green); opacity: .5; }
.vc-toggle--locked > span::before { transform: translateX(16px); }

.vc-modal__foot {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
	padding: 18px 26px;
	border-top: 1px solid var(--border-soft);
	background: var(--bg-soft);
}

/* Floating cookie button */
.vc-fab {
	position: fixed;
	left: 16px;
	bottom: 16px;
	z-index: 90;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--border);
	box-shadow: 0 8px 24px -8px rgba(14,34,56,.25);
	color: var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	transform: scale(.8);
	transition: opacity .35s var(--ease), transform .35s var(--ease), background .25s var(--ease);
}
.vc-fab.is-visible { opacity: 1; transform: scale(1); }
.vc-fab:hover { background: var(--navy); color: #fff; }
@media (max-width: 600px) {
	.vc-fab { left: auto; right: 16px; bottom: 78px; }
}
