/*
Theme Name: Verhelia Landing
Theme URI: https://verhelia.fr
Description: Theme enfant Kadence pour la landing page de la plateforme IA Verhelia.
Author: Verhelia
Author URI: https://verhelia.fr
Template: kadence
Version: 1.0.27
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.1
License: GNU General Public License v3.0 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: verhelia-landing
*/

:root {
	color-scheme: light;
	--navy: #0f3a5e;
	--navy-deep: #0a2540;
	--navy-card: #17314d;
	--teal: #2c8e8b;
	--teal-dark: #1f6f6d;
	--teal-soft: #5fb3b0;
	--teal-pale: #e5f1f0;
	--ink: #1a2738;
	--ink-soft: #5b6a7d;
	--ink-mute: #8a96a5;
	--paper: #f4f4f5;
	--paper-2: #eaebee;
	--paper-3: #fafafb;
	--white: #ffffff;
	--line: #d9dce1;
	--line-soft: rgba(15, 58, 94, 0.08);
	--serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
	--shadow: 0 28px 50px -32px rgba(15, 58, 94, 0.28);
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.verhelia-landing-page {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.verhelia-landing-page a {
	color: inherit;
	text-decoration: none;
}

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

.vh-topbar {
	position: sticky;
	z-index: 50;
	top: 0;
	background: rgba(244, 244, 245, 0.92);
	border-bottom: 1px solid var(--line-soft);
	backdrop-filter: blur(18px);
}

.vh-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 24px;
}

.vh-brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	width: 154px;
	color: var(--navy);
}

.vh-brand img {
	display: block;
	width: 100%;
	height: auto;
}

.vh-menu {
	display: flex;
	align-items: center;
	gap: 22px;
	color: var(--ink-soft);
	font-size: 14px;
	font-weight: 500;
}

.vh-menu a:hover,
.vh-menu a[aria-current="page"],
.vh-footer a:hover {
	color: var(--teal);
}

.vh-cta,
.vh-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 22px;
	border: 1px solid var(--navy);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.vh-cta {
	background: var(--navy);
	color: var(--white);
}

.verhelia-landing-page .vh-cta,
.verhelia-landing-page a.vh-cta,
.verhelia-landing-page .vh-cta:link,
.verhelia-landing-page .vh-cta:visited,
.verhelia-landing-page .vh-cta:focus,
.verhelia-landing-page .vh-cta:hover,
.verhelia-landing-page .vh-cta:active {
	color: var(--white) !important;
}

.vh-cta:hover {
	background: var(--teal-dark);
	border-color: var(--teal-dark);
	color: var(--white);
	transform: translateY(-1px);
}

.vh-secondary {
	background: transparent;
	color: var(--navy);
}

.vh-secondary:hover {
	border-color: var(--teal);
	color: var(--teal-dark);
	transform: translateY(-1px);
}

.vh-hero {
	padding: 92px 0 78px;
	border-bottom: 1px solid var(--line);
}

.vh-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
	gap: 58px;
	align-items: center;
}

.vh-eyebrow {
	margin: 0 0 18px;
	color: var(--teal);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.vh-hero h2,
.vh-section-title {
	margin: 0;
	color: var(--navy);
	font-family: var(--serif);
	font-weight: 400;
	line-height: 0.96;
}

.vh-hero h2 {
	max-width: 720px;
}

.vh-hero h2 em,
.vh-section-title em {
	color: var(--teal);
	font-style: italic;
}

.vh-lead {
	max-width: 710px;
	margin: 26px 0 0;
	color: var(--ink-soft);
	font-size: clamp(18px, 1.6vw, 22px);
	line-height: 1.55;
}

.vh-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.vh-reassurance {
	margin-top: 18px;
	color: var(--ink-mute);
	font-size: 14px;
}

.vh-product-frame {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	padding: 0;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.vh-product-frame img,
.vh-image-panel img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.vh-product-window {
	overflow: hidden;
	min-height: 520px;
	background: var(--white);
	border: 1px solid var(--line);
}

.vh-product-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid var(--line);
	color: var(--ink-soft);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.vh-product-dots {
	display: flex;
	gap: 6px;
}

.vh-product-dots span {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--line);
}

.vh-product-body {
	display: grid;
	grid-template-columns: 124px 1fr;
	min-height: 474px;
}

.vh-product-sidebar {
	padding: 18px 14px;
	background: var(--navy-deep);
	color: rgba(255, 255, 255, 0.72);
}

.vh-product-sidebar span {
	display: block;
	margin-bottom: 14px;
	padding: 8px 10px;
	border-left: 2px solid transparent;
	font-size: 12px;
}

.vh-product-sidebar span:first-child {
	border-color: var(--teal-soft);
	color: var(--white);
}

.vh-product-main {
	padding: 24px;
	background: var(--paper-3);
}

.vh-screen-slot {
	display: grid;
	min-height: 178px;
	padding: 0;
	place-items: center;
	border: 1px solid var(--line-soft);
	background: var(--white);
	color: var(--ink-mute);
	text-align: center;
}

.vh-zoomable {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: inherit;
	cursor: zoom-in;
}

.vh-zoomable::after {
	position: absolute;
	right: 14px;
	bottom: 14px;
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	background: rgba(10, 37, 64, 0.86);
	color: var(--white);
	font-family: "Font Awesome 6 Free";
	font-size: 15px;
	font-weight: 900;
	content: "\f00e";
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.vh-zoomable:hover::after,
.vh-zoomable:focus-visible::after {
	opacity: 1;
	transform: translateY(0);
}

.vh-lightbox {
	position: fixed;
	z-index: 9999;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 34px;
	background: rgba(10, 37, 64, 0.88);
}

.vh-lightbox.is-open {
	display: flex;
}

.vh-lightbox img {
	display: block;
	max-width: min(1200px, 94vw);
	max-height: 88vh;
	background: var(--white);
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

.vh-lightbox-close {
	position: absolute;
	top: 18px;
	right: 18px;
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.26);
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	cursor: pointer;
	font-size: 24px;
	line-height: 1;
}

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

.vh-mini-card {
	min-height: 112px;
	padding: 16px;
	background: var(--white);
	border: 1px solid var(--line-soft);
}

.vh-mini-card strong {
	display: block;
	color: var(--navy);
	font-size: 14px;
}

.vh-mini-card span {
	display: block;
	margin-top: 8px;
	color: var(--ink-soft);
	font-size: 13px;
	line-height: 1.45;
}

.vh-section {
	padding: 88px 0;
}

.vh-section.alt {
	background: var(--paper-2);
}

.vh-section.dark {
	background: var(--navy-deep);
	color: rgba(255, 255, 255, 0.76);
}

.vh-section.dark .vh-section-title,
.vh-section.dark h3,
.vh-section.dark h4 {
	color: var(--white);
}

.vh-section-head {
	max-width: 790px;
	margin-bottom: 42px;
}

.vh-section-title {
	font-size: clamp(28px, 3.1vw, 44px);
}

.vh-section-head .vh-lead {
	margin-top: 18px;
	font-size: 18px;
}

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

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

.vh-card,
.vh-pillar,
.vh-offer,
.vh-expert {
	background: var(--paper-3);
	border: 1px solid var(--line-soft);
	border-top: 3px solid var(--teal);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.vh-card:hover,
.vh-pillar:hover,
.vh-offer:hover,
.vh-expert:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.vh-card {
	padding: 26px;
}

.vh-card h3,
.vh-card h4,
.vh-pillar h3,
.vh-offer h3,
.vh-expert h3,
.vh-method h3 {
	margin: 0;
	color: var(--navy);
	font-family: var(--serif);
	font-size: 26px;
	font-weight: 500;
	line-height: 1.1;
}

.vh-card p,
.vh-pillar p,
.vh-offer p,
.vh-expert p,
.vh-method p {
	margin: 14px 0 0;
	color: var(--ink-soft);
}

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

.vh-mark {
	padding: 18px 20px;
	background: var(--white);
	border-left: 3px solid var(--teal);
	color: var(--navy);
	font-weight: 700;
}

.vh-pillar {
	padding: 32px;
}

.vh-roman,
.vh-number {
	display: block;
	margin-bottom: 18px;
	color: var(--teal);
	font-family: var(--serif);
	font-size: 42px;
	font-style: italic;
	line-height: 1;
}

.vh-list {
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.vh-list li {
	position: relative;
	margin-top: 11px;
	padding-left: 22px;
	color: var(--ink);
}

.vh-list li::before {
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 7px;
	height: 7px;
	background: var(--teal);
	border-radius: 999px;
	content: "";
}

.vh-promise {
	padding: 42px;
	background: var(--navy-deep);
	color: rgba(255, 255, 255, 0.8);
}

.vh-promise p {
	max-width: 920px;
	margin: 0;
	color: var(--white);
	font-family: var(--serif);
	font-size: clamp(28px, 3vw, 42px);
	font-style: italic;
	font-weight: 400;
	line-height: 1.16;
}

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

.vh-method {
	padding-right: 26px;
	border-right: 1px solid var(--line);
}

.vh-method:last-child {
	border-right: 0;
}

.vh-platform {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
	gap: 52px;
	align-items: center;
}

.vh-feature-split {
	display: grid;
	grid-template-columns: minmax(520px, 1.2fr) minmax(0, 0.8fr);
	gap: 52px;
	align-items: center;
}

.vh-image-panel {
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.vh-section-visual {
	margin-bottom: 30px;
}

.vh-agent-hero {
	margin-bottom: 34px;
}

.vh-agent-hero .vh-section-head {
	margin-bottom: 0;
}

.vh-workflow {
	display: grid;
	gap: 14px;
}

.vh-workflow-step {
	display: grid;
	grid-template-columns: 78px 1fr;
	gap: 18px;
	align-items: start;
	padding: 20px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.vh-workflow-icon {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	font-size: 22px;
}

.vh-workflow-copy {
	color: rgba(255, 255, 255, 0.7);
}

.vh-section.alt .vh-workflow-step {
	background: var(--white);
	border-color: var(--line-soft);
}

.vh-section.alt .vh-workflow-icon {
	background: var(--teal-pale);
	color: var(--teal-dark);
}

.vh-section.alt .vh-workflow-copy {
	color: var(--ink-soft);
}

.vh-badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.vh-badge {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	background: var(--teal-pale);
	color: var(--teal-dark);
	font-size: 13px;
	font-weight: 700;
}

.vh-offer {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 28px;
}

.vh-offer em {
	display: block;
	margin-top: 10px;
	color: var(--teal-dark);
	font-family: var(--serif);
	font-size: 20px;
	line-height: 1.25;
}

.vh-offer .vh-secondary {
	align-self: flex-start;
	margin-top: auto;
}

.vh-pricing {
	border-top-color: var(--navy);
	box-shadow: var(--shadow);
}

.vh-pricing h3 {
	font-size: clamp(54px, 7vw, 88px);
	line-height: 0.9;
}

.vh-pricing .vh-cta {
	align-self: flex-start;
	margin-top: 26px;
}

.vh-expert {
	padding: 28px;
}

.vh-avatar {
	display: grid;
	width: 64px;
	height: 64px;
	margin-bottom: 22px;
	place-items: center;
	background: var(--navy);
	color: var(--white);
	font-family: var(--serif);
	font-size: 31px;
	font-style: italic;
}

.vh-contact {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
	gap: 44px;
	align-items: start;
}

.vh-contact-panel {
	padding: 32px;
	background: var(--white);
	border: 1px solid var(--line);
}

.vh-contact-panel p {
	margin: 0 0 14px;
	color: var(--ink-soft);
}

.vh-contact-panel strong {
	color: var(--navy);
}

.vh-map {
	overflow: hidden;
	margin-top: 22px;
	border: 1px solid var(--line);
	background: var(--paper-2);
}

.vh-map iframe {
	display: block;
	width: 100%;
	height: 260px;
	border: 0;
	filter: grayscale(1) contrast(0.95);
}

.vh-footer {
	padding: 52px 0;
	background: var(--navy-deep);
	color: rgba(255, 255, 255, 0.72);
}

.vh-footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 0.7fr 0.9fr 0.8fr;
	gap: 34px;
}

.vh-footer h2,
.vh-footer h3 {
	margin: 0 0 14px;
	color: var(--white);
	font-family: var(--serif);
	font-weight: 500;
}

.vh-footer p,
.vh-footer a {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
}

.vh-footer nav {
	display: grid;
	gap: 8px;
}

.vh-footer-local {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 0.75fr;
	gap: 34px;
	margin-top: 34px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.vh-footer-local h3 {
	margin: 0 0 14px;
	color: var(--white);
	font-family: var(--serif);
	font-size: 24px;
	font-weight: 500;
}

.vh-footer-local p,
.vh-footer-local li {
	margin: 0 0 8px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
	line-height: 1.55;
}

.vh-footer-local ul {
	display: grid;
	gap: 6px;
	margin: 0;
	padding-left: 18px;
}

.vh-footer-local strong {
	color: var(--white);
}

.vh-footer-seo {
	margin-top: 34px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.vh-footer-seo h3 {
	margin: 0 0 18px;
	color: var(--white);
	font-family: var(--serif);
	font-size: 24px;
	font-weight: 500;
}

.vh-footer-seo-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px;
}

.vh-footer-seo-grid nav {
	display: grid;
	align-content: start;
	gap: 7px;
}

.vh-footer-seo-grid strong {
	margin-bottom: 4px;
	color: var(--teal-soft);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.vh-footer-seo-grid a {
	color: rgba(255, 255, 255, 0.62);
	font-size: 13px;
	line-height: 1.35;
}

.vh-seo-hero {
	padding: 88px 0 58px;
	background: var(--paper-3);
	border-bottom: 1px solid var(--line);
}

.vh-seo-wrap {
	max-width: 940px;
}

.vh-seo-hero h1 {
	max-width: 920px;
	margin: 0;
	color: var(--navy);
	font-family: var(--serif);
	font-size: clamp(38px, 4.4vw, 62px);
	font-weight: 400;
	line-height: 1;
}

.vh-seo-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
	gap: 54px;
	align-items: start;
}

.vh-seo-content {
	padding: 42px;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.vh-seo-content h2 {
	margin: 34px 0 12px;
	color: var(--navy);
	font-family: var(--serif);
	font-size: clamp(26px, 2.6vw, 38px);
	font-weight: 500;
	line-height: 1.05;
}

.vh-seo-content h2:first-child {
	margin-top: 0;
}

.vh-seo-content p {
	margin: 0 0 18px;
	color: var(--ink-soft);
	font-size: 17px;
	line-height: 1.78;
}

.vh-seo-side {
	position: sticky;
	top: 106px;
	padding: 28px;
	background: var(--teal-pale);
	border: 1px solid rgba(44, 142, 139, 0.22);
}

.vh-seo-side h2 {
	margin: 0 0 16px;
	color: var(--navy);
	font-family: var(--serif);
	font-size: 30px;
	font-weight: 500;
}

.vh-seo-side .vh-secondary {
	margin-top: 22px;
}

.vh-faq-list {
	display: grid;
	gap: 12px;
	margin-top: 28px;
}

.vh-faq-item {
	background: var(--white);
	border: 1px solid var(--line);
}

.vh-faq-item summary {
	cursor: pointer;
	padding: 20px 22px;
	color: var(--navy);
	font-weight: 700;
}

.vh-faq-item p {
	margin: 0;
	padding: 0 22px 22px;
	color: var(--ink-soft);
}

.vh-seo-cta {
	max-width: 820px;
	text-align: center;
}

.vh-seo-cta h2 {
	margin: 0;
	color: var(--white);
	font-family: var(--serif);
	font-size: clamp(32px, 3.6vw, 50px);
	font-weight: 500;
	line-height: 1.04;
}

.vh-seo-cta p {
	margin: 20px auto 28px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 18px;
}

.vh-baseline {
	color: var(--teal-soft);
	font-family: var(--serif);
	font-style: italic;
}

.vh-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.72s ease, transform 0.72s ease;
	will-change: opacity, transform;
}

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

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

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

	.vh-reveal,
	.vh-card,
	.vh-pillar,
	.vh-offer,
	.vh-expert,
	.vh-cta,
	.vh-secondary {
		transition: none;
	}
}

@media (max-width: 980px) {
	.vh-menu {
		display: none;
	}

	.vh-hero-grid,
	.vh-platform,
	.vh-feature-split,
	.vh-contact,
	.vh-seo-grid {
		grid-template-columns: 1fr;
	}

	.vh-seo-side {
		position: static;
	}

	.vh-card-grid,
	.vh-card-grid.two,
	.vh-method-grid,
	.vh-marks,
	.vh-footer-grid,
	.vh-footer-local,
	.vh-footer-seo-grid {
		grid-template-columns: 1fr;
	}

	.vh-method {
		padding: 0 0 24px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.vh-method:last-child {
		border-bottom: 0;
	}
}

@media (max-width: 620px) {
	.vh-container {
		width: min(calc(100% - 28px), var(--container));
	}

	.vh-nav {
		min-height: 68px;
	}

	.vh-brand {
		width: 132px;
	}

	.vh-topbar .vh-cta {
		display: none;
	}

	.vh-hero,
	.vh-section,
	.vh-seo-hero {
		padding: 64px 0;
	}

	.vh-hero-actions {
		display: grid;
	}

	.vh-product-body {
		grid-template-columns: 1fr;
	}

	.vh-product-sidebar {
		display: none;
	}

	.vh-mini-grid {
		grid-template-columns: 1fr;
	}

	.vh-promise {
		padding: 28px;
	}

	.vh-workflow-step {
		grid-template-columns: 1fr;
	}

	.vh-seo-content {
		padding: 28px;
	}
}
