/**
 * Complx TCF — design system (fidélité maquette)
 * Spec: assets/maquette/00–07
 */

.complx-tcf,
.complx-tcf-home {
	--complx-navy: #073B66;
	--complx-navy-dark: #062F52;
	--complx-blue: #073B66;
	--complx-blue-light: #EAF0F8;
	--complx-section-light: #F5F7FA;
	--complx-border: #D9E0E7;
	--complx-text: #101828;
	--complx-text-muted: #586474;
	--complx-white: #FFFFFF;
	--complx-green: #0B9777;
	--complx-red-canada: #E31D2B;
	--complx-blue-quebec: #17458C;
	--complx-header-border: #E6E9EE;

	font-family: Inter, "Satoshi", system-ui, -apple-system, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	font-weight: 400;
	color: var(--complx-text);
	background: var(--complx-white);
	-webkit-font-smoothing: antialiased;
}

.complx-tcf *,
.complx-tcf *::before,
.complx-tcf *::after,
.complx-tcf-home *,
.complx-tcf-home *::before,
.complx-tcf-home *::after {
	box-sizing: border-box;
}

.complx-container {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 32px;
	padding-right: 32px;
}

@media (max-width: 1024px) {
	.complx-container { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 767px) {
	.complx-container { padding-left: 18px; padding-right: 18px; }
}

/* —— Typography —— */
.complx-tcf h1,
.complx-tcf-home h1,
.complx-h1 {
	font-size: 48px;
	line-height: 1.04;
	font-weight: 800;
	letter-spacing: -0.035em;
	color: var(--complx-navy);
	margin: 0;
}
.complx-tcf h2,
.complx-tcf-home h2,
.complx-h2 {
	font-size: 30px;
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--complx-navy);
	margin: 0;
}
.complx-tcf h3,
.complx-h3 {
	font-size: 20px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--complx-navy);
	margin: 0;
}
.complx-lead {
	font-size: 16px;
	line-height: 1.55;
	color: var(--complx-text-muted);
	margin: 0;
}
.complx-label {
	font-size: 13px;
	line-height: 1.3;
	font-weight: 650;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--complx-text-muted);
}
.complx-section-title {
	text-align: center;
}
.complx-section-title .complx-h2 { margin-bottom: 10px; }
.complx-section-title .complx-lead {
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 1024px) {
	.complx-tcf h1, .complx-tcf-home h1, .complx-h1 { font-size: 40px; }
}
@media (max-width: 767px) {
	.complx-tcf h1, .complx-tcf-home h1, .complx-h1 { font-size: 34px; line-height: 1.08; }
	.complx-tcf h2, .complx-h2 { font-size: 26px; }
}

/* —— Header —— */
.complx-header {
	position: sticky;
	top: 0;
	z-index: 100;
	height: 72px;
	background: var(--complx-white);
	border-bottom: 1px solid var(--complx-header-border);
}
.complx-header__inner {
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}
.complx-header__logo {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	text-decoration: none;
}
/* Logo VERT = fonds colorés : coque navy en clair (comme la landing). */
.complx-header__logo-shell {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 10px;
	background: #073B66;
}
.complx-header__logo img {
	display: block;
	width: 106px;
	height: auto;
}
@media (max-width: 767px) {
	.complx-header__logo-shell {
		padding: 5px 8px;
		border-radius: 8px;
	}
	.complx-header__logo img {
		width: 88px;
	}
}
.complx-header__nav {
	display: none;
	align-items: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.complx-header__nav a {
	font-size: 14px;
	font-weight: 500;
	color: var(--complx-text);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: color 180ms ease;
}
.complx-header__nav a:hover { color: var(--complx-navy); }
.complx-header__nav > li {
	position: relative;
}
.complx-header__nav .has-children > a::after {
	content: "";
	width: 0; height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	margin-left: 2px;
	opacity: 0.7;
}
.complx-header__submenu {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%) translateY(4px);
	min-width: 220px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: #fff;
	border: 1px solid var(--complx-border);
	border-radius: 10px;
	box-shadow: 0 16px 40px rgba(16, 24, 40, 0.12);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
	z-index: 80;
}
.complx-header__submenu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -14px;
	height: 14px;
}
.complx-header__nav > li:hover > .complx-header__submenu,
.complx-header__nav > li:focus-within > .complx-header__submenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}
.complx-header__submenu a {
	display: block;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 550;
	color: var(--complx-text);
	white-space: nowrap;
}
.complx-header__submenu a:hover {
	background: var(--complx-section-light);
	color: var(--complx-navy);
}
.complx-header__mobile-group {
	border-bottom: 1px solid rgba(217, 224, 231, 0.7);
}
.complx-header__mobile-group summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
	font-size: 16px;
	font-weight: 500;
	color: #101828;
}
.complx-header__mobile-group summary::-webkit-details-marker { display: none; }
.complx-header__mobile-group summary::after {
	content: "+";
	font-size: 18px;
	font-weight: 400;
	opacity: 0.7;
}
.complx-header__mobile-group[open] summary::after { content: "−"; }
.complx-header__mobile-sub {
	display: flex;
	flex-direction: column;
	padding: 0 0 10px 12px;
	gap: 2px;
}
.complx-header__mobile-sub a {
	padding: 10px 0;
	font-size: 14px;
	font-weight: 500;
	color: #586474;
	text-decoration: none;
	border-bottom: none;
}
.complx-header__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}
.complx-theme-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #D9E0E7 !important;
	border-radius: 999px !important;
	background: #ffffff !important;
	color: #073B66 !important;
	cursor: pointer;
	flex-shrink: 0;
	padding: 0;
	box-shadow: none !important;
	/* Pas de transition sur color : évite un flash blanc-sur-blanc au switch dark→light. */
	transition: background-color 180ms ease, border-color 180ms ease;
}
.complx-theme-toggle:hover {
	background: #EAF0F8 !important;
	border-color: #073B66 !important;
	color: #073B66 !important;
}
.complx-theme-toggle__icon {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	transition: opacity 180ms ease, transform 180ms ease;
}
.complx-theme-toggle__icon svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
	color: inherit;
}
.complx-theme-toggle .theme-sun {
	opacity: 0;
	transform: scale(0.5) rotate(90deg);
	pointer-events: none;
}
.complx-theme-toggle .theme-moon {
	opacity: 1;
	transform: scale(1) rotate(0deg);
	color: #073B66;
}
html.dark .complx-theme-toggle .theme-sun,
.dark .complx-theme-toggle .theme-sun {
	opacity: 1;
	transform: scale(1) rotate(0deg);
	pointer-events: auto;
	color: #ffffff;
}
html.dark .complx-theme-toggle .theme-moon,
.dark .complx-theme-toggle .theme-moon {
	opacity: 0;
	transform: scale(0.5) rotate(-90deg);
	pointer-events: none;
}
/* Aligné landing : rounded-lg, fond blanc, icône navy (override styles Elementor kit). */
.complx-header__toggle,
#complx-tcf-menu-toggle {
	position: relative;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 40px !important;
	height: 40px !important;
	min-width: 40px;
	min-height: 40px;
	padding: 0 !important;
	border: 1px solid #D9E0E7 !important;
	border-radius: 8px !important;
	background: #ffffff !important;
	color: #101828 !important;
	cursor: pointer;
	box-shadow: none !important;
	appearance: none;
	-webkit-appearance: none;
	transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}
.complx-header__toggle:hover,
#complx-tcf-menu-toggle:hover {
	border-color: #073B66 !important;
	color: #073B66 !important;
	background: #ffffff !important;
}
.complx-header__toggle-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: inherit;
}
.complx-header__toggle-icon[hidden] {
	display: none !important;
}
.complx-header__toggle-icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.complx-header__mobile {
	display: none;
	border-top: 1px solid rgba(217, 224, 231, 0.7);
	background: #ffffff;
}
.complx-header__mobile.is-open { display: block; }
.complx-header__mobile-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.complx-header__mobile-link {
	display: block;
	padding: 12px 0;
	border-bottom: 1px solid rgba(217, 224, 231, 0.7);
	color: #101828;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
}
.complx-header__mobile-link:hover {
	color: #073B66;
}
.complx-header__mobile a.complx-header__mobile-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 16px;
	min-height: 48px;
	padding: 12px 20px;
	border: none;
	border-radius: 999px;
	background: #073B66;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	line-height: 1.2;
	box-sizing: border-box;
}
.complx-header__mobile a.complx-header__mobile-cta:hover {
	background: #062F52;
	color: #ffffff;
}
@media (min-width: 1024px) {
	.complx-header__nav { display: flex; }
	.complx-header__toggle,
	#complx-tcf-menu-toggle { display: none !important; }
	.complx-header__mobile { display: none !important; }
	.complx-header__inner { padding: 0 32px; }
}
@media (max-width: 1023px) {
	.complx-header__inner { padding: 0 18px; }
	.complx-header__cta { display: none !important; }
}

/* —— Buttons —— */
.complx-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 22px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 650;
	line-height: 1;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
	white-space: nowrap;
}
.complx-button--primary {
	background: var(--complx-navy);
	color: #fff;
	border-color: var(--complx-navy);
}
.complx-button--primary:hover {
	background: var(--complx-navy-dark);
	border-color: var(--complx-navy-dark);
	color: #fff;
}
.complx-button--outline {
	background: var(--complx-white);
	color: var(--complx-navy);
	border-color: var(--complx-navy);
}
.complx-button--outline:hover {
	background: var(--complx-blue-light);
	color: var(--complx-navy);
}
.complx-button--white {
	background: #fff;
	color: var(--complx-navy);
	border-color: #fff;
}
.complx-button--white:hover {
	background: var(--complx-blue-light);
	color: var(--complx-navy);
}
.complx-button--sm {
	height: 38px;
	padding: 0 16px;
	font-size: 13px;
}
.complx-button--block { width: 100%; }
.complx-button:disabled,
.complx-button.is-disabled,
.complx-button[aria-disabled="true"] {
	opacity: 0.45;
	pointer-events: none;
}
.complx-button:focus-visible {
	outline: 2px solid var(--complx-navy);
	outline-offset: 2px;
}
@media (max-width: 767px) {
	.complx-button--mobile-full { width: 100%; }
}

/* —— Sections —— */
.complx-section {
	padding: 80px 0;
	background: var(--complx-white);
}
.complx-section--light { background: var(--complx-section-light); }
.complx-section--tight { padding: 64px 0 56px; }
@media (max-width: 767px) {
	.complx-section { padding: 48px 0; }
	.complx-section--tight { padding: 40px 0; }
}

/* —— Cards —— */
.complx-card {
	background: var(--complx-white);
	border: 1px solid var(--complx-border);
	border-radius: 10px;
	box-shadow: 0 4px 16px rgba(16, 24, 40, 0.06);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}
.complx-card:hover {
	border-color: #c8d2dc;
	box-shadow: 0 6px 18px rgba(16, 24, 40, 0.08);
}

/* —— Icon labels —— */
.complx-icon-label {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
}
.complx-icon-label__icon {
	width: 28px;
	height: 28px;
	color: var(--complx-navy);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.complx-icon-label__icon svg {
	width: 26px;
	height: 26px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.complx-icon-label__text {
	font-size: 13px;
	line-height: 1.3;
	font-weight: 600;
	color: var(--complx-navy);
	max-width: 120px;
}
.complx-icon-row {
	display: grid;
	gap: 20px;
}
.complx-icon-row--4 { grid-template-columns: repeat(4, 1fr); }
.complx-icon-row--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1024px) {
	.complx-icon-row--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
	.complx-icon-row--4,
	.complx-icon-row--5 { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
}

/* —— Symbol icons (Canada / Québec / Prep) —— */
.complx-symbol {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.complx-symbol img,
.complx-symbol svg {
	width: 36px;
	height: 36px;
	display: block;
	object-fit: contain;
}
.complx-symbol--canada svg { fill: var(--complx-red-canada); }
.complx-symbol--quebec svg { fill: var(--complx-blue-quebec); }
.complx-symbol--prep svg { fill: var(--complx-green); }

/* Symboles Canada / Québec : cadre blanc en mode sombre (contraste sur cartes navy) */
html.dark .complx-symbol--canada,
html.dark .complx-symbol--quebec,
.dark .complx-symbol--canada,
.dark .complx-symbol--quebec {
	width: 44px;
	height: 44px;
	padding: 6px;
	border-radius: 8px;
	background: #fff;
	box-sizing: border-box;
}
html.dark .complx-symbol--canada img,
html.dark .complx-symbol--quebec img,
.dark .complx-symbol--canada img,
.dark .complx-symbol--quebec img {
	width: 100%;
	height: 100%;
}

/* —— Media —— */
.complx-media {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

/* —— Hero variants —— */
.complx-hero {
	padding: 64px 0;
	background: var(--complx-white);
}
/* Homepage TCF: alternate bands so they differ from adjacent landing sections */
.complx-tcf-home .complx-hero--muted {
	background: var(--complx-section-light);
}
.complx-tcf-home .complx-section--choice {
	background: var(--complx-white);
}
.complx-hero__grid {
	display: grid;
	grid-template-columns: 43% 57%;
	gap: 48px;
	align-items: center;
}
.complx-hero__grid--55-45 {
	grid-template-columns: 55% 45%;
	gap: 40px;
}
.complx-hero__grid--50-50 {
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}
.complx-hero__copy .complx-h1 { margin-bottom: 18px; }
.complx-hero__copy .complx-lead { margin-bottom: 28px; max-width: 520px; }
.complx-hero__media {
	border-radius: 8px;
	overflow: hidden;
	height: 375px;
}
.complx-hero__media--sm { height: 285px; }
.complx-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 8px;
}

/* Navy split hero (Canada / Québec) */
.complx-hero--navy {
	padding: 0;
	background: #fff;
}
.complx-hero--navy .complx-hero-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: 10px;
	overflow: hidden;
	min-height: 420px;
}
.complx-hero-split__content {
	background: var(--complx-navy);
	color: #fff;
	padding: 48px 42px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.complx-hero-split__content .complx-h1 {
	color: #fff;
	margin-bottom: 16px;
}
.complx-hero-split__content .complx-lead {
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 22px;
	max-width: none;
}
.complx-checklist {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: grid;
	gap: 10px;
}
.complx-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	color: #fff;
}
.complx-checklist li svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 2px;
	stroke: #A7F3D0;
	fill: none;
	stroke-width: 2.25;
}
.complx-price-block { margin-bottom: 24px; }
.complx-price-block__label {
	font-size: 13px;
	opacity: 0.8;
	margin-bottom: 4px;
}
.complx-price-block__value {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
}
.complx-price-block__note {
	font-size: 12px;
	opacity: 0.75;
	margin-top: 4px;
}
.complx-hero-split__media {
	min-height: 100%;
	background: var(--complx-border);
}
.complx-hero-split__media img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	display: block;
	border-radius: 0;
}

@media (max-width: 1023px) {
	.complx-hero__grid,
	.complx-hero__grid--55-45,
	.complx-hero__grid--50-50,
	.complx-hero--navy .complx-hero-split {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.complx-hero__media,
	.complx-hero__media--sm { height: 240px; }
	.complx-hero-split__content { padding: 36px 24px; border-radius: 10px 10px 0 0; }
	.complx-hero-split__media img {
		min-height: 240px;
		border-radius: 0 0 10px 10px;
	}
	.complx-hero--navy .complx-hero-split { border-radius: 10px; }
}

/* —— Home orientation cards —— */
.complx-choice-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 36px;
}
.complx-card--choice {
	min-height: 150px;
	padding: 26px;
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 16px;
	align-items: start;
}
.complx-card--choice h3 { margin-bottom: 8px; }
.complx-card--choice p {
	font-size: 14px;
	line-height: 1.45;
	color: var(--complx-text-muted);
	margin: 0 0 16px;
}
.complx-card--choice .complx-button { margin-top: auto; }
@media (max-width: 900px) {
	.complx-choice-grid { grid-template-columns: 1fr; }
}

/* —— Exam cards (/tcf/) —— */
.complx-exam-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 36px;
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
}
.complx-card--exam {
	min-height: 290px;
	padding: 32px;
	display: flex;
	flex-direction: column;
}
.complx-card--exam .complx-symbol { margin-bottom: 14px; }
.complx-card--exam h3 { margin-bottom: 8px; }
.complx-card--exam > p {
	color: var(--complx-text-muted);
	font-size: 15px;
	margin: 0 0 18px;
}
.complx-bullets {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: grid;
	gap: 10px;
	flex: 1;
}
.complx-bullets li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 14px;
	color: var(--complx-text);
}
.complx-bullets li svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 1px;
	stroke: var(--complx-navy);
	fill: none;
	stroke-width: 2.25;
}
html.dark .complx-bullets li svg,
.dark .complx-bullets li svg {
	stroke: #A7F3D0;
}
@media (max-width: 767px) {
	.complx-exam-grid { grid-template-columns: 1fr; }
}

/* —— Contact band —— */
.complx-contact-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 88px;
	padding: 20px 28px;
	background: var(--complx-blue-light);
	border-radius: 10px;
	margin-top: 40px;
}
.complx-contact-band h3 { margin-bottom: 4px; }
.complx-contact-band p {
	margin: 0;
	color: var(--complx-text-muted);
	font-size: 14px;
}
@media (max-width: 640px) {
	.complx-contact-band {
		flex-direction: column;
		align-items: stretch;
		text-align: left;
	}
}

/* —— Notice / warning banners —— */
.complx-notice {
	padding: 20px 24px;
	border-radius: 10px;
	border: 1px solid transparent;
}
.complx-notice .complx-h3,
.complx-notice h3 {
	margin: 0 0 6px;
	font-size: 18px;
}
.complx-notice p {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
}
.complx-notice--warning {
	background: #FFF8E8;
	border-color: #F0D9A8;
}
.complx-notice--warning .complx-h3,
.complx-notice--warning h3 {
	color: #7A4E00;
}
.complx-notice--warning p {
	color: #5C4500;
}

/* —— Benefit pale cards (Canada why) —— */
.complx-benefit-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 32px;
}
.complx-card--benefit {
	background: var(--complx-blue-light);
	border: none;
	box-shadow: none;
	border-radius: 10px;
	padding: 24px 16px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	min-height: 140px;
}
.complx-card--benefit:hover { box-shadow: none; border: none; }
.complx-card--benefit .complx-icon-label__icon { color: var(--complx-navy); }
.complx-card--benefit p {
	margin: 0;
	font-size: 14px;
	font-weight: 650;
	color: var(--complx-navy);
	line-height: 1.3;
	max-width: 160px;
}
@media (max-width: 900px) {
	.complx-benefit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.complx-benefit-grid { grid-template-columns: 1fr; }
}

/* —— Dates table —— */
.complx-dates-table-wrap {
	background: #fff;
	border: 1px solid var(--complx-border);
	border-radius: 10px;
	overflow: hidden;
	margin-top: 28px;
}
.complx-dates-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.complx-dates-table th {
	text-align: left;
	padding: 14px 18px;
	font-weight: 600;
	color: var(--complx-text-muted);
	background: var(--complx-section-light);
	border-bottom: 1px solid var(--complx-border);
}
.complx-dates-table td {
	padding: 0 18px;
	height: 56px;
	border-bottom: 1px solid var(--complx-border);
	color: var(--complx-text);
	vertical-align: middle;
}
.complx-dates-table tr:last-child td { border-bottom: none; }
.complx-dates-empty {
	padding: 28px 24px;
	background: #fff;
	border: 1px solid var(--complx-border);
	border-radius: 10px;
}
.complx-dates-cards { display: none; gap: 12px; }
.complx-dates-card {
	background: #fff;
	border: 1px solid var(--complx-border);
	border-radius: 10px;
	padding: 18px;
}
.complx-dates-card__title {
	font-weight: 700;
	color: var(--complx-navy);
	margin-bottom: 6px;
}
.complx-dates-card__meta {
	font-size: 14px;
	color: var(--complx-text-muted);
	margin-bottom: 14px;
}
@media (max-width: 767px) {
	.complx-dates-table-wrap { display: none; }
	.complx-dates-cards { display: grid; }
}

/* —— Québec selector —— */
.complx-selector {
	display: grid;
	grid-template-columns: 66% 34%;
	gap: 24px;
	margin-top: 32px;
	align-items: start;
}
.complx-selector__list {
	background: #fff;
	border: 1px solid var(--complx-border);
	border-radius: 10px;
	overflow: hidden;
}
.complx-selector__row {
	display: grid;
	grid-template-columns: 28px 1fr auto;
	gap: 14px;
	align-items: center;
	padding: 18px 20px;
	border-bottom: 1px solid var(--complx-border);
	cursor: pointer;
}
.complx-selector__row:last-child { border-bottom: none; }
.complx-selector__row input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--complx-navy);
	border-radius: 3px;
	cursor: pointer;
}
.complx-selector__name {
	font-size: 15px;
	font-weight: 600;
	color: var(--complx-text);
}
.complx-selector__price {
	font-size: 14px;
	font-weight: 650;
	color: var(--complx-navy);
	white-space: nowrap;
}
.complx-selector-summary {
	background: var(--complx-blue-light);
	border-radius: 10px;
	padding: 24px;
	border: none;
	box-shadow: none;
}
.complx-selector-summary h3 { margin-bottom: 14px; }
.complx-selector-summary__empty,
.complx-selector-summary__labels {
	font-size: 14px;
	color: var(--complx-text-muted);
	min-height: 44px;
	margin-bottom: 18px;
}
.complx-selector-summary__total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 18px;
	font-weight: 700;
	color: var(--complx-navy);
}
.complx-selector-summary__total strong { font-size: 22px; }
.complx-selector-summary__msg {
	font-size: 13px;
	color: var(--complx-text-muted);
	margin: 0 0 12px;
}
@media (min-width: 1024px) {
	.complx-selector-summary.is-sticky {
		position: sticky;
		top: 96px;
	}
}
@media (max-width: 900px) {
	.complx-selector { grid-template-columns: 1fr; }
}

/* —— Prep hub product rows —— */
.complx-product-stack {
	display: grid;
	gap: 16px;
	margin-top: 36px;
}
.complx-card--product {
	display: grid;
	grid-template-columns: 190px 1fr auto;
	gap: 24px;
	align-items: center;
	min-height: 138px;
	padding: 16px;
	overflow: hidden;
}
.complx-card--product__media {
	height: 106px;
	border-radius: 8px;
	overflow: hidden;
}
.complx-card--product__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.complx-card--product__body h3 { margin-bottom: 6px; }
.complx-card--product__body p {
	margin: 0;
	font-size: 14px;
	color: var(--complx-text-muted);
	line-height: 1.45;
}
.complx-card--product__aside {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	padding-right: 8px;
}
.complx-card--product__price {
	font-size: 18px;
	font-weight: 800;
	color: var(--complx-navy);
	white-space: nowrap;
}
@media (max-width: 900px) {
	.complx-card--product {
		grid-template-columns: 1fr;
		min-height: 0;
	}
	.complx-card--product__media { height: 160px; }
	.complx-card--product__aside {
		align-items: stretch;
		padding-right: 0;
	}
}

/* —— Prep product page template —— */
.complx-product-hero {
	display: grid;
	grid-template-columns: 42% 58%;
	min-height: 380px;
	border: 1px solid var(--complx-border);
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	margin-top: 24px;
}
.complx-product-hero__media {
	min-height: 380px;
	background: var(--complx-border);
}
.complx-product-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 10px 0 0 10px;
}
.complx-product-hero__content {
	padding: 48px 52px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.complx-product-hero__content .complx-label { margin-bottom: 12px; }
.complx-product-hero__content .complx-h1 { margin-bottom: 14px; font-size: 36px; }
.complx-product-hero__content .complx-lead { margin-bottom: 20px; }
.complx-product-hero__content .complx-bullets { margin-bottom: 22px; }
.complx-product-hero__price {
	font-size: 26px;
	font-weight: 800;
	color: var(--complx-navy);
	margin-bottom: 16px;
}
.complx-product-hero__note {
	margin-top: 12px;
	font-size: 13px;
	color: var(--complx-text-muted);
}
.complx-include-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 32px;
}
.complx-include-grid .complx-card--benefit { min-height: 120px; }
.complx-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 32px;
}
.complx-step {
	text-align: center;
	padding: 8px;
}
.complx-step__num {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--complx-navy);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 12px;
}
.complx-step h3 { margin-bottom: 8px; font-size: 17px; }
.complx-step p {
	margin: 0;
	font-size: 14px;
	color: var(--complx-text-muted);
}
.complx-detail-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr;
	gap: 24px;
	align-items: start;
	margin-top: 8px;
}
.complx-detail-grid__content h3 { margin: 20px 0 8px; }
.complx-detail-grid__content p {
	margin: 0 0 10px;
	color: var(--complx-text-muted);
}
.complx-recap {
	background: #fff;
	border: 1px solid var(--complx-border);
	border-radius: 10px;
	padding: 24px;
	box-shadow: 0 4px 16px rgba(16, 24, 40, 0.06);
}
.complx-recap h3 { margin-bottom: 14px; }
.complx-recap dl {
	margin: 0 0 20px;
	display: grid;
	gap: 10px;
}
.complx-recap dt {
	font-size: 12px;
	color: var(--complx-text-muted);
}
.complx-recap dd {
	margin: 2px 0 0;
	font-weight: 700;
	color: var(--complx-navy);
}
.complx-faq details {
	border-bottom: 1px solid var(--complx-border);
	padding: 16px 0;
}
.complx-faq summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	font-weight: 650;
	color: var(--complx-navy);
	min-height: 44px;
}
.complx-faq summary::-webkit-details-marker { display: none; }
.complx-faq summary::after {
	content: "+";
	font-size: 20px;
	font-weight: 400;
	color: var(--complx-navy);
}
.complx-faq details[open] summary::after { content: "−"; }
.complx-faq details > div {
	padding: 8px 0 6px;
	color: var(--complx-text-muted);
	font-size: 15px;
	line-height: 1.55;
}
.complx-cta-band {
	background: var(--complx-navy);
	border-radius: 10px;
	padding: 48px 40px;
	text-align: center;
	color: #fff;
}
.complx-cta-band .complx-h2 { color: #fff; margin-bottom: 10px; }
.complx-cta-band p {
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 22px;
}
@media (max-width: 900px) {
	.complx-product-hero,
	.complx-detail-grid,
	.complx-include-grid,
	.complx-steps {
		grid-template-columns: 1fr;
	}
	.complx-product-hero__media { min-height: 220px; }
	.complx-product-hero__media img { border-radius: 10px 10px 0 0; }
	.complx-product-hero__content { padding: 28px 22px; }
	.complx-include-grid { grid-template-columns: repeat(2, 1fr); }
}

/* —— Breadcrumb —— */
.complx-breadcrumb {
	padding: 18px 0 0;
	font-size: 13px;
	color: var(--complx-text-muted);
}
.complx-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.complx-breadcrumb a {
	color: var(--complx-text-muted);
	text-decoration: none;
}
.complx-breadcrumb a:hover { color: var(--complx-navy); }
.complx-breadcrumb [aria-current="page"] { color: var(--complx-navy); font-weight: 600; }

/* —— Footer brand (aligné landing #0F1E40 + logo officiel) —— */
.complx-footer {
	background: #0F1E40;
	color: rgba(255, 255, 255, 0.7);
	padding: 64px 0 40px;
	margin-top: 0;
	position: relative;
	overflow: hidden;
}
.complx-footer__inner {
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
	z-index: 1;
}
.complx-footer__top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 28px 32px;
	padding-bottom: 36px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.complx-footer__brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}
.complx-footer__logo {
	display: block;
	height: 52px;
	width: auto;
	object-fit: contain;
}
.complx-footer a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 160ms ease;
}
.complx-footer a:hover { color: #fff; }
.complx-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	font-size: 14px;
	font-weight: 500;
}
.complx-footer__copy {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 24px;
	padding-top: 28px;
	border-top: none;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	line-height: 1.5;
}
.complx-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}
.complx-footer__legal a { color: rgba(255, 255, 255, 0.4); }
.complx-footer__legal a:hover { color: #fff; }
@media (max-width: 767px) {
	.complx-footer { padding: 48px 0 32px; }
	.complx-footer__logo { height: 44px; }
	.complx-footer__top { align-items: flex-start; }
}

/* —— Sticky mobile CTA —— */
.complx-sticky-cta {
	display: none;
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 90;
	background: rgba(255, 255, 255, 0.97);
	border-top: 1px solid var(--complx-border);
	padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
}
.complx-sticky-cta__inner {
	max-width: 420px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
@media (max-width: 767px) {
	.complx-sticky-cta.is-visible { display: block; }
	body.complx-tcf-page { padding-bottom: 72px; }
}

/* —— Hide Elementor / Astra chrome —— */
body.complx-tcf-page .elementor-location-header,
body.complx-tcf-page .elementor-location-footer,
body.complx-tcf-canvas .elementor-location-header,
body.complx-tcf-canvas .elementor-location-footer,
body.complx-tcf-page .ast-above-header-bar,
body.complx-tcf-page .main-header-bar,
body.complx-tcf-page .ast-mobile-header-wrap,
body.complx-tcf-page #masthead,
body.complx-tcf-page footer.site-footer,
body.complx-tcf-page .ast-footer-overlay,
body.complx-tcf-page .entry-header {
	display: none !important;
}
body.complx-tcf-page #content,
body.complx-tcf-page .site-content,
body.complx-tcf-page .ast-container,
body.elementor-template-canvas .page-content {
	margin: 0 !important;
	padding: 0 !important;
	max-width: none !important;
}

/* Home TCF block sits inside landing */
.complx-tcf-home {
	background: #fff;
}
.complx-tcf-home .complx-section--choice {
	background: var(--complx-section-light);
}

/* —— Québec product gate + reserve deep-links —— */
.complx-dates-gate {
	margin: 0 0 16px;
	padding: 14px 18px;
	background: #EAF0F8;
	border: 1px solid var(--complx-border);
	border-radius: 8px;
	color: var(--complx-navy);
	font-size: 14px;
	font-weight: 600;
}
.complx-reserve-slot.is-disabled {
	opacity: 0.45;
	pointer-events: auto;
	cursor: not-allowed;
	filter: grayscale(0.2);
}
.complx-selector__row input[type="radio"] {
	width: 18px;
	height: 18px;
	accent-color: var(--complx-navy);
	cursor: pointer;
}
.complx-selector__row.is-selected {
	background: var(--complx-blue-light);
}
.complx-selector__row.is-selected .complx-selector__name {
	color: var(--complx-navy);
}

/* —— Reservation page —— */
.complx-reserve-steps {
	display: flex;
	gap: 10px;
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	flex-wrap: wrap;
}
.complx-reserve-steps li {
	flex: 1;
	min-width: 140px;
	padding: 12px 16px;
	border-radius: 8px;
	background: var(--complx-blue-light);
	color: var(--complx-text-muted);
	font-size: 13px;
	font-weight: 650;
	text-align: center;
}
.complx-reserve-steps li.is-active {
	background: var(--complx-navy);
	color: #fff;
}
.complx-reserve-steps li.is-done {
	background: #D7E6F5;
	color: var(--complx-navy);
}
.complx-reserve-summary {
	background: var(--complx-blue-light);
	border-radius: 12px;
	padding: 22px 24px;
	margin-bottom: 28px;
}
.complx-reserve-summary ul {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	display: grid;
	gap: 12px;
}
.complx-reserve-summary li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: baseline;
	font-size: 14px;
}
.complx-reserve-summary li span { color: var(--complx-text-muted); }
.complx-reserve-summary li strong { color: var(--complx-navy); text-align: right; }
.complx-reserve-summary__warn {
	margin: 16px 0 0;
	padding: 12px 14px;
	background: #FFF8E8;
	border-radius: 8px;
	font-size: 13px;
	color: #5C4A1F;
}
.complx-reserve-summary__warn a { color: var(--complx-navy); font-weight: 650; }
.complx-reserve-form { margin-top: 8px; }
.complx-reserve-fieldset {
	border: 1px solid var(--complx-border);
	border-radius: 12px;
	padding: 22px 22px 8px;
	margin: 0 0 20px;
	background: #fff;
}
.complx-reserve-fieldset legend {
	padding: 0 8px;
	font-weight: 700;
	color: var(--complx-navy);
	font-size: 15px;
}
.complx-reserve-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 18px;
	margin-bottom: 12px;
}
.complx-reserve-grid__full { grid-column: 1 / -1; }
.complx-reserve-grid label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--complx-text);
}
.complx-reserve-grid input,
.complx-reserve-grid select {
	height: 44px;
	border: 1px solid var(--complx-border);
	border-radius: 8px;
	padding: 0 12px;
	font-size: 15px;
	font-weight: 500;
	color: var(--complx-text);
	background: #fff;
}
.complx-date-field {
	position: relative;
	display: block;
}
.complx-date-field input[type="date"] {
	width: 100%;
	padding-right: 42px;
	color-scheme: light;
}
.complx-date-field input[type="date"]::-webkit-calendar-picker-indicator {
	position: absolute;
	inset: 0;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	opacity: 0 !important;
	cursor: pointer;
	z-index: 2;
}
.complx-date-field__icon {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	color: var(--complx-navy);
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.complx-date-field__icon svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.complx-reserve-grid input:focus,
.complx-reserve-grid select:focus {
	outline: 2px solid rgba(7, 59, 102, 0.25);
	border-color: var(--complx-navy);
}
.complx-reserve-policy {
	margin: 8px 0 20px;
	padding: 18px 20px;
	background: var(--complx-section-light);
	border-left: 4px solid #C0392B;
	border-radius: 0 10px 10px 0;
}
.complx-reserve-policy__text {
	font-size: 13px;
	line-height: 1.55;
	color: var(--complx-text-muted);
	margin-bottom: 14px;
}
.complx-reserve-agree {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	font-weight: 650;
	cursor: pointer;
}
.complx-reserve-agree input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--complx-navy); }
.complx-reserve-error {
	padding: 12px 14px;
	background: #FDECEC;
	color: #8B1E1E;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 16px;
}
.complx-reserve-grid input.is-invalid,
.complx-reserve-grid select.is-invalid,
.complx-reserve-agree input.is-invalid {
	border-color: #C0392B !important;
	outline: 2px solid rgba(192, 57, 43, 0.25);
	outline-offset: 1px;
}
html.dark .complx-reserve-error,
.dark .complx-reserve-error {
	background: #3A1A1A;
	color: #FECACA;
}
html.dark .complx-reserve-error a,
.dark .complx-reserve-error a {
	color: #FECACA;
}
.complx-reserve-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
	align-items: center;
}
.complx-button--ghost {
	background: transparent;
	color: var(--complx-navy);
	border: 1px solid var(--complx-border);
}
.complx-upsell-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
}
.complx-upsell-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 16px;
	border: 1px solid var(--complx-border);
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.complx-upsell-card:hover {
	border-color: rgba(7, 59, 102, 0.35);
	box-shadow: 0 8px 24px rgba(7, 59, 102, 0.08);
}
.complx-upsell-card:has(input:checked) {
	border-color: var(--complx-navy);
	box-shadow: 0 0 0 1px var(--complx-navy);
}
.complx-upsell-card__media {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 10px;
	overflow: hidden;
	background: #F0F3F7;
}
.complx-upsell-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.complx-upsell-card__main {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.complx-upsell-card input {
	margin-top: 3px;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	accent-color: var(--complx-navy);
}
.complx-upsell-card__body {
	flex: 1 1 auto;
	min-width: 0;
}
.complx-upsell-card__body strong {
	display: block;
	color: var(--complx-navy);
	margin-bottom: 6px;
	font-size: 15px;
	line-height: 1.35;
}
.complx-upsell-card__desc,
.complx-upsell-card__desc p,
.complx-upsell-card__desc * {
	margin: 0 0 8px;
	font-size: 13px;
	line-height: 1.5;
	color: #4A5568 !important;
	font-family: inherit !important;
	background: transparent !important;
}
.complx-upsell-card__desc *:last-child { margin-bottom: 0; }
.complx-upsell-card__price {
	font-weight: 700;
	color: var(--complx-navy);
	font-size: 15px;
	margin-top: 10px;
}
#complx-reserve-spinner {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(7, 59, 102, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
}
#complx-reserve-spinner[hidden] { display: none !important; }
.complx-reserve-spinner__box {
	background: #fff;
	border-radius: 14px;
	padding: 28px 36px;
	text-align: center;
	box-shadow: 0 20px 50px rgba(7, 59, 102, 0.25);
}
.complx-reserve-spinner__wheel {
	width: 36px;
	height: 36px;
	margin: 0 auto 14px;
	border: 3px solid #D7E6F5;
	border-top-color: var(--complx-navy);
	border-radius: 50%;
	animation: complx-spin 0.8s linear infinite;
}
.complx-reserve-spinner__box p {
	margin: 0;
	font-weight: 650;
	color: var(--complx-navy);
}
@keyframes complx-spin {
	to { transform: rotate(360deg); }
}
@media (max-width: 720px) {
	.complx-reserve-grid { grid-template-columns: 1fr; }
	.complx-reserve-actions { justify-content: stretch; }
	.complx-reserve-actions .complx-button { width: 100%; justify-content: center; }
}

/* —— Dark mode (html.dark / localStorage complx-theme) —— */
html.dark body.complx-tcf-page,
html.dark body.elementor-template-canvas:has(.complx-tcf),
.dark body.complx-tcf-page {
	background: #0A152E !important;
	color: #E8EEFB;
}

html.dark .complx-tcf,
html.dark .complx-tcf-home,
.dark .complx-tcf,
.dark .complx-tcf-home {
	/* Keep institutional navy for brand blocks — do not remap to orange */
	--complx-navy: #073B66;
	--complx-navy-dark: #062F52;
	--complx-blue: #8BB4E8;
	--complx-blue-light: rgba(255, 255, 255, 0.08);
	--complx-section-light: #0F1E40;
	--complx-border: rgba(255, 255, 255, 0.14);
	--complx-text: #E8EEFB;
	--complx-text-muted: rgba(232, 238, 251, 0.68);
	--complx-white: #0A152E;
	--complx-header-border: rgba(255, 255, 255, 0.1);
	--complx-accent: #F4A261;
	color: var(--complx-text);
	background: #0A152E;
}

html.dark .complx-tcf h1,
html.dark .complx-tcf h2,
html.dark .complx-tcf h3,
html.dark .complx-tcf .complx-h1,
html.dark .complx-tcf .complx-h2,
html.dark .complx-tcf .complx-h3,
html.dark .complx-tcf-home h1,
html.dark .complx-tcf-home h2,
html.dark .complx-tcf-home h3,
html.dark .complx-tcf-home .complx-h1,
html.dark .complx-tcf-home .complx-h2,
html.dark .complx-tcf-home .complx-h3,
.dark .complx-tcf h1,
.dark .complx-tcf h2,
.dark .complx-tcf h3,
.dark .complx-tcf .complx-h1,
.dark .complx-tcf .complx-h2,
.dark .complx-tcf .complx-h3,
.dark .complx-tcf-home h1,
.dark .complx-tcf-home h2,
.dark .complx-tcf-home h3 {
	color: #fff;
}

html.dark .complx-header,
.dark .complx-header {
	background: rgba(10, 21, 46, 0.94);
	backdrop-filter: blur(10px);
	border-bottom-color: var(--complx-header-border);
}
html.dark .complx-header__logo-shell,
.dark .complx-header__logo-shell {
	background: transparent;
	padding: 0;
}
html.dark .complx-header__nav a,
.dark .complx-header__nav a {
	color: rgba(255, 255, 255, 0.88);
}
html.dark .complx-header__nav a:hover,
.dark .complx-header__nav a:hover {
	color: #fff;
}
html.dark .complx-header__mobile,
.dark .complx-header__mobile {
	background: #0A152E;
	border-top-color: rgba(255, 255, 255, 0.1);
}
html.dark .complx-header__mobile-link,
.dark .complx-header__mobile-link {
	color: rgba(255, 255, 255, 0.9);
	border-bottom-color: rgba(255, 255, 255, 0.1);
}
html.dark .complx-header__mobile-link:hover,
.dark .complx-header__mobile-link:hover {
	color: #ffffff;
}
html.dark .complx-header__mobile-group,
.dark .complx-header__mobile-group {
	border-bottom-color: rgba(255, 255, 255, 0.1);
}
html.dark .complx-header__mobile-group summary,
.dark .complx-header__mobile-group summary {
	color: rgba(255, 255, 255, 0.9);
}
html.dark .complx-header__mobile-sub a,
.dark .complx-header__mobile-sub a {
	color: rgba(232, 238, 251, 0.7);
}
html.dark .complx-header__mobile a.complx-header__mobile-cta,
.dark .complx-header__mobile a.complx-header__mobile-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border: none;
	color: #073B66;
	text-align: center;
	border-radius: 999px;
}
html.dark .complx-header__mobile a.complx-header__mobile-cta:hover,
.dark .complx-header__mobile a.complx-header__mobile-cta:hover {
	background: #E8EEFB;
	color: #062F52;
}
html.dark .complx-theme-toggle,
html.dark .complx-header__toggle,
html.dark #complx-tcf-menu-toggle,
.dark .complx-theme-toggle,
.dark .complx-header__toggle,
.dark #complx-tcf-menu-toggle {
	background: rgba(255, 255, 255, 0.06) !important;
	border-color: rgba(255, 255, 255, 0.18) !important;
	color: #ffffff !important;
}
html.dark .complx-theme-toggle:hover,
html.dark .complx-header__toggle:hover,
html.dark #complx-tcf-menu-toggle:hover,
.dark .complx-theme-toggle:hover,
.dark .complx-header__toggle:hover,
.dark #complx-tcf-menu-toggle:hover {
	background: rgba(255, 255, 255, 0.12) !important;
	border-color: rgba(255, 255, 255, 0.45) !important;
	color: #ffffff !important;
}

html.dark .complx-header__nav a:hover,
.dark .complx-header__nav a:hover {
	color: #fff;
}
html.dark .complx-header__submenu,
.dark .complx-header__submenu {
	background: #15264A;
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}
html.dark .complx-header__submenu a,
.dark .complx-header__submenu a {
	color: rgba(232, 238, 251, 0.9);
}
html.dark .complx-header__submenu a:hover,
.dark .complx-header__submenu a:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}
html.dark .complx-header .complx-button--primary,
html.dark .complx-button--primary,
.dark .complx-header .complx-button--primary,
.dark .complx-button--primary {
	background: #fff;
	color: #073B66;
	border-color: #fff;
}
html.dark .complx-header .complx-button--primary:hover,
html.dark .complx-button--primary:hover,
.dark .complx-header .complx-button--primary:hover,
.dark .complx-button--primary:hover {
	background: #E8EEFB;
	color: #062F52;
	border-color: #E8EEFB;
}
html.dark .complx-button--outline,
.dark .complx-button--outline {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.4);
}
html.dark .complx-button--outline:hover,
.dark .complx-button--outline:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.65);
}
html.dark .complx-button--white,
.dark .complx-button--white {
	background: #fff;
	color: #073B66;
	border-color: #fff;
}

html.dark .complx-tcf .complx-hero,
html.dark .complx-tcf .complx-section,
html.dark .complx-tcf-home .complx-hero,
html.dark .complx-tcf-home .complx-section,
.dark .complx-tcf .complx-hero,
.dark .complx-tcf .complx-section,
.dark .complx-tcf-home .complx-hero,
.dark .complx-tcf-home .complx-section {
	background: #0A152E;
}
html.dark .complx-tcf .complx-section--light,
html.dark .complx-tcf .complx-section--choice,
html.dark .complx-tcf-home .complx-section--light,
html.dark .complx-tcf-home .complx-section--choice,
html.dark .complx-tcf-home .complx-hero--muted,
.dark .complx-tcf .complx-section--light,
.dark .complx-tcf .complx-section--choice,
.dark .complx-tcf-home .complx-section--light,
.dark .complx-tcf-home .complx-section--choice,
.dark .complx-tcf-home .complx-hero--muted {
	background: #0F1E40;
}

html.dark .complx-hero--navy,
.dark .complx-hero--navy {
	background: #0A152E;
}
html.dark .complx-hero-split__content,
.dark .complx-hero-split__content {
	background: #073B66;
	color: #fff;
}
html.dark .complx-hero-split__content .complx-h1,
.dark .complx-hero-split__content .complx-h1 {
	color: #fff;
}
html.dark .complx-hero-split__content .complx-lead,
.dark .complx-hero-split__content .complx-lead {
	color: rgba(255, 255, 255, 0.88);
}

html.dark .complx-card,
html.dark .complx-tcf-home .complx-card,
.dark .complx-card,
.dark .complx-tcf-home .complx-card {
	background: #15264A;
	border-color: rgba(255, 255, 255, 0.12);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
html.dark .complx-card:hover,
html.dark .complx-tcf-home .complx-card:hover,
.dark .complx-card:hover,
.dark .complx-tcf-home .complx-card:hover {
	border-color: rgba(255, 255, 255, 0.22);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}
html.dark .complx-card--choice h3,
html.dark .complx-tcf-home .complx-card--choice h3,
.dark .complx-card--choice h3,
.dark .complx-tcf-home .complx-card--choice h3 {
	color: #fff;
}
html.dark .complx-card--choice p,
html.dark .complx-tcf-home .complx-card--choice p,
.dark .complx-card--choice p,
.dark .complx-tcf-home .complx-card--choice p {
	color: rgba(255, 255, 255, 0.7);
}
html.dark .complx-icon-label__icon,
html.dark .complx-tcf-home .complx-icon-label__icon,
.dark .complx-icon-label__icon,
.dark .complx-tcf-home .complx-icon-label__icon {
	color: var(--complx-accent);
}
html.dark .complx-icon-label__text,
html.dark .complx-tcf-home .complx-icon-label__text,
.dark .complx-icon-label__text,
.dark .complx-tcf-home .complx-icon-label__text {
	color: rgba(255, 255, 255, 0.85);
}
html.dark .complx-card--benefit .complx-icon-label__icon,
.dark .complx-card--benefit .complx-icon-label__icon {
	color: var(--complx-accent);
}
html.dark .complx-card--benefit,
.dark .complx-card--benefit {
	background: #15264A;
	border: 1px solid rgba(255, 255, 255, 0.12);
}
html.dark .complx-card--benefit p,
.dark .complx-card--benefit p {
	color: #E8EEFB !important;
}

html.dark .complx-recap,
.dark .complx-recap {
	background: #15264A;
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
	color: #E8EEFB;
}
html.dark .complx-recap h3,
.dark .complx-recap h3 {
	color: #fff !important;
}
html.dark .complx-recap dt,
.dark .complx-recap dt {
	color: rgba(232, 238, 251, 0.65);
}
html.dark .complx-recap dd,
html.dark .complx-recap dd .amount,
html.dark .complx-recap dd .woocommerce-Price-amount,
html.dark .complx-recap dd bdi,
.dark .complx-recap dd,
.dark .complx-recap dd .amount,
.dark .complx-recap dd .woocommerce-Price-amount,
.dark .complx-recap dd bdi {
	color: #fff !important;
}

html.dark .complx-detail-grid__content h3,
.dark .complx-detail-grid__content h3 {
	color: #fff;
}
html.dark .complx-detail-grid__content p,
.dark .complx-detail-grid__content p {
	color: rgba(232, 238, 251, 0.72);
}

html.dark .complx-step h3,
.dark .complx-step h3 {
	color: #fff;
}
html.dark .complx-step p,
.dark .complx-step p {
	color: rgba(232, 238, 251, 0.72);
}

html.dark .complx-product-hero__note,
.dark .complx-product-hero__note {
	color: rgba(232, 238, 251, 0.65);
}
html.dark .complx-product-hero__content .complx-lead,
.dark .complx-product-hero__content .complx-lead {
	color: rgba(232, 238, 251, 0.78);
}
html.dark .complx-product-hero__content .complx-bullets span,
.dark .complx-product-hero__content .complx-bullets span {
	color: #E8EEFB;
}

html.dark .complx-breadcrumb,
html.dark .complx-breadcrumb a,
.dark .complx-breadcrumb,
.dark .complx-breadcrumb a {
	color: rgba(255, 255, 255, 0.55);
}
html.dark .complx-breadcrumb a:hover,
.dark .complx-breadcrumb a:hover {
	color: #fff;
}
html.dark .complx-breadcrumb [aria-current="page"],
.dark .complx-breadcrumb [aria-current="page"] {
	color: #fff;
	font-weight: 650;
}

html.dark .complx-notice--warning,
.dark .complx-notice--warning {
	background: #3A2A12;
	border-color: rgba(244, 162, 97, 0.35);
}
html.dark .complx-notice--warning .complx-h3,
html.dark .complx-notice--warning h3,
.dark .complx-notice--warning .complx-h3,
.dark .complx-notice--warning h3 {
	color: #FFD89A !important;
}
html.dark .complx-notice--warning p,
.dark .complx-notice--warning p {
	color: #F5E6C8 !important;
}

html.dark .complx-dates-table-wrap,
html.dark .complx-dates-empty,
html.dark .complx-dates-card,
.dark .complx-dates-table-wrap,
.dark .complx-dates-empty,
.dark .complx-dates-card {
	background: #15264A;
	border-color: rgba(255, 255, 255, 0.12);
}
html.dark .complx-dates-table th,
.dark .complx-dates-table th {
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.55);
	border-bottom-color: rgba(255, 255, 255, 0.1);
}
html.dark .complx-dates-table td,
.dark .complx-dates-table td {
	color: var(--complx-text);
	border-bottom-color: rgba(255, 255, 255, 0.08);
}
html.dark .complx-dates-gate,
.dark .complx-dates-gate {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.14);
	color: #fff;
}

html.dark .complx-selector__list,
.dark .complx-selector__list {
	background: #15264A;
	border-color: rgba(255, 255, 255, 0.12);
}
html.dark .complx-selector__row,
.dark .complx-selector__row {
	border-bottom-color: rgba(255, 255, 255, 0.08);
}
html.dark .complx-selector__row.is-selected,
.dark .complx-selector__row.is-selected {
	background: rgba(255, 255, 255, 0.06);
}
html.dark .complx-selector__price,
html.dark .complx-selector__row.is-selected .complx-selector__name,
.dark .complx-selector__price,
.dark .complx-selector__row.is-selected .complx-selector__name {
	color: var(--complx-accent);
}
html.dark .complx-selector-summary,
.dark .complx-selector-summary {
	background: #15264A;
	border: 1px solid rgba(255, 255, 255, 0.12);
}
html.dark .complx-selector-summary__total,
.dark .complx-selector-summary__total {
	color: #fff;
}

html.dark .complx-faq details,
.dark .complx-faq details {
	border-color: rgba(255, 255, 255, 0.12);
}
html.dark .complx-faq summary,
.dark .complx-faq summary {
	color: #fff;
}
html.dark .complx-faq summary::after,
.dark .complx-faq summary::after {
	color: rgba(255, 255, 255, 0.9);
}
html.dark .complx-faq details > div,
.dark .complx-faq details > div {
	color: rgba(255, 255, 255, 0.7);
}

/* FAQ partial Tailwind (lucide chevron) */
html.dark .complx-tcf-faq summary,
.dark .complx-tcf-faq summary {
	color: #fff;
}
html.dark .complx-tcf-faq summary [data-lucide],
html.dark .complx-tcf-faq summary svg,
.dark .complx-tcf-faq summary [data-lucide],
.dark .complx-tcf-faq summary svg {
	color: rgba(255, 255, 255, 0.9);
	stroke: currentColor;
}

html.dark .complx-reserve-steps li,
.dark .complx-reserve-steps li {
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.55);
}
html.dark .complx-reserve-steps li.is-active,
.dark .complx-reserve-steps li.is-active {
	background: #073B66;
	color: #fff;
}
html.dark .complx-reserve-steps li.is-done,
.dark .complx-reserve-steps li.is-done {
	background: rgba(127, 198, 217, 0.18);
	color: #7FC6D9;
}
html.dark .complx-reserve-summary,
.dark .complx-reserve-summary {
	background: #15264A;
	border: 1px solid rgba(255, 255, 255, 0.12);
}
html.dark .complx-reserve-summary li strong,
.dark .complx-reserve-summary li strong {
	color: #fff;
}
html.dark .complx-reserve-summary__warn,
.dark .complx-reserve-summary__warn {
	background: rgba(244, 162, 97, 0.14);
	color: #F4A261;
}
html.dark .complx-reserve-summary__warn a,
.dark .complx-reserve-summary__warn a {
	color: #fff;
}
html.dark .complx-reserve-fieldset,
.dark .complx-reserve-fieldset {
	background: #15264A;
	border-color: rgba(255, 255, 255, 0.12);
}
html.dark .complx-reserve-fieldset legend,
.dark .complx-reserve-fieldset legend {
	color: #fff;
}
html.dark .complx-reserve-grid input,
html.dark .complx-reserve-grid select,
.dark .complx-reserve-grid input,
.dark .complx-reserve-grid select {
	background: #0A152E;
	border-color: rgba(255, 255, 255, 0.18);
	color: #E8EEFB;
	color-scheme: dark;
}
html.dark .complx-reserve-grid input:focus,
html.dark .complx-reserve-grid select:focus,
.dark .complx-reserve-grid input:focus,
.dark .complx-reserve-grid select:focus {
	outline-color: rgba(244, 162, 97, 0.45);
}
html.dark .complx-date-field__icon,
.dark .complx-date-field__icon {
	color: #E8EEFB;
}
html.dark .complx-reserve-policy,
.dark .complx-reserve-policy {
	background: rgba(192, 57, 43, 0.14);
	border-left-color: #E57373;
}
html.dark .complx-reserve-policy__text,
.dark .complx-reserve-policy__text {
	color: rgba(232, 238, 251, 0.88);
}
html.dark .complx-reserve-agree,
.dark .complx-reserve-agree {
	color: #E8EEFB;
}
html.dark .complx-reserve-agree input,
.dark .complx-reserve-agree input {
	accent-color: var(--complx-accent);
}
html.dark .complx-button--ghost,
.dark .complx-button--ghost {
	background: transparent;
	color: #E8EEFB;
	border-color: rgba(255, 255, 255, 0.35);
}
html.dark .complx-button--ghost:hover,
.dark .complx-button--ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.55);
}
html.dark .complx-upsell-card,
.dark .complx-upsell-card {
	background: #15264A;
	border-color: rgba(255, 255, 255, 0.12);
}
html.dark .complx-upsell-card:hover,
.dark .complx-upsell-card:hover {
	border-color: rgba(255, 255, 255, 0.28);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
html.dark .complx-upsell-card:has(input:checked),
.dark .complx-upsell-card:has(input:checked) {
	border-color: rgba(255, 255, 255, 0.55);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}
html.dark .complx-upsell-card__media,
.dark .complx-upsell-card__media {
	background: #0F1E40;
}
html.dark .complx-upsell-card__body strong,
html.dark .complx-upsell-card__price,
.dark .complx-upsell-card__body strong,
.dark .complx-upsell-card__price {
	color: #fff;
}
html.dark .complx-upsell-card__desc,
html.dark .complx-upsell-card__desc p,
html.dark .complx-upsell-card__desc *,
.dark .complx-upsell-card__desc,
.dark .complx-upsell-card__desc p,
.dark .complx-upsell-card__desc * {
	color: #C9D4E5 !important;
}
html.dark .complx-reserve-spinner__box p,
.dark .complx-reserve-spinner__box p {
	color: #fff;
}
html.dark .complx-reserve-spinner__box,
.dark .complx-reserve-spinner__box {
	background: #15264A;
	border-color: rgba(255, 255, 255, 0.2);
	border-top-color: var(--complx-accent);
}

html.dark .complx-card--product__price,
html.dark .complx-card--product__price .amount,
html.dark .complx-card--product__price .woocommerce-Price-amount,
html.dark .complx-card--product__price bdi,
html.dark .complx-product-hero__price,
html.dark .complx-product-hero__price .amount,
html.dark .complx-product-hero__price .woocommerce-Price-amount,
html.dark .complx-product-hero__price bdi,
html.dark .complx-dates-price,
html.dark .complx-dates-price .amount,
html.dark .complx-dates-price .woocommerce-Price-amount,
html.dark .complx-tcf-price,
html.dark .complx-tcf-price .amount,
html.dark .complx-tcf-price .woocommerce-Price-amount,
html.dark .complx-reserve-summary__price,
html.dark .complx-reserve-summary__price .amount,
html.dark .complx-reserve-summary__price .woocommerce-Price-amount,
.dark .complx-card--product__price,
.dark .complx-card--product__price .amount,
.dark .complx-card--product__price .woocommerce-Price-amount,
.dark .complx-card--product__price bdi,
.dark .complx-product-hero__price,
.dark .complx-product-hero__price .amount,
.dark .complx-product-hero__price .woocommerce-Price-amount,
.dark .complx-product-hero__price bdi,
.dark .complx-dates-price,
.dark .complx-dates-price .amount,
.dark .complx-dates-price .woocommerce-Price-amount,
.dark .complx-tcf-price,
.dark .complx-tcf-price .amount,
.dark .complx-tcf-price .woocommerce-Price-amount,
.dark .complx-reserve-summary__price,
.dark .complx-reserve-summary__price .amount,
.dark .complx-reserve-summary__price .woocommerce-Price-amount {
	color: #fff !important;
}
html.dark .complx-product-hero,
.dark .complx-product-hero {
	background: #15264A;
	border-color: rgba(255, 255, 255, 0.12);
}

html.dark .complx-tcf-home,
.dark .complx-tcf-home {
	background: #0A152E;
}

html.dark .complx-sticky-cta,
.dark .complx-sticky-cta {
	background: rgba(10, 21, 46, 0.96);
	border-top-color: rgba(255, 255, 255, 0.12);
}
