/* Proxi Warranty – אשף הפעלת אחריות */
.proxi-war {
	--pw-primary: #0b3d91;
	--pw-primary-dark: #082c69;
	--pw-accent: #1e6fff;
	--pw-bg: #ffffff;
	--pw-muted: #6b7280;
	--pw-border: #e2e6ee;
	--pw-error: #d64545;
	--pw-success: #1a9e5f;
	--pw-radius: 14px;
	font-family: inherit;
	color: #1b2430;
	direction: rtl;
	max-width: 520px;
	margin: 24px auto;
	padding: 0 12px;
	box-sizing: border-box;
}
.proxi-war *,
.proxi-war *::before,
.proxi-war *::after { box-sizing: border-box; }

.proxi-war__card {
	background: var(--pw-bg);
	border: 1px solid var(--pw-border);
	border-radius: var(--pw-radius);
	box-shadow: 0 12px 40px rgba(11, 61, 145, 0.10);
	padding: 28px 26px 32px;
}

.proxi-war__header { text-align: center; margin-bottom: 20px; }
.proxi-war__title { font-size: 26px; font-weight: 800; margin: 0 0 6px; color: var(--pw-primary); }
.proxi-war__subtitle { font-size: 15px; color: var(--pw-muted); margin: 0; line-height: 1.5; }

/* מחוון שלבים */
.proxi-war__steps {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	position: relative;
}
.proxi-war__steps::before {
	content: "";
	position: absolute;
	top: 15px;
	right: 12%;
	left: 12%;
	height: 2px;
	background: var(--pw-border);
	z-index: 0;
}
.proxi-war__steps li {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	flex: 1;
}
.proxi-war__steps li span {
	width: 32px; height: 32px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--pw-border);
	color: var(--pw-muted);
	display: flex; align-items: center; justify-content: center;
	font-weight: 700; font-size: 14px;
	transition: all .2s ease;
}
.proxi-war__steps li em { font-style: normal; font-size: 12px; color: var(--pw-muted); }
.proxi-war__steps li.is-active span,
.proxi-war__steps li.is-done span {
	background: var(--pw-primary);
	border-color: var(--pw-primary);
	color: #fff;
}
.proxi-war__steps li.is-active em,
.proxi-war__steps li.is-done em { color: var(--pw-primary); font-weight: 700; }

/* שלבים */
.proxi-war__step { display: none; animation: pw-fade .25s ease; }
.proxi-war__step.is-active { display: block; }
@keyframes pw-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.proxi-war__lead { font-size: 16px; font-weight: 600; margin: 0 0 14px; text-align: center; }
.proxi-war__phone-echo { text-align: center; color: var(--pw-muted); font-size: 14px; margin: -6px 0 14px; direction: ltr; }

.proxi-war__label { display: block; font-size: 14px; font-weight: 600; margin: 14px 0 6px; }
.proxi-war__input {
	width: 100%;
	padding: 13px 14px;
	font-size: 16px;
	border: 1px solid var(--pw-border);
	border-radius: 10px;
	background: #fff;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.proxi-war__input:focus {
	outline: none;
	border-color: var(--pw-accent);
	box-shadow: 0 0 0 3px rgba(30, 111, 255, 0.15);
}
.proxi-war__input--otp {
	text-align: center;
	letter-spacing: 8px;
	font-size: 24px;
	font-weight: 700;
}

.proxi-war__file { position: relative; }
.proxi-war__file input[type=file] {
	width: 100%;
	padding: 12px;
	border: 1px dashed var(--pw-border);
	border-radius: 10px;
	background: #f8fafc;
	cursor: pointer;
}
.proxi-war__file-hint { display: block; font-size: 12px; color: var(--pw-muted); margin-top: 6px; }

.proxi-war__btn {
	width: 100%;
	margin-top: 20px;
	padding: 14px 18px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	background: var(--pw-primary);
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: background .15s ease, transform .05s ease;
}
.proxi-war__btn:hover { background: var(--pw-accent); }
.proxi-war__btn:active { transform: translateY(1px); }
.proxi-war__btn:disabled { opacity: .6; cursor: default; }

.proxi-war__link {
	display: inline-block;
	background: none;
	border: none;
	color: var(--pw-accent);
	font-size: 14px;
	cursor: pointer;
	margin: 12px auto 0;
	text-decoration: underline;
	padding: 4px;
}
.proxi-war__resend { display: flex; justify-content: space-between; gap: 8px; }
.proxi-war__hint { font-size: 13px; color: var(--pw-muted); text-align: center; margin: 12px 0 0; }

/* התראות */
.proxi-war__alert {
	margin-bottom: 16px;
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	background: #fdecec;
	color: var(--pw-error);
	border: 1px solid #f6c9c9;
}
.proxi-war__alert.is-success {
	background: #e8f7ef;
	color: var(--pw-success);
	border-color: #bfe8d1;
}

/* סיום */
.proxi-war__step--done { text-align: center; padding: 20px 0; }
.proxi-war__check {
	width: 72px; height: 72px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: var(--pw-success);
	color: #fff;
	font-size: 40px;
	line-height: 72px;
}
.proxi-war__done-title { color: var(--pw-success); font-size: 22px; margin: 0 0 8px; }
.proxi-war__done-text { color: var(--pw-muted); font-size: 15px; }

/* טעינה */
.proxi-war.is-loading .proxi-war__btn { pointer-events: none; opacity: .7; }

@media (max-width: 480px) {
	.proxi-war__card { padding: 22px 18px 26px; }
	.proxi-war__steps li em { font-size: 11px; }
}
