/**
 * Bekaweb Estimator v3 — Landing premium
 * Charte navy #0A1628 / gold #C9A84C / cream #FAF8F3
 * Fonts : Playfair Display + DM Mono + Inter
 */

.bkw-landing {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	color: #1a1a1a;
	line-height: 1.6;
	max-width: 100%;
	margin: 0 auto;
	padding: var(--bkw-header-offset, 0px) 20px 0;
	box-sizing: border-box;
}

.bkw-landing > * {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.bkw-landing * { box-sizing: border-box; }

.bkw-eyebrow {
	font-family: 'DM Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #6b6b6b;
	margin-bottom: 12px;
	display: inline-block;
}

.bkw-section-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 500;
	line-height: 1.15;
	margin: 0 0 16px;
	color: #0A1628;
}
.bkw-section-title em {
	font-style: italic;
	color: #C9A84C;
	font-weight: 400;
}

/* ============================================================
   HERO
   ============================================================ */
.bkw-hero {
	position: relative;
	background: #0A1628;
	color: #FAF8F3;
	border-radius: 24px;
	padding: clamp(32px, 6vw, 72px) clamp(24px, 4vw, 56px);
	margin: 32px 0 64px;
	overflow: hidden;
}

.bkw-hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.bkw-hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.4;
}
.bkw-hero-orb-1 {
	width: 400px; height: 400px;
	background: radial-gradient(circle, #C9A84C, transparent 70%);
	top: -100px; right: -100px;
	animation: bkwOrb1 18s ease-in-out infinite;
}
.bkw-hero-orb-2 {
	width: 300px; height: 300px;
	background: radial-gradient(circle, #1a3a5c, transparent 70%);
	bottom: -80px; left: -50px;
	animation: bkwOrb2 22s ease-in-out infinite;
}

@keyframes bkwOrb1 {
	0%,100% { transform: translate(0,0) scale(1); }
	50% { transform: translate(-40px, 30px) scale(1.1); }
}
@keyframes bkwOrb2 {
	0%,100% { transform: translate(0,0) scale(1); }
	50% { transform: translate(50px, -20px) scale(1.15); }
}

.bkw-hero-content {
	position: relative;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 48px;
	align-items: center;
}

.bkw-hero .bkw-eyebrow { color: #C9A84C; }

.bkw-hero-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(36px, 5.5vw, 64px);
	font-weight: 500;
	line-height: 1.05;
	margin: 0 0 20px;
	color: #FAF8F3;
}
.bkw-hero-title em {
	font-style: italic;
	color: #C9A84C;
	font-weight: 400;
}

.bkw-hero-subtitle {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(250, 248, 243, 0.8);
	margin: 0 0 32px;
	max-width: 520px;
}

.bkw-hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 40px;
}

/* Buttons */
.bkw-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #C9A84C;
	color: #0A1628;
	padding: 14px 28px;
	font-family: 'DM Mono', monospace;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 500;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.25s ease;
}
.bkw-btn-primary:hover {
	background: #d4b35c;
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(201, 168, 76, 0.25);
}
.bkw-btn-primary:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.bkw-btn-lg { padding: 16px 32px; font-size: 13px; }
.bkw-btn-block { display: flex; width: 100%; justify-content: center; }

.bkw-btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: #C9A84C;
	padding: 14px 28px;
	font-family: 'DM Mono', monospace;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 500;
	border: 1px solid rgba(201, 168, 76, 0.3);
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.25s ease;
}
.bkw-btn-ghost:hover { border-color: #C9A84C; background: rgba(201, 168, 76, 0.05); }

.bkw-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: #0A1628;
	padding: 14px 28px;
	font-family: 'DM Mono', monospace;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 500;
	border: 1px solid #0A1628;
	border-radius: 4px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.25s ease;
}
.bkw-btn-secondary:hover { background: #0A1628; color: #FAF8F3; }

.bkw-btn-ghost-light {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: #FAF8F3;
	padding: 12px 22px;
	font-family: 'DM Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 500;
	border: 1px solid rgba(250, 248, 243, 0.3);
	border-radius: 4px;
	text-decoration: none;
}

.bkw-arrow { transition: transform 0.25s ease; }
.bkw-btn-primary:hover .bkw-arrow { transform: translateX(4px); }

/* Hero stats */
.bkw-hero-stats {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-top: 28px;
	border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.bkw-stat-num {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	font-weight: 500;
	color: #C9A84C;
	line-height: 1;
	margin-bottom: 4px;
}
.bkw-stat-num span { font-size: 18px; opacity: 0.8; margin-left: 2px; }
.bkw-stat-lbl {
	font-family: 'DM Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(250, 248, 243, 0.6);
}
.bkw-stat-sep {
	width: 1px;
	height: 32px;
	background: rgba(201, 168, 76, 0.2);
}

/* Hero card preview */
.bkw-hero-visual { position: relative; }
.bkw-hero-card-preview {
	background: #FAF8F3;
	color: #0A1628;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
	transform: rotate(-2deg);
	transition: transform 0.4s ease;
}
.bkw-hero-card-preview:hover { transform: rotate(0); }

.bkw-preview-progress {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 16px 0 20px;
}
.bkw-preview-dot {
	width: 24px; height: 24px;
	border-radius: 50%;
	background: rgba(10, 22, 40, 0.08);
	display: flex; align-items: center; justify-content: center;
	font-size: 11px; font-weight: 500;
	color: rgba(10, 22, 40, 0.4);
	font-family: 'DM Mono', monospace;
}
.bkw-preview-dot.active {
	background: #0A1628;
	color: #C9A84C;
}
.bkw-preview-bar {
	flex: 1;
	height: 2px;
	background: rgba(10, 22, 40, 0.08);
}
.bkw-preview-bar.filled { background: #C9A84C; }
.bkw-preview-bar.half { background: linear-gradient(to right, #C9A84C 50%, rgba(10, 22, 40, 0.08) 50%); }

.bkw-preview-question {
	font-family: 'DM Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.08em;
	color: rgba(10, 22, 40, 0.6);
	text-transform: uppercase;
	margin-bottom: 12px;
}

.bkw-preview-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 20px;
}
.bkw-preview-pick {
	background: rgba(10, 22, 40, 0.04);
	border: 1px solid rgba(10, 22, 40, 0.08);
	border-radius: 6px;
	padding: 10px;
	font-size: 12px;
	font-weight: 500;
}
.bkw-preview-pick.active {
	background: #0A1628;
	color: #FAF8F3;
	border-color: #C9A84C;
}

.bkw-preview-amount {
	background: #0A1628;
	color: #C9A84C;
	border-radius: 8px;
	padding: 14px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.bkw-preview-amount-lbl {
	font-family: 'DM Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.7;
}
.bkw-preview-amount-val {
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 500;
}

/* ============================================================
   SECTIONS GENERIC
   ============================================================ */
.bkw-section {
	margin: 80px 0;
}
.bkw-section-head {
	text-align: center;
	margin-bottom: 48px;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

/* Steps */
.bkw-steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}
.bkw-step {
	background: #FAF8F3;
	border: 1px solid rgba(10, 22, 40, 0.06);
	border-radius: 16px;
	padding: 32px;
	transition: all 0.3s ease;
}
.bkw-step:hover {
	border-color: #C9A84C;
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(10, 22, 40, 0.08);
}
.bkw-step-num {
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	font-weight: 500;
	color: #C9A84C;
	line-height: 1;
	margin-bottom: 16px;
	font-style: italic;
}
.bkw-step-title {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 500;
	color: #0A1628;
	margin: 0 0 12px;
}
.bkw-step-desc {
	font-size: 14px;
	line-height: 1.6;
	color: #4a4a4a;
	margin: 0;
}

/* VS comparator */
.bkw-section-vs {
	background: #FAF8F3;
	border-radius: 24px;
	padding: 64px 40px;
	margin-left: -20px;
	margin-right: -20px;
}
.bkw-vs-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
}
.bkw-vs-col {
	border-radius: 16px;
	padding: 32px;
}
.bkw-vs-them {
	background: #fff;
	border: 1px solid rgba(10, 22, 40, 0.1);
}
.bkw-vs-us {
	background: #0A1628;
	color: #FAF8F3;
	position: relative;
}
.bkw-vs-us::before {
	content: '';
	position: absolute;
	inset: 0;
	border: 2px solid #C9A84C;
	border-radius: 16px;
	pointer-events: none;
}
.bkw-vs-tag {
	font-family: 'DM Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 20px;
	font-weight: 500;
}
.bkw-vs-them .bkw-vs-tag { color: #999; }
.bkw-vs-us .bkw-vs-tag { color: #C9A84C; }
.bkw-vs-list { list-style: none; padding: 0; margin: 0; }
.bkw-vs-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 0;
	font-size: 14px;
	line-height: 1.5;
}
.bkw-vs-list li svg { flex-shrink: 0; margin-top: 3px; }
.bkw-vs-them li svg { color: #d33; }
.bkw-vs-us li svg { color: #C9A84C; }

/* Services grid */
.bkw-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}
.bkw-service-card {
	background: #fff;
	border: 1px solid rgba(10, 22, 40, 0.08);
	border-radius: 12px;
	padding: 24px;
	transition: all 0.25s ease;
}
.bkw-service-card:hover {
	border-color: #C9A84C;
	transform: translateY(-2px);
}
.bkw-service-icon {
	font-size: 32px;
	margin-bottom: 12px;
}
.bkw-service-name {
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	font-weight: 500;
	color: #0A1628;
	margin: 0 0 6px;
}
.bkw-service-desc {
	font-size: 13px;
	color: #6a6a6a;
	margin: 0;
	line-height: 1.5;
}

/* ============================================================
   FORMULAIRE INSCRIPTION
   ============================================================ */
.bkw-section-form {
	background: linear-gradient(180deg, transparent, #FAF8F3 30%);
	padding: 64px 0;
	margin: 80px -20px 0;
	padding-left: 20px;
	padding-right: 20px;
}
.bkw-form-wrap {
	max-width: 560px;
	margin: 0 auto;
}
.bkw-form-head {
	text-align: center;
	margin-bottom: 40px;
}
.bkw-form-subtitle {
	font-size: 15px;
	color: #5a5a5a;
	line-height: 1.6;
	max-width: 520px;
	margin: 16px auto 0;
}

.bkw-form {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: #fff;
	border-radius: 22px;
	padding: 32px;
	box-shadow: 0 24px 50px rgba(10, 22, 40, 0.10);
	border: 0;
}
/* Fil doré tournant autour du cadran */
.bkw-form::before {
	content: "";
	position: absolute;
	inset: -60%;
	z-index: 0;
	background: conic-gradient(from 0deg,
		rgba(201, 168, 76, 0) 0deg,
		rgba(201, 168, 76, 0) 232deg,
		rgba(201, 168, 76, 0.30) 286deg,
		#C9A84C 318deg,
		#F3DE9E 340deg,
		#C9A84C 352deg,
		rgba(201, 168, 76, 0) 360deg);
	animation: bkw-thread 4.5s linear infinite;
}
.bkw-form::after {
	content: "";
	position: absolute;
	inset: 2px;
	z-index: 0;
	background: #fff;
	border-radius: inherit;
}
.bkw-form > * { position: relative; z-index: 1; }
@keyframes bkw-thread { to { transform: rotate(1turn); } }
@media (prefers-reduced-motion: reduce) {
	.bkw-form::before { animation: none; }
}
.bkw-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}
.bkw-field { margin-bottom: 16px; }
.bkw-field label {
	display: block;
	font-family: 'DM Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #0A1628;
	margin-bottom: 6px;
	font-weight: 500;
}
.bkw-required { color: #C9A84C; }
.bkw-field input,
.bkw-field textarea {
	width: 100%;
	padding: 12px 14px;
	font-size: 15px;
	font-family: inherit;
	border: 1px solid rgba(10, 22, 40, 0.15);
	border-radius: 6px;
	transition: all 0.2s ease;
	background: #fff;
}
.bkw-field input:focus,
.bkw-field textarea:focus {
	outline: none;
	border-color: #C9A84C;
	box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.bkw-field textarea { resize: vertical; min-height: 110px; }

/* Nom / Prénom / Téléphone : placeholder masqué sur desktop (libellé visible),
   affiché À L'INTÉRIEUR du champ en mobile (libellé masqué) */
.bkw-field--mobilelabel input::placeholder { color: transparent; }
.bkw-field--mobilelabel input::-webkit-input-placeholder { color: transparent; }
.bkw-field--mobilelabel input::-moz-placeholder { color: transparent; opacity: 1; }

.bkw-checkbox-row {
	margin: 20px 0 24px;
	font-size: 14px;
	line-height: 1.5;
	color: #5a5a5a;
}
.bkw-checkbox-row label {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	cursor: pointer;
}
.bkw-checkbox-row input { margin-top: 4px; flex-shrink: 0; }

.bkw-form-trust {
	text-align: center;
	font-size: 12px;
	color: #8a8a8a;
	margin: 16px 0 0;
}

/* ============================================================
   NOTICES + ADMIN BANNER
   ============================================================ */
.bkw-notice {
	padding: 16px 20px;
	border-radius: 8px;
	margin: 20px 0;
	font-size: 14px;
	border-left: 3px solid;
}
.bkw-notice-info { background: #f0f4f8; border-color: #4a90e2; color: #1e4d6b; }
.bkw-notice-success { background: #f0f9f4; border-color: #2ea44f; color: #1a4d2e; }
.bkw-notice-error { background: #fdf2f2; border-color: #d33; color: #6b1e1e; }
.bkw-notice a { color: inherit; font-weight: 500; }

.bkw-admin-banner {
	background: linear-gradient(135deg, #0A1628 0%, #1a2d4a 100%);
	color: #FAF8F3;
	border-radius: 12px;
	padding: 20px 24px;
	margin: 20px 0;
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	border-left: 3px solid #C9A84C;
}
.bkw-admin-banner-tag {
	font-family: 'DM Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.12em;
	color: #C9A84C;
	text-transform: uppercase;
	font-weight: 500;
}
.bkw-admin-banner-text { flex: 1; font-size: 14px; }
.bkw-admin-banner-links { display: flex; gap: 8px; flex-wrap: wrap; }
.bkw-admin-banner-compact { padding: 12px 16px; font-size: 13px; }
.bkw-admin-banner-compact a { color: #C9A84C; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
	.bkw-hero-content { grid-template-columns: 1fr; }
	.bkw-hero-visual { display: none; }
	.bkw-vs-grid { grid-template-columns: 1fr; }
	.bkw-form-grid { grid-template-columns: 1fr; }
	.bkw-hero-stats { flex-wrap: wrap; gap: 12px; }
	.bkw-stat-sep { display: none; }
	.bkw-section { margin: 56px 0; }
}

@media (max-width: 540px) {
	.bkw-form { padding: 26px 20px; }
	.bkw-section-form { padding: 40px 0; }
	.bkw-hero { padding: 32px 24px; border-radius: 16px; }
	.bkw-section-vs { padding: 40px 24px; }
}

/* ============================================================
   v3.0.8 - OPTIMISATION MOBILE COMPACTE + FIL DORÉ + PLACEHOLDERS
   ============================================================ */
@media (max-width: 768px) {
	.bkw-landing { padding: 0 12px; }
	.bkw-section { margin: 40px 0; }
	.bkw-section-head { margin-bottom: 28px; }

	.bkw-hero {
		padding: 28px 20px;
		border-radius: 12px;
		margin: 16px 0 40px;
	}
	.bkw-hero-title { font-size: 32px; line-height: 1.1; margin-bottom: 16px; }
	.bkw-hero-subtitle { font-size: 14px; margin-bottom: 24px; }
	.bkw-hero-stats { gap: 14px; padding-top: 20px; }
	.bkw-stat-num { font-size: 22px; }
	.bkw-stat-lbl { font-size: 9px; }

	.bkw-hero-ctas {
		flex-direction: column;
		gap: 8px;
		margin-bottom: 28px;
	}
	.bkw-hero-ctas .bkw-btn-primary,
	.bkw-hero-ctas .bkw-btn-ghost {
		width: 100%;
		justify-content: center;
		padding: 14px 20px;
	}

	.bkw-steps-grid { gap: 12px; }
	.bkw-step { padding: 24px 20px; }
	.bkw-step-num { font-size: 36px; margin-bottom: 12px; }
	.bkw-step-title { font-size: 18px; }

	.bkw-section-vs {
		padding: 32px 16px;
		margin-left: -12px;
		margin-right: -12px;
		border-radius: 12px;
	}
	.bkw-vs-grid { gap: 12px; }
	.bkw-vs-col { padding: 24px 18px; }
	.bkw-vs-list li { padding: 8px 0; font-size: 13px; }

	.bkw-services-grid { gap: 10px; grid-template-columns: 1fr; }
	.bkw-service-card { padding: 16px 18px; }
	.bkw-service-icon { font-size: 24px; margin-bottom: 8px; }
	.bkw-service-name { font-size: 16px; }
	.bkw-service-desc { font-size: 12px; }

	.bkw-section-form {
		padding: 40px 0 24px;
		margin: 40px -12px 0;
		padding-left: 12px;
		padding-right: 12px;
	}
	.bkw-form { padding: 22px 16px; border-radius: 18px; }
	.bkw-form-grid { gap: 12px; margin-bottom: 12px; }
	.bkw-field input,
	.bkw-field textarea { padding: 11px 13px; font-size: 14px; }

	/* Libellé À L'INTÉRIEUR du champ (Nom, Prénom, Téléphone) */
	.bkw-field--mobilelabel label { display: none; }
	.bkw-field--mobilelabel { margin-bottom: 12px; }
	.bkw-field--mobilelabel input::placeholder { color: #8a8a8a; }
	.bkw-field--mobilelabel input::-webkit-input-placeholder { color: #8a8a8a; }
	.bkw-field--mobilelabel input::-moz-placeholder { color: #8a8a8a; opacity: 1; }
}

@media (max-width: 380px) {
	.bkw-landing { padding: 0 8px; }
	.bkw-hero { padding: 24px 16px; }
	.bkw-hero-title { font-size: 26px; }
	.bkw-form { padding: 18px 12px; }
	.bkw-stat-num { font-size: 18px; }
}
