.ddl-conversor {
	--ddl-green-950: #052e22;
	--ddl-green-800: #12633f;
	--ddl-green-700: #16784b;
	--ddl-green-600: #1a8b56;
	--ddl-green-100: #def7e9;
	--ddl-green-50: #f2fbf6;
	--ddl-ink: #18221d;
	--ddl-muted: #637068;
	--ddl-border: #dce6df;
	--ddl-white: #fff;
	box-sizing: border-box;
	color: var(--ddl-ink);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	margin: 24px auto 64px;
	max-width: 1120px;
	padding: 0 18px;
}

.ddl-conversor *,
.ddl-conversor *::before,
.ddl-conversor *::after {
	box-sizing: inherit;
}

.ddl-hero {
	background:
		radial-gradient(circle at 88% 10%, rgba(92, 228, 153, .24), transparent 30%),
		linear-gradient(135deg, var(--ddl-green-950), var(--ddl-green-700));
	border-radius: 28px;
	box-shadow: 0 24px 60px rgba(5, 46, 34, .18);
	color: var(--ddl-white);
	margin-bottom: 28px;
	overflow: hidden;
	padding: clamp(34px, 7vw, 68px);
	position: relative;
}

.ddl-hero::after {
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 50%;
	content: "";
	height: 230px;
	position: absolute;
	right: -60px;
	top: -100px;
	width: 230px;
}

.ddl-kicker {
	background: rgba(255, 255, 255, .13);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 999px;
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	padding: 7px 12px;
	text-transform: uppercase;
}

.ddl-hero h1 {
	color: var(--ddl-white);
	font-size: clamp(32px, 5vw, 58px);
	letter-spacing: -.035em;
	line-height: 1.02;
	margin: 22px 0 14px;
	max-width: 760px;
}

.ddl-hero p {
	color: rgba(255, 255, 255, .82);
	font-size: clamp(16px, 2vw, 20px);
	line-height: 1.6;
	margin: 0;
	max-width: 720px;
}

.ddl-selection-form,
.ddl-upload-card,
.ddl-status-card {
	background: var(--ddl-white);
	border: 1px solid var(--ddl-border);
	border-radius: 24px;
	box-shadow: 0 18px 50px rgba(24, 34, 29, .08);
	padding: clamp(22px, 4vw, 42px);
}

.ddl-price-line {
	align-items: center;
	background: var(--ddl-green-50);
	border: 1px solid #ccebd9;
	border-radius: 16px;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-bottom: 30px;
	padding: 18px 20px;
}

.ddl-price-line strong {
	color: var(--ddl-green-800);
	font-size: 24px;
}

.ddl-price-line span {
	color: var(--ddl-muted);
}

.ddl-price-line .ddl-secure {
	color: var(--ddl-green-700);
	font-size: 13px;
	font-weight: 700;
}

.ddl-tools-grid {
	border: 0;
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
	padding: 0;
}

.ddl-tools-grid legend {
	font-size: 22px;
	font-weight: 800;
	grid-column: 1 / -1;
	margin-bottom: 6px;
	padding: 0;
}

.ddl-tool-card {
	align-items: center;
	background: #fff;
	border: 1px solid var(--ddl-border);
	border-radius: 17px;
	cursor: pointer;
	display: grid;
	gap: 14px;
	grid-template-columns: auto 1fr auto;
	min-height: 108px;
	padding: 17px;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ddl-tool-card:hover {
	border-color: #8fcfac;
	box-shadow: 0 12px 28px rgba(22, 120, 75, .1);
	transform: translateY(-2px);
}

.ddl-tool-card.is-selected {
	background: var(--ddl-green-50);
	border-color: var(--ddl-green-600);
	box-shadow: 0 0 0 2px rgba(26, 139, 86, .11);
}

.ddl-tool-card input {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.ddl-tool-card:focus-within {
	outline: 3px solid rgba(26, 139, 86, .24);
	outline-offset: 2px;
}

.ddl-file-badge {
	align-items: center;
	background: var(--ddl-green-100);
	border-radius: 12px;
	color: var(--ddl-green-800);
	display: inline-flex;
	font-size: 11px;
	font-weight: 900;
	height: 48px;
	justify-content: center;
	letter-spacing: .04em;
	width: 48px;
}

.ddl-tool-copy {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.ddl-tool-copy strong {
	font-size: 16px;
	line-height: 1.25;
}

.ddl-tool-copy small {
	color: var(--ddl-muted);
	font-size: 13px;
	line-height: 1.45;
}

.ddl-check {
	align-items: center;
	background: var(--ddl-green-600);
	border-radius: 50%;
	color: #fff;
	display: inline-flex;
	height: 25px;
	justify-content: center;
	opacity: 0;
	transform: scale(.8);
	transition: opacity .18s ease, transform .18s ease;
	width: 25px;
}

.ddl-tool-card.is-selected .ddl-check {
	opacity: 1;
	transform: scale(1);
}

.ddl-pdf-choice {
	background: #f7faf8;
	border: 1px solid var(--ddl-border);
	border-radius: 14px;
	margin-top: 18px;
	padding: 16px;
}

.ddl-pdf-choice label {
	display: block;
	font-weight: 800;
	margin-bottom: 8px;
}

.ddl-pdf-choice select {
	background: #fff;
	border: 1px solid #b9c9bf;
	border-radius: 9px;
	font-size: 15px;
	max-width: 100%;
	padding: 11px 12px;
	width: 420px;
}

.ddl-consent {
	align-items: flex-start;
	color: var(--ddl-muted);
	display: flex;
	font-size: 13px;
	gap: 10px;
	line-height: 1.5;
	margin: 24px 0 16px;
}

.ddl-consent input {
	accent-color: var(--ddl-green-700);
	flex: 0 0 auto;
	height: 18px;
	margin-top: 2px;
	width: 18px;
}

.ddl-primary-button,
.ddl-download-button {
	align-items: center;
	background: var(--ddl-green-700);
	border: 0;
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(22, 120, 75, .2);
	color: #fff !important;
	cursor: pointer;
	display: inline-flex;
	font-size: 16px;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	min-height: 52px;
	padding: 15px 22px;
	text-decoration: none !important;
	transition: background .18s ease, transform .18s ease;
}

.ddl-primary-button {
	width: 100%;
}

.ddl-primary-button:hover,
.ddl-download-button:hover {
	background: var(--ddl-green-800);
	transform: translateY(-1px);
}

.ddl-small-note {
	color: var(--ddl-muted);
	font-size: 12px;
	line-height: 1.55;
	margin: 13px 0 0;
	text-align: center;
}

.ddl-alert,
.ddl-inline-error {
	border-radius: 13px;
	font-weight: 650;
	line-height: 1.5;
	padding: 14px 16px;
}

.ddl-alert-error,
.ddl-inline-error {
	background: #fff1f1;
	border: 1px solid #f2bcbc;
	color: #8b2424;
}

.ddl-inline-error {
	font-size: 13px;
	margin-bottom: 14px;
}

.ddl-status-card,
.ddl-upload-card {
	margin: 0 auto;
	max-width: 760px;
	text-align: center;
}

.ddl-status-card h2,
.ddl-upload-card h2 {
	font-size: clamp(24px, 4vw, 34px);
	letter-spacing: -.025em;
	margin: 14px 0 8px;
}

.ddl-status-card > p,
.ddl-upload-card > p {
	color: var(--ddl-muted);
	line-height: 1.65;
}

.ddl-spinner {
	animation: ddl-spin .85s linear infinite;
	border: 4px solid var(--ddl-green-100);
	border-radius: 50%;
	border-top-color: var(--ddl-green-700);
	height: 52px;
	margin: 0 auto;
	width: 52px;
}

@keyframes ddl-spin {
	to { transform: rotate(360deg); }
}

.ddl-success-mark {
	align-items: center;
	background: var(--ddl-green-100);
	border-radius: 50%;
	color: var(--ddl-green-800);
	display: flex;
	font-size: 27px;
	font-weight: 900;
	height: 62px;
	justify-content: center;
	margin: 0 auto;
	width: 62px;
}

.ddl-upload-service {
	color: var(--ddl-green-700) !important;
	font-weight: 800;
	margin-top: 0;
}

.ddl-drop-zone {
	align-items: center;
	background: var(--ddl-green-50);
	border: 2px dashed #86c9a5;
	border-radius: 18px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	margin: 24px 0 14px;
	padding: 34px 22px;
	transition: background .18s ease, border-color .18s ease;
}

.ddl-drop-zone:hover,
.ddl-drop-zone:focus-within {
	background: #eaf8f0;
	border-color: var(--ddl-green-700);
}

.ddl-drop-zone input {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.ddl-upload-icon {
	color: var(--ddl-green-700);
	font-size: 38px;
	line-height: 1;
	margin-bottom: 10px;
}

.ddl-drop-zone strong {
	font-size: 17px;
}

.ddl-drop-zone small {
	color: var(--ddl-muted);
	line-height: 1.5;
	margin-top: 6px;
}

.ddl-file-list {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin: 0 0 15px;
	text-align: left;
}

.ddl-file-list span {
	background: #f7faf8;
	border: 1px solid var(--ddl-border);
	border-radius: 9px;
	font-size: 13px;
	overflow: hidden;
	padding: 9px 11px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ddl-file-list small {
	color: var(--ddl-muted);
}

.ddl-progress {
	background: #e6eee9;
	border-radius: 999px;
	height: 11px;
	margin: 24px auto 14px;
	max-width: 520px;
	overflow: hidden;
}

.ddl-progress span {
	background: linear-gradient(90deg, var(--ddl-green-700), #55c986);
	border-radius: inherit;
	display: block;
	height: 100%;
	transition: width .2s ease;
}

.ddl-downloads {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 24px;
}

.ddl-status-card.is-error {
	border-color: #edc2c2;
}

.ddl-status-card.is-error h2 {
	color: #922b2b;
}

@media (max-width: 720px) {
	.ddl-conversor {
		margin-top: 12px;
		padding: 0 12px;
	}

	.ddl-hero {
		border-radius: 20px;
	}

	.ddl-tools-grid {
		grid-template-columns: 1fr;
	}

	.ddl-price-line {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
	}

	.ddl-tool-card {
		min-height: 98px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ddl-conversor *,
	.ddl-conversor *::before,
	.ddl-conversor *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}

	.ddl-spinner {
		animation-duration: 1.8s;
	}
}

