/**
 * Ozzéo Money — Devis page (page 338)
 * Aligned with template DOM in templates/devis.php (v1.1.0)
 *
 * Tokens come from ozzeo-tokens.css (enqueued before).
 * Defensive patterns: literal #fff fallback after var() (LiteSpeed combine quirk),
 * !important on critical visual classes (cf. id:200 lessons).
 */

/* ----------------------------------------------------------
   GLOBAL CONTAINER
   ---------------------------------------------------------- */
.ozzeo-money {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--ozzeo-ink, #111827);
	line-height: 1.55;
	background: #fff;
}
.ozzeo-money * {
	box-sizing: border-box;
}
.ozzeo-money .ozzeo-container {
	max-width: 1180px;
	margin-inline: auto;
	padding-inline: clamp(16px, 4vw, 32px);
}
.ozzeo-money h1,
.ozzeo-money h2,
.ozzeo-money h3 {
	font-weight: 600;
	color: var(--ozzeo-ink, #111827);
	margin: 0 0 .5em;
	line-height: 1.2;
}
.ozzeo-money p {
	margin: 0 0 1em;
}
.ozzeo-money a:not(.ozm-btn) {
	color: var(--ozzeo-primary, #1E88E5);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.ozzeo-money .ozm-section-title {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	text-align: center;
	margin-bottom: .3em;
}
.ozzeo-money .ozm-section-sub {
	text-align: center;
	color: var(--ozzeo-muted, #6B7280);
	margin-bottom: 2em;
}

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */
.ozzeo-money .ozm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5em;
	padding: .85em 1.6em;
	border: 2px solid transparent;
	border-radius: 999px;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
	white-space: nowrap;
}
.ozzeo-money .ozm-btn:focus-visible {
	outline: 3px solid #FFCB05;
	outline-offset: 2px;
}
.ozzeo-money .ozm-btn--primary,
.ozzeo-money .ozm-btn.ozm-btn--primary {
	background: var(--ozzeo-primary, #1E88E5);
	color: #fff !important;
	border-color: var(--ozzeo-primary, #1E88E5);
	box-shadow: 0 6px 20px rgba(30, 136, 229, .25);
}
.ozzeo-money .ozm-btn--primary:hover,
.ozzeo-money .ozm-btn.ozm-btn--primary:hover {
	background: #1976D2;
	border-color: #1976D2;
	color: #fff !important;
	transform: translateY(-1px);
}
.ozzeo-money .ozm-btn--ghost,
.ozzeo-money .ozm-btn.ozm-btn--ghost {
	background: #fff;
	color: var(--ozzeo-primary, #1E88E5);
	border-color: var(--ozzeo-primary, #1E88E5);
}
.ozzeo-money .ozm-btn--ghost:hover {
	background: rgba(30, 136, 229, .08);
}
.ozzeo-money .ozm-btn--large {
	padding: 1em 2em;
	font-size: 1.05rem;
}
.ozzeo-money .ozm-btn--submit {
	min-width: 220px;
}
.ozzeo-money .ozm-btn[disabled] {
	opacity: .6;
	cursor: not-allowed;
}
.ozzeo-money .ozm-btn-icon {
	font-size: 1.05em;
	line-height: 1;
}

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.ozzeo-money .ozm-hero {
	padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2rem, 5vw, 4rem);
	background:
		radial-gradient(ellipse at top right, rgba(30, 136, 229, .12), transparent 60%),
		linear-gradient(180deg, #F4F8FC 0%, #fff 100%);
}
.ozzeo-money .ozm-hero__content {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.ozzeo-money .ozm-hero__copy h1 {
	font-size: clamp(1.4rem, 2.6vw, 2rem);
	line-height: 1.15;
	margin-bottom: .5em;
}
.ozzeo-money .ozm-hero__kicker {
	display: inline-block;
	background: rgba(30, 136, 229, .12);
	color: var(--ozzeo-primary, #1E88E5);
	padding: .35em .9em;
	border-radius: 999px;
	font-size: .85rem;
	font-weight: 600;
	letter-spacing: .02em;
	text-transform: uppercase;
	margin-bottom: 1.2em;
}
.ozzeo-money .ozm-hero__lead {
	font-size: 1.075rem;
	color: var(--ozzeo-muted, #4B5563);
	max-width: 56ch;
	margin-bottom: 1.5em;
}
.ozzeo-money .ozm-hero__trust {
	display: flex !important;
	flex-wrap: wrap;
	gap: clamp(1rem, 2vw, 2rem);
	list-style: none;
	padding: 0;
	margin: 0 0 1.8em;
}
.ozzeo-money .ozm-hero__trust li {
	display: flex;
	flex-direction: column;
	gap: .15em;
	min-width: 110px;
	color: var(--ozzeo-muted, #6B7280);
	font-size: .9rem;
}
.ozzeo-money .ozm-trust-num {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--ozzeo-ink, #111827);
	line-height: 1;
}
/* === Google Reviews Badge === */
.ozzeo-money .ozm-hero__trust .ozm-google-badge {
	display: block !important;
	flex-direction: row !important;
	min-width: 0 !important;
	padding: 0 !important;
	color: inherit !important;
}
.ozzeo-money .ozm-gb {
	display: inline-flex;
	align-items: center;
	gap: .7rem;
	padding: .55rem .85rem;
	background: #fff;
	background: #ffffff;
	border: 1px solid #E5E7EB;
	border-radius: 12px;
	box-shadow: 0 1px 2px rgba(17, 24, 39, .04);
	text-decoration: none !important;
	color: #111827 !important;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.ozzeo-money .ozm-gb:hover,
.ozzeo-money .ozm-gb:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(17, 24, 39, .08);
	border-color: #D1D5DB;
}
.ozzeo-money .ozm-gb__logo {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.ozzeo-money .ozm-gb__logo svg {
	display: block;
}
.ozzeo-money .ozm-gb__body {
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
	line-height: 1.2;
	min-width: 0;
}
.ozzeo-money .ozm-gb__name {
	font-size: .88rem;
	font-weight: 600;
	color: #1F2937;
	color: var(--ozzeo-ink, #1F2937);
	letter-spacing: .005em;
}
.ozzeo-money .ozm-gb__rating {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-size: .8rem;
	white-space: nowrap;
}
.ozzeo-money .ozm-gb__score {
	font-weight: 700;
	color: #1F2937;
	color: var(--ozzeo-ink, #1F2937);
	font-variant-numeric: tabular-nums;
}
.ozzeo-money .ozm-gb__stars {
	position: relative;
	display: inline-block;
	width: 78px;
	height: 14px;
	line-height: 0;
}
.ozzeo-money .ozm-gb__stars-base,
.ozzeo-money .ozm-gb__stars-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 14px;
	display: block;
	overflow: hidden;
}
.ozzeo-money .ozm-gb__stars-base {
	width: 100%;
}
.ozzeo-money .ozm-gb__stars svg {
	display: block;
}
.ozzeo-money .ozm-gb__count {
	color: #4B5563;
	color: #4B5563;
	font-weight: 500;
	text-decoration: underline;
	text-decoration-color: #D1D5DB;
	text-underline-offset: 2px;
}
.ozzeo-money .ozm-gb__sub {
	font-size: .72rem;
	color: #6B7280;
	color: var(--ozzeo-muted, #6B7280);
}
@media (max-width: 480px) {
	.ozzeo-money .ozm-hero__trust .ozm-google-badge {
		width: 100%;
	}
	.ozzeo-money .ozm-gb {
		width: 100%;
	}
}
.ozzeo-money .ozm-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.ozzeo-money .ozm-hero__visual {
	display: flex;
	align-items: center;
	justify-content: center;
}
.ozzeo-money .ozm-hero__badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: clamp(180px, 22vw, 260px);
	height: clamp(180px, 22vw, 260px);
	background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
	color: #fff;
	border-radius: 50%;
	box-shadow: 0 20px 50px rgba(30, 136, 229, .35);
	transform: rotate(-6deg);
}
.ozzeo-money .ozm-hero__badge-pct {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	line-height: 1;
	color: #fff;
}
.ozzeo-money .ozm-hero__badge-text {
	font-size: 1rem;
	font-weight: 500;
	opacity: .95;
	margin-top: .3em;
	color: #fff;
	text-align: center;
	padding: 0 .5em;
}

/* ----------------------------------------------------------
   URGENCY BANNER
   ---------------------------------------------------------- */
.ozzeo-money .ozm-urgency {
	background: var(--ozzeo-primary, #1E88E5) !important;
	background: #1E88E5 !important;
	color: #fff !important;
	padding: .9em 0;
	text-align: center;
}
.ozzeo-money .ozm-urgency p {
	margin: 0;
	color: #fff;
	font-size: 1rem;
}
.ozzeo-money .ozm-urgency strong {
	font-weight: 700;
	color: #fff;
}
.ozzeo-money .ozm-urgency a {
	color: #fff !important;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
	margin-left: .25em;
}

/* ----------------------------------------------------------
   FORM SECTION
   ---------------------------------------------------------- */
.ozzeo-money .ozm-form-section {
	padding: clamp(2.5rem, 6vw, 5rem) 0;
	background: #F8FAFC;
}
.ozzeo-money .ozm-form-wrap {
	max-width: 820px;
	margin-inline: auto;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 10px 40px rgba(15, 23, 42, .08);
	padding: clamp(1.5rem, 4vw, 3rem);
	border: 1px solid rgba(15, 23, 42, .05);
}
.ozzeo-money .ozm-form-head {
	text-align: center;
	margin-bottom: 1.6em;
}
.ozzeo-money .ozm-form-head h2 {
	font-size: clamp(1.4rem, 2.6vw, 1.9rem);
	margin-bottom: .25em;
}
.ozzeo-money .ozm-form-sub {
	color: var(--ozzeo-muted, #6B7280);
	margin: 0;
}

/* ---- STEPPER ---- */
.ozzeo-money .ozm-stepper {
	display: flex;
	justify-content: space-between;
	gap: .5em;
	margin-bottom: 2em;
	position: relative;
}
.ozzeo-money .ozm-stepper::before {
	content: '';
	position: absolute;
	top: 18px;
	left: 5%;
	right: 5%;
	height: 2px;
	background: #E5E7EB;
	z-index: 0;
}
.ozzeo-money .ozm-step-pill {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .35em;
	flex: 1;
	position: relative;
	z-index: 1;
	color: var(--ozzeo-muted, #9CA3AF);
	font-size: .85rem;
	font-weight: 500;
}
.ozzeo-money .ozm-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #E5E7EB;
	color: var(--ozzeo-muted, #9CA3AF);
	font-weight: 700;
	font-size: .95rem;
	transition: all .2s ease;
}
.ozzeo-money .ozm-step-pill.is-active .ozm-step-num {
	background: var(--ozzeo-primary, #1E88E5);
	border-color: var(--ozzeo-primary, #1E88E5);
	color: #fff !important;
	box-shadow: 0 0 0 4px rgba(30, 136, 229, .15);
}
.ozzeo-money .ozm-step-pill.is-active {
	color: var(--ozzeo-ink, #111827);
}
.ozzeo-money .ozm-step-pill.is-done .ozm-step-num {
	background: #10B981;
	border-color: #10B981;
	color: #fff !important;
}
.ozzeo-money .ozm-step-pill.is-done {
	color: #047857;
}
.ozzeo-money .ozm-step-label {
	font-weight: 500;
	text-align: center;
}

/* ---- HONEYPOT (off-screen) ---- */
.ozzeo-money .ozm-hp {
	position: absolute !important;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ---- STEP FIELDSETS ---- */
.ozzeo-money .ozm-step {
	border: 0;
	padding: 0;
	margin: 0;
	display: none;
}
.ozzeo-money .ozm-step.is-active {
	display: block;
	animation: ozm-fade-in .25s ease;
}
@keyframes ozm-fade-in {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}
.ozzeo-money .ozm-step-title {
	font-size: 1.15rem;
	font-weight: 600;
	margin: 0 0 1.25em;
	color: var(--ozzeo-ink, #111827);
	padding: 0;
}

/* ---- CHOICE GRID (step 1) ---- */
.ozzeo-money .ozm-choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-bottom: 1.5em;
}
.ozzeo-money .ozm-choice {
	display: flex;
	flex-direction: column;
	gap: .35em;
	padding: 1.2em 1em;
	border: 2px solid #E5E7EB;
	border-radius: 12px;
	cursor: pointer;
	transition: all .15s ease;
	background: #fff;
	position: relative;
}
.ozzeo-money .ozm-choice:hover {
	border-color: var(--ozzeo-primary, #1E88E5);
	background: rgba(30, 136, 229, .03);
}
.ozzeo-money .ozm-choice input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.ozzeo-money .ozm-choice:has(input:checked) {
	border-color: var(--ozzeo-primary, #1E88E5);
	background: rgba(30, 136, 229, .08);
	box-shadow: 0 4px 12px rgba(30, 136, 229, .15);
}
.ozzeo-money .ozm-choice-icon {
	font-size: 1.6rem;
	line-height: 1;
}
.ozzeo-money .ozm-choice-title {
	font-weight: 600;
	color: var(--ozzeo-ink, #111827);
}
.ozzeo-money .ozm-choice-text {
	font-size: .9rem;
	color: var(--ozzeo-muted, #6B7280);
	line-height: 1.4;
}

/* ---- FIELDS ---- */
.ozzeo-money .ozm-field {
	margin-bottom: 1.2em;
	display: flex;
	flex-direction: column;
}
.ozzeo-money .ozm-field label {
	font-weight: 500;
	font-size: .95rem;
	color: var(--ozzeo-ink, #111827);
	margin-bottom: .4em;
}
.ozzeo-money .ozm-req {
	color: #DC2626;
	font-weight: 700;
}
.ozzeo-money .ozm-field input:not([type="radio"]):not([type="checkbox"]),
.ozzeo-money .ozm-field select,
.ozzeo-money .ozm-field textarea {
	width: 100%;
	padding: .75em 1em;
	border: 2px solid #E5E7EB;
	border-radius: 10px;
	font-family: inherit;
	font-size: 1rem;
	color: var(--ozzeo-ink, #111827);
	background: #fff;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.ozzeo-money .ozm-field input:focus,
.ozzeo-money .ozm-field select:focus,
.ozzeo-money .ozm-field textarea:focus {
	outline: 0;
	border-color: var(--ozzeo-primary, #1E88E5);
	box-shadow: 0 0 0 3px rgba(30, 136, 229, .15);
}
.ozzeo-money .ozm-field textarea {
	resize: vertical;
	min-height: 80px;
}
.ozzeo-money .ozm-field.is-invalid input,
.ozzeo-money .ozm-field.is-invalid select,
.ozzeo-money .ozm-field.is-invalid textarea {
	border-color: #DC2626;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, .12);
}
.ozzeo-money .ozm-field-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 2.5rem;
	column-gap: var(--space-7, 2.5rem);
	row-gap: 0;
}

/* ---- PILLS (frequence) ---- */
.ozzeo-money .ozm-pills {
	display: flex;
	flex-wrap: wrap;
	gap: .5em;
}
.ozzeo-money .ozm-pill {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	position: relative;
}
.ozzeo-money .ozm-pill input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.ozzeo-money .ozm-pill span {
	display: inline-block;
	padding: .55em 1.1em;
	border: 2px solid #E5E7EB;
	border-radius: 999px;
	font-size: .9rem;
	font-weight: 500;
	color: var(--ozzeo-muted, #4B5563);
	background: #fff;
	transition: all .15s ease;
}
.ozzeo-money .ozm-pill:hover span {
	border-color: var(--ozzeo-primary, #1E88E5);
	color: var(--ozzeo-primary, #1E88E5);
}
.ozzeo-money .ozm-pill input:checked + span {
	background: var(--ozzeo-primary, #1E88E5);
	border-color: var(--ozzeo-primary, #1E88E5);
	color: #fff !important;
}

/* ---- CONSENT (rgpd checkboxes) ---- */
.ozzeo-money .ozm-consent {
	display: flex;
	flex-direction: column;
	gap: .8em;
	padding: 1.2em;
	background: #F4F8FC;
	border-radius: 10px;
	margin: 1.5em 0;
	font-size: .9rem;
	color: var(--ozzeo-muted, #4B5563);
	line-height: 1.5;
}
.ozzeo-money .ozm-check {
	display: flex;
	align-items: flex-start;
	gap: .6em;
	cursor: pointer;
}
.ozzeo-money .ozm-check input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--ozzeo-primary, #1E88E5);
	flex-shrink: 0;
}

/* ---- STEP NAVIGATION ---- */
.ozzeo-money .ozm-step-actions {
	display: flex;
	justify-content: space-between;
	gap: 1em;
	flex-wrap: wrap;
	margin-top: 1.5em;
	padding-top: 1.5em;
	border-top: 1px solid #F1F5F9;
}
.ozzeo-money .ozm-step-actions .ozm-btn--primary:only-child {
	margin-left: auto;
}
.ozzeo-money .ozm-step-actions [data-prev] {
	margin-right: auto;
}

/* ---- FORM STATUS / ERRORS ---- */
.ozzeo-money .ozm-form-status {
	margin-top: 1em;
	padding: 0;
	font-size: .9rem;
	color: #DC2626;
	min-height: 1.2em;
}
.ozzeo-money .ozm-form-status.is-visible {
	padding: .8em 1em;
	background: rgba(220, 38, 38, .08);
	border: 1px solid rgba(220, 38, 38, .25);
	border-radius: 8px;
}

/* ---- SUCCESS PANEL ---- */
.ozzeo-money .ozm-success {
	text-align: center;
	padding: 2em 1em;
}
.ozzeo-money .ozm-success-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #10B981;
	color: #fff !important;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1em;
	box-shadow: 0 8px 24px rgba(16, 185, 129, .3);
}
.ozzeo-money .ozm-success h3 {
	font-size: 1.4rem;
	margin-bottom: .5em;
}
.ozzeo-money .ozm-success p {
	color: var(--ozzeo-muted, #4B5563);
	max-width: 50ch;
	margin: 0 auto 1.5em;
}

/* ----------------------------------------------------------
   3 RAISONS
   ---------------------------------------------------------- */
.ozzeo-money .ozm-reasons {
	padding: clamp(2.5rem, 6vw, 5rem) 0;
}
.ozzeo-money .ozm-reasons-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-top: 2em;
}
.ozzeo-money .ozm-reason {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, .06);
	border-radius: 14px;
	padding: 1.8em 1.5em;
	box-shadow: 0 4px 16px rgba(15, 23, 42, .04);
	transition: transform .2s ease, box-shadow .2s ease;
}
.ozzeo-money .ozm-reason:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(15, 23, 42, .08);
}
.ozzeo-money .ozm-reason-icon {
	font-size: 2rem;
	margin-bottom: .6em;
	line-height: 1;
}
.ozzeo-money .ozm-reason h3 {
	font-size: 1.1rem;
	margin-bottom: .4em;
}
.ozzeo-money .ozm-reason p {
	margin: 0;
	color: var(--ozzeo-muted, #4B5563);
	font-size: .95rem;
}

/* ----------------------------------------------------------
   COMMENT ÇA MARCHE
   ---------------------------------------------------------- */
.ozzeo-money .ozm-howto {
	padding: clamp(2.5rem, 6vw, 5rem) 0;
	background: #F4F8FC;
}
.ozzeo-money .ozm-howto-list {
	list-style: none;
	padding: 0;
	margin: 2em 0 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
}
.ozzeo-money .ozm-howto-list li {
	background: #fff;
	border-radius: 14px;
	padding: 1.8em 1.5em;
	border: 1px solid rgba(15, 23, 42, .05);
	position: relative;
}
.ozzeo-money .ozm-howto-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--ozzeo-primary, #1E88E5);
	color: #fff !important;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: .8em;
	box-shadow: 0 4px 12px rgba(30, 136, 229, .25);
}
.ozzeo-money .ozm-howto-list h3 {
	font-size: 1.1rem;
	margin-bottom: .4em;
}
.ozzeo-money .ozm-howto-list p {
	margin: 0;
	color: var(--ozzeo-muted, #4B5563);
	font-size: .95rem;
}

/* ----------------------------------------------------------
   REVIEWS (1reputation widget)
   ---------------------------------------------------------- */
.ozzeo-money .ozm-reviews {
	padding: clamp(2.5rem, 6vw, 5rem) 0;
}
.ozzeo-money .ozm-reviews-widget {
	margin-top: 2em;
	min-height: 200px;
}

/* ----------------------------------------------------------
   FAQ
   ---------------------------------------------------------- */
.ozzeo-money .ozm-faq {
	padding: clamp(2.5rem, 6vw, 5rem) 0;
	background: #F8FAFC;
}
.ozzeo-money .ozm-faq-list {
	max-width: 820px;
	margin: 2em auto 0;
	display: flex;
	flex-direction: column;
	gap: .75em;
}
.ozzeo-money .ozm-faq-item {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, .06);
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow .2s ease;
}
.ozzeo-money .ozm-faq-item[open] {
	box-shadow: 0 6px 20px rgba(15, 23, 42, .06);
}
.ozzeo-money .ozm-faq-item summary {
	padding: 1.1em 1.4em;
	cursor: pointer;
	font-weight: 600;
	color: var(--ozzeo-ink, #111827);
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
}
.ozzeo-money .ozm-faq-item summary::-webkit-details-marker {
	display: none;
}
.ozzeo-money .ozm-faq-item summary::after {
	content: '+';
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--ozzeo-primary, #1E88E5);
	transition: transform .2s ease;
	flex-shrink: 0;
	width: 24px;
	text-align: center;
}
.ozzeo-money .ozm-faq-item[open] summary::after {
	content: '−';
}
.ozzeo-money .ozm-faq-body {
	padding: 0 1.4em 1.2em;
	color: var(--ozzeo-muted, #4B5563);
	font-size: .95rem;
	line-height: 1.6;
}
.ozzeo-money .ozm-faq-body p {
	margin: 0;
}

/* ----------------------------------------------------------
   CTA BANNER
   ---------------------------------------------------------- */
.ozzeo-money .ozm-cta-banner {
	padding: clamp(2.5rem, 5vw, 4rem) 0;
	background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
	color: #fff;
}
.ozzeo-money .ozm-cta-banner__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	align-items: center;
	justify-content: space-between;
}
.ozzeo-money .ozm-cta-banner h2 {
	font-size: clamp(1.4rem, 2.6vw, 1.9rem);
	color: #fff;
	margin-bottom: .25em;
}
.ozzeo-money .ozm-cta-banner p {
	margin: 0;
	color: #fff;
	opacity: .92;
}
.ozzeo-money .ozm-cta-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.ozzeo-money .ozm-cta-banner .ozm-btn--primary {
	background: #fff !important;
	color: var(--ozzeo-primary, #1E88E5) !important;
	border-color: #fff;
}
.ozzeo-money .ozm-cta-banner .ozm-btn--primary:hover {
	background: #F1F5F9 !important;
	color: var(--ozzeo-primary, #1E88E5) !important;
}
.ozzeo-money .ozm-cta-banner .ozm-btn--ghost {
	background: transparent;
	color: #fff !important;
	border-color: #fff;
}
.ozzeo-money .ozm-cta-banner .ozm-btn--ghost:hover {
	background: rgba(255, 255, 255, .12);
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 768px) {
	.ozzeo-money .ozm-hero__content {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.ozzeo-money .ozm-hero__copy h1 {
		font-size: 1.35rem;
	}
	.ozzeo-money .ozm-hero__lead {
		margin-inline: auto;
	}
	.ozzeo-money .ozm-hero__trust {
		justify-content: center;
	}
	.ozzeo-money .ozm-hero__cta {
		justify-content: center;
	}
	.ozzeo-money .ozm-hero__visual {
		display: none;
	}
	.ozzeo-money .ozm-form-wrap {
		padding: 1.25rem;
	}
	.ozzeo-money .ozm-stepper {
		gap: .25em;
	}
	.ozzeo-money .ozm-step-label {
		font-size: .75rem;
	}
	.ozzeo-money .ozm-step-num {
		width: 30px;
		height: 30px;
		font-size: .85rem;
	}
	.ozzeo-money .ozm-stepper::before {
		top: 15px;
	}
	.ozzeo-money .ozm-choice-grid {
		grid-template-columns: 1fr;
	}
	.ozzeo-money .ozm-field-row {
		grid-template-columns: 1fr;
		row-gap: 1.2em;
	}
	.ozzeo-money .ozm-cta-banner__inner {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.ozzeo-money .ozm-step-actions {
		flex-direction: column-reverse;
	}
	.ozzeo-money .ozm-step-actions .ozm-btn {
		width: 100%;
	}
}
