/* AK Odstąpienie od Umowy — scoped pod #ak-odst-root */
#ak-odst-root{
	--bg:#0E1018;
	--surface:#15171F;
	--line:#262a36;
	--text:#F4F5F7;
	--muted:#9aa0ad;
	--accent:#FF5A47;
	--accent2:#FF2D6F;
	max-width:560px;
	margin:0 auto;
	color:var(--text);
	font-family:'DM Sans',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
}
#ak-odst-root *{box-sizing:border-box;}

#ak-odst-root .ak-odst__form,
#ak-odst-root .ak-odst__success{
	background:var(--surface);
	border:1px solid var(--line);
	border-radius:18px;
	padding:40px 36px;
}

#ak-odst-root .ak-odst__eyebrow{
	margin:0 0 10px;
	font-size:12px;
	letter-spacing:.18em;
	text-transform:uppercase;
	color:var(--muted);
}
#ak-odst-root .ak-odst__title{
	margin:0 0 14px;
	font-family:'Montserrat',var(--text),sans-serif;
	font-weight:800;
	font-size:30px;
	line-height:1.1;
	color:var(--text);
}
#ak-odst-root .ak-odst__lead{
	margin:0 0 28px;
	color:var(--muted);
	font-size:15px;
	line-height:1.6;
}
#ak-odst-root .ak-odst__label{
	display:block;
	margin:0 0 8px;
	font-size:13px;
	font-weight:600;
	color:var(--text);
}
#ak-odst-root .ak-odst__input{
	width:100%;
	margin:0 0 22px;
	padding:14px 16px;
	background:var(--bg);
	border:1px solid var(--line);
	border-radius:10px;
	color:var(--text);
	font-size:15px;
	font-family:inherit;
	transition:border-color .18s ease;
}
#ak-odst-root .ak-odst__input::placeholder{color:#5a6070;}
#ak-odst-root .ak-odst__input:focus{
	outline:none;
	border-color:var(--accent);
}

#ak-odst-root .ak-odst__check{
	display:flex;
	gap:12px;
	align-items:flex-start;
	margin:0 0 28px;
	font-size:14px;
	line-height:1.5;
	color:var(--muted);
	cursor:pointer;
}
#ak-odst-root .ak-odst__check input{
	margin-top:3px;
	width:18px;
	height:18px;
	flex:0 0 auto;
	accent-color:var(--accent);
	cursor:pointer;
}

#ak-odst-root .ak-odst__hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden;}

#ak-odst-root .ak-odst__btn{
	position:relative;
	width:100%;
	padding:16px 24px;
	border:0;
	border-radius:12px;
	background:linear-gradient(135deg,var(--accent) 0%,var(--accent2) 100%);
	color:#fff;
	font-family:'Montserrat',sans-serif;
	font-weight:800;
	font-size:16px;
	letter-spacing:.01em;
	cursor:pointer;
	overflow:hidden;
	transition:transform .12s ease,opacity .2s ease;
}
#ak-odst-root .ak-odst__btn:hover{transform:translateY(-1px);}
#ak-odst-root .ak-odst__btn:active{transform:translateY(0);}
#ak-odst-root .ak-odst__btn:disabled{opacity:.6;cursor:default;transform:none;}
/* shimmer — przesuwająca się smuga światła, BEZ glow/halo */
#ak-odst-root .ak-odst__btn::after{
	content:"";
	position:absolute;
	top:0;left:-150%;
	width:60%;height:100%;
	background:linear-gradient(120deg,transparent 0%,rgba(255,255,255,.35) 50%,transparent 100%);
	transform:skewX(-20deg);
	animation:ak-shimmer 3.2s ease-in-out infinite;
}
@keyframes ak-shimmer{
	0%{left:-150%;}
	60%,100%{left:150%;}
}

#ak-odst-root .ak-odst__note{
	margin:18px 0 0;
	font-size:12px;
	line-height:1.5;
	color:#5a6070;
}

#ak-odst-root .ak-odst__error{
	margin:16px 0 0;
	padding:12px 16px;
	background:rgba(255,45,111,.1);
	border:1px solid rgba(255,45,111,.35);
	border-radius:10px;
	color:#ff8aa6;
	font-size:14px;
}

#ak-odst-root .ak-odst__success{text-align:center;}
#ak-odst-root .ak-odst__check-icon{
	width:56px;height:56px;
	margin:0 auto 20px;
	display:flex;align-items:center;justify-content:center;
	border-radius:50%;
	background:linear-gradient(135deg,var(--accent),var(--accent2));
	color:#fff;font-size:28px;font-weight:800;
}

@media (max-width:600px){
	#ak-odst-root .ak-odst__form,
	#ak-odst-root .ak-odst__success{padding:32px 24px;}
	#ak-odst-root .ak-odst__title{font-size:26px;}
}
@media (prefers-reduced-motion:reduce){
	#ak-odst-root .ak-odst__btn::after{animation:none;display:none;}
	#ak-odst-root .ak-odst__btn{transition:none;}
}
