/* Frontend Design System for MI'COM Lead Magnet Funnel Pro */

.mlmf-standalone-container {
	max-width: 900px;
	margin: 0 auto 80px auto;
	padding: 150px 20px 40px 20px; /* Generous top padding for floating navbar */
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Outfit", "Inter", sans-serif;
	color: #0f172a;
}

.mlmf-vertical-hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
}

.mlmf-hero-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 800px;
	margin-bottom: 36px;
	width: 100%;
}

/* Surtitre class .micom-overline */
.micom-overline {
	display: inline-block;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #d97706; /* Golden accent */
	margin-bottom: 14px;
}

.mlmf-badge {
	display: inline-block;
	background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.mlmf-hero-title {
	font-size: 44px;
	font-weight: 900;
	line-height: 1.15;
	color: #0f172a;
	margin: 0 0 20px 0;
	text-transform: uppercase;
	letter-spacing: -0.5px;
	text-align: center;
}

@media (max-width: 600px) {
	.mlmf-standalone-container {
		padding-top: 120px;
	}
	.mlmf-hero-title {
		font-size: 30px;
	}
}

.mlmf-hero-description {
	font-size: 16px;
	line-height: 1.7;
	color: #475569;
	margin: 0 auto 24px auto;
	max-width: 680px;
	text-align: center;
}

.mlmf-cover-preview {
	width: 100%;
	max-width: 600px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(226, 232, 240, 0.8);
	margin: 0 auto 30px auto;
}

.mlmf-cover-preview img {
	width: 100%;
	height: auto;
	display: block;
}

/* Centered Form Wrapper */
.mlmf-hero-form-wrapper {
	width: 100%;
	max-width: 580px;
	margin: 0 auto;
}

/* Form Card Styling (White / Light Mode) */
.mlmf-glass-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	padding: 40px 36px;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.07);
	text-align: left; /* Left align form fields inside card */
}

@media (max-width: 480px) {
	.mlmf-glass-card {
		padding: 28px 20px;
	}
}

.mlmf-card-header {
	text-align: center;
	margin-bottom: 28px;
}

.mlmf-card-header h3 {
	font-size: 20px;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 8px 0;
	color: #0f172a;
	letter-spacing: -0.3px;
}

.mlmf-card-header p {
	font-size: 13px;
	color: #64748b;
	margin: 0;
	line-height: 1.5;
}

.mlmf-input-group {
	margin-bottom: 18px;
}

.mlmf-input-group label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #334155;
	margin-bottom: 6px;
}

.mlmf-input-group label .req {
	color: #ef4444;
}

.mlmf-input-group input {
	width: 100%;
	padding: 13px 16px;
	border-radius: 12px;
	border: 1px solid #cbd5e1;
	background: #f8fafc;
	font-size: 14px;
	color: #0f172a;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

.mlmf-input-group input:focus {
	outline: none;
	border-color: #6366f1;
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.mlmf-rgpd-consent {
	margin-bottom: 22px;
}

.mlmf-rgpd-consent label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 12px;
	color: #64748b;
	cursor: pointer;
	line-height: 1.4;
}

.mlmf-rgpd-consent input[type="checkbox"] {
	margin-top: 2px;
}

.mlmf-submit-btn {
	width: 100% !important;
	background: var(--primary, #4f46e5) !important;
	color: #ffffff !important;
	border: none !important;
	padding: 16px 32px !important;
	border-radius: 9999px !important; /* Pill shape */
	font-size: 16px !important;
	font-weight: 800 !important;
	cursor: pointer !important;
	transition: all 0.25s ease !important;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.mlmf-submit-btn:hover {
	transform: translateY(-2px) !important;
	filter: brightness(1.1) !important;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2) !important;
}

.mlmf-form-response {
	padding: 14px 16px;
	border-radius: 10px;
	font-size: 13px;
	margin-bottom: 18px;
	line-height: 1.5;
}

.mlmf-form-response.success {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}

.mlmf-form-response.error {
	background: #fef2f2 !important;
	color: #991b1b !important;
	border: 1px solid #fecaca !important;
}

/* Thank You Page Styling */
.mlmf-thankyou-card {
	text-align: center !important;
}

.mlmf-thankyou-actions {
	margin: 30px 0 20px 0 !important;
}

.mlmf-thankyou-footer {
	font-size: 13px !important;
	color: #64748b !important;
	margin-top: 24px !important;
	padding-top: 20px !important;
	border-top: 1px solid #e2e8f0 !important;
}

.mlmf-thankyou-footer a {
	color: var(--primary, #4f46e5) !important;
	font-weight: 600 !important;
	text-decoration: underline !important;
}

/* Shortcode Card Styling */
.mlmf-shortcode-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 28px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	max-width: 500px;
	margin: 20px auto;
}

.mlmf-sc-title {
	font-size: 22px;
	font-weight: 800;
	text-transform: uppercase;
	margin: 8px 0 16px 0;
	color: #0f172a;
	text-align: center;
}

.mlmf-sc-cover img {
	width: 100%;
	border-radius: 12px;
	margin-bottom: 16px;
}
