/* ==============================
   Vazir Font – Ultra Light
============================== */
@font-face {
	font-family: "Vazir";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/Vazir-Regular.woff2") format("woff2");
}

@font-face {
	font-family: "Vazir";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/Vazir-Bold.woff2") format("woff2");
}

/* ==============================
   Root Landing
============================== */
.dzpl-landing {
	--bg: #f6f2f4;
	--card: #ffffff;
	--text: #2b2b2b;
	--muted: #5c5c5c;
	--accent: #c75b7a;
	--border: #e8dfe3;

	font-family: "Vazir", Tahoma, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.8;
	padding: 2rem 1rem;
	max-width: 720px;
	margin: 0 auto;
}

/* Reset scoped */
.dzpl-landing * {
	box-sizing: border-box;
	font-family: inherit;
}

/* Card */
.dzpl-inner {
	background: var(--card);
	border-radius: 14px;
	padding: 2rem;
	border: 1px solid var(--border);
}

/* Headings */
.dzpl-hero-title {
	margin: 0 0 1rem;
	font-size: 26px;
	font-weight: 700;
	text-align: center;
	color: var(--accent);
}

.dzpl-intro-lead {
	font-weight: 600;
	margin-bottom: .5rem;
}

.dzpl-intro {
	color: var(--muted);
	text-align: justify;
}

/* Video */
.dzpl-video-shell {
	border-radius: 12px;
	overflow: hidden;
	background: #000;
	margin-bottom: 1.5rem;
}

.dzpl-video-ratio {
	position: relative;
	padding-bottom: 56.25%;
}

.dzpl-video-ratio iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ==============================
   Form
============================== */
.dzpl-form-wrap {
	border-top: 1px solid var(--border);
	padding-top: 1.5rem;
}

.dzpl-form-heading {
	text-align: center;
	font-weight: 700;
	margin-bottom: 1rem;
}

.dzpl-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .75rem;
}

/* موبایل کوتاه‌تر */
.dzpl-input {
	padding: .8rem 1rem;
	border-radius: 10px;
	border: 1px solid var(--border);
	font-size: 1rem;
	width: 100%;
	max-width: 260px;
	text-align: center;
}

/* دکمه هم اندازه فیلد */
.dzpl-submit {
	background: linear-gradient(160deg, #c75b7a, #a84463);
	color: #fff;
	border: 0;
	border-radius: 10px;
	padding: .9rem;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	width: 100%;
	max-width: 260px;
}

/* ==============================
   Success Modal
============================== */
.dzpl-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	animation: dzpl-fadeIn 0.3s ease;
}

.dzpl-modal--closing {
	animation: dzpl-fadeOut 0.3s ease;
}

.dzpl-modal-content {
	background: #fff;
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	max-width: 90%;
	width: 360px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	animation: dzpl-slideUp 0.3s ease;
}

.dzpl-modal--closing .dzpl-modal-content {
	animation: dzpl-slideDown 0.3s ease;
}

.dzpl-modal-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1rem;
	display: block;
}

.dzpl-modal-circle {
	stroke: #4caf50;
	stroke-width: 2;
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	animation: dzpl-drawCircle 0.6s ease forwards;
}

.dzpl-modal-check {
	stroke: #4caf50;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	animation: dzpl-drawCheck 0.4s 0.3s ease forwards;
}

.dzpl-modal-text {
	font-size: 16px;
	color: #2b2b2b;
	margin: 0;
	line-height: 1.6;
}

/* Animations */
@keyframes dzpl-fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes dzpl-fadeOut {
	from { opacity: 1; }
	to { opacity: 0; }
}

@keyframes dzpl-slideUp {
	from {
		transform: translateY(30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes dzpl-slideDown {
	from {
		transform: translateY(0);
		opacity: 1;
	}
	to {
		transform: translateY(30px);
		opacity: 0;
	}
}

@keyframes dzpl-drawCircle {
	to { stroke-dashoffset: 0; }
}

@keyframes dzpl-drawCheck {
	to { stroke-dashoffset: 0; }
}

.dzpl-intro-image{
    text-align:center;
    margin:25px 0;
}

.dzpl-intro-image img{
    max-width:100%;
    height:auto;
    display:block;
    margin:0 auto;
    border-radius:12px;
}
