.dacp-shell,
.dacp-shell * {
	box-sizing: border-box;
}

.dacp-shell {
	--dacp-ink: #14213d;
	--dacp-muted: #667085;
	--dacp-accent: #b88732;
	--dacp-accent-dark: #8f6725;
	--dacp-blue: #0f3d5e;
	--dacp-soft: #f6f8fb;
	--dacp-line: #d9e2ec;
	--dacp-danger: #b42318;
	width: 100%;
	padding: clamp(24px, 4vw, 56px) 16px;
	background:
		linear-gradient(135deg, rgba(15, 61, 94, 0.09), rgba(184, 135, 50, 0.08)),
		#fff;
	color: var(--dacp-ink);
	font-family: Tahoma, Arial, sans-serif;
}

.dacp-panel {
	display: grid;
	grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
	gap: clamp(22px, 4vw, 46px);
	width: min(1120px, 100%);
	margin: 0 auto;
	padding: clamp(18px, 3vw, 34px);
	border: 1px solid rgba(15, 61, 94, 0.12);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 24px 70px rgba(20, 33, 61, 0.12);
}

.dacp-copy {
	align-self: center;
	padding-inline: clamp(0px, 2vw, 12px);
}

.dacp-kicker {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 5px 12px;
	border: 1px solid rgba(184, 135, 50, 0.28);
	border-radius: 999px;
	background: #fff8ed;
	color: var(--dacp-accent-dark);
	font-size: 13px;
	font-weight: 700;
}

.dacp-copy h1 {
	margin: 18px 0 12px;
	color: var(--dacp-ink);
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0;
}

.dacp-copy p {
	max-width: 470px;
	margin: 0;
	color: var(--dacp-muted);
	font-size: 17px;
	line-height: 1.9;
}

.dacp-secure {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 24px;
	color: var(--dacp-blue);
	font-size: 14px;
	font-weight: 800;
}

.dacp-secure span {
	display: inline-grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--dacp-blue);
}

.dacp-secure span::before {
	content: "";
	width: 9px;
	height: 14px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) translate(-1px, -1px);
}

.dacp-form {
	display: grid;
	gap: 16px;
	padding: clamp(16px, 3vw, 28px);
	border: 1px solid var(--dacp-line);
	border-radius: 8px;
	background: #fff;
}

.dacp-form label {
	display: grid;
	gap: 8px;
	margin: 0;
	color: var(--dacp-ink);
	font-size: 14px;
	font-weight: 800;
}

.dacp-form input,
.dacp-form select {
	width: 100%;
	min-height: 50px;
	padding: 0 14px;
	border: 1px solid var(--dacp-line);
	border-radius: 8px;
	background: var(--dacp-soft);
	color: var(--dacp-ink);
	font: inherit;
	font-size: 15px;
	outline: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.dacp-form input:focus,
.dacp-form select:focus {
	border-color: rgba(184, 135, 50, 0.72);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(184, 135, 50, 0.14);
}

.dacp-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.dacp-grid--amount {
	grid-template-columns: minmax(0, 1fr) 180px;
}

.dacp-conversion {
	min-height: 48px;
	padding: 12px 14px;
	border: 1px dashed rgba(15, 61, 94, 0.28);
	border-radius: 8px;
	background: #f8fbfd;
	color: var(--dacp-blue);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
}

.dacp-methods {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.dacp-method {
	cursor: pointer;
}

.dacp-method input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.dacp-method > span {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 72px;
	padding: 13px;
	border: 1px solid var(--dacp-line);
	border-radius: 8px;
	background: #fff;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.dacp-method input:checked + span {
	border-color: var(--dacp-accent);
	box-shadow: 0 0 0 4px rgba(184, 135, 50, 0.13);
}

.dacp-method > span:hover {
	transform: translateY(-1px);
}

.dacp-method strong {
	font-size: 14px;
	line-height: 1.4;
}

.dacp-apple,
.dacp-cards {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 78px;
	min-height: 34px;
	border-radius: 8px;
	font-size: 13px;
	font-style: normal;
	font-weight: 900;
	line-height: 1;
}

.dacp-apple {
	background: #050505;
	color: #fff;
}

.dacp-cards {
	gap: 6px;
	background: #f4f7fb;
	color: var(--dacp-ink);
}

.dacp-cards i {
	display: inline-grid;
	place-items: center;
	min-width: 34px;
	min-height: 22px;
	border-radius: 5px;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(20, 33, 61, 0.12);
	font-size: 10px;
	font-style: normal;
}

.dacp-cards i:last-child {
	background: linear-gradient(90deg, #eb001b 0 50%, #f79e1b 50% 100%);
	color: #fff;
}

.dacp-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--dacp-blue), #17658f);
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 16px;
	font-weight: 900;
	transition: filter 160ms ease, transform 160ms ease;
}

.dacp-submit:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
}

.dacp-submit:disabled {
	cursor: wait;
	opacity: 0.72;
	transform: none;
}

.dacp-status {
	padding: 12px 14px;
	border-radius: 8px;
	background: #eef6ff;
	color: var(--dacp-blue);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
}

.dacp-status[data-type="error"] {
	background: #fff1f0;
	color: var(--dacp-danger);
}

@media (max-width: 820px) {
	.dacp-panel {
		grid-template-columns: 1fr;
	}

	.dacp-copy {
		text-align: center;
	}

	.dacp-copy p {
		margin-inline: auto;
	}

	.dacp-secure {
		justify-content: center;
	}
}

@media (max-width: 560px) {
	.dacp-shell {
		padding-inline: 10px;
	}

	.dacp-panel,
	.dacp-form {
		padding: 14px;
	}

	.dacp-grid,
	.dacp-grid--amount,
	.dacp-methods {
		grid-template-columns: 1fr;
	}

	.dacp-copy h1 {
		font-size: 30px;
	}

	.dacp-copy p {
		font-size: 15px;
	}
}
