/*
 * Wholesale page styles.
 * Scoped to .zlz-ws-* so nothing here affects the footer trust bar or any
 * other page that happens to reuse similarly-named generic classes.
 */

/* ---------- Hero ---------- */

.zlz-ws-hero {
	background: var(--zlz-dark-bg);
	color: #fff;
	padding: 64px 0 56px;
	text-align: center;
}

.zlz-ws-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(242, 145, 43, 0.18);
	border: 1px solid rgba(242, 145, 43, 0.4);
	color: var(--zlz-accent-orange);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.3px;
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 18px;
}

.zlz-ws-hero h1 {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 14px;
}

.zlz-ws-hero p {
	font-size: 16px;
	color: #C9AEF7;
	max-width: 560px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.zlz-ws-hero { padding: 44px 0 36px; }
	.zlz-ws-hero h1 { font-size: 28px; }
	.zlz-ws-hero p { font-size: 14px; }
}

/* ---------- "Why partner" cards ---------- */

.zlz-ws-why {
	padding: 48px 0;
}

.zlz-ws-why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

@media (max-width: 768px) {
	.zlz-ws-why-grid { grid-template-columns: 1fr; }
}

.zlz-ws-why-card {
	background: #fff;
	border: 0.5px solid #E5E1ED;
	border-radius: 16px;
	padding: 24px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(31, 27, 46, 0.04);
}

.zlz-ws-why-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin: 0 auto 14px;
}

.zlz-ws-why-card:nth-child(1) .zlz-ws-why-card__icon { background: rgba(123, 63, 228, 0.12); }
.zlz-ws-why-card:nth-child(2) .zlz-ws-why-card__icon { background: rgba(242, 145, 43, 0.14); }
.zlz-ws-why-card:nth-child(3) .zlz-ws-why-card__icon { background: rgba(46, 196, 196, 0.14); }

.zlz-ws-why-card__title {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 4px;
}

.zlz-ws-why-card__sub {
	font-size: 13px;
	color: #6b6478;
}

/* ---------- How it works ---------- */

.zlz-ws-steps-section {
	background: #F7F5FA;
	padding: 48px 0;
}

.zlz-ws-section-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--zlz-primary);
	margin-bottom: 24px;
	text-align: center;
}

.zlz-ws-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

@media (max-width: 768px) {
	.zlz-ws-steps { grid-template-columns: repeat(2, 1fr); }
}

.zlz-ws-step {
	background: #fff;
	border-radius: 14px;
	padding: 20px 18px;
	border: 0.5px solid #E5E1ED;
}

.zlz-ws-step__number {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--zlz-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 12px;
}

.zlz-ws-step__title {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 4px;
}

.zlz-ws-step__desc {
	font-size: 12.5px;
	color: #6b6478;
	line-height: 1.5;
}

/* ---------- Application form ---------- */

.zlz-ws-form-section {
	padding: 56px 0;
}

.zlz-ws-form-card {
	max-width: 640px;
	margin: 0 auto;
	background: #fff;
	border: 0.5px solid #E5E1ED;
	border-radius: 20px;
	padding: 36px;
	box-shadow: 0 4px 24px rgba(31, 27, 46, 0.06);
}

@media (max-width: 768px) {
	.zlz-ws-form-card { padding: 24px 18px; border-radius: 16px; }
}

.zlz-ws-form-card h2 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 6px;
	text-align: center;
}

.zlz-ws-form-card > .zlz-text-secondary {
	text-align: center;
	margin-bottom: 28px;
	font-size: 13px;
}

.zlz-field {
	margin-bottom: 18px;
}

.zlz-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #271C2C;
	margin-bottom: 6px;
}

.zlz-field input,
.zlz-field select,
.zlz-field textarea {
	width: 100%;
	font-family: inherit;
	font-size: 14px;
	color: #271C2C;
	padding: 12px 14px;
	border: 1.5px solid #E5E1ED;
	border-radius: 10px;
	background: #fff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.zlz-field textarea {
	resize: vertical;
	min-height: 90px;
}

.zlz-field input:focus,
.zlz-field select:focus,
.zlz-field textarea:focus {
	outline: none;
	border-color: var(--zlz-primary);
	box-shadow: 0 0 0 3px rgba(123, 63, 228, 0.12);
}

.zlz-field select {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6478' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px;
	padding-right: 36px;
}

.zlz-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

@media (max-width: 600px) {
	.zlz-field-row { grid-template-columns: 1fr; }
}

.zlz-ws-form-card .zlz-btn--block {
	margin-top: 8px;
	font-size: 15px;
	padding: 15px 22px;
}

.zlz-form-footnote {
	text-align: center;
	margin-top: 12px;
}

.zlz-form-message {
	margin-top: 16px;
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 13px;
	text-align: center;
}

.zlz-form-message.is-success {
	background: rgba(46, 196, 196, 0.12);
	color: #1C7A6F;
}

.zlz-form-message.is-error {
	background: rgba(242, 88, 88, 0.1);
	color: #B23A3A;
}

/* ---------- WhatsApp CTA ---------- */

.zlz-whatsapp-cta {
	max-width: 640px;
	margin: 0 auto 56px;
	background: rgba(37, 211, 102, 0.08);
	border: 1px solid rgba(37, 211, 102, 0.25);
	border-radius: 16px;
	padding: 22px 24px;
	text-align: center;
}

.zlz-whatsapp-cta p {
	font-size: 14px;
	color: #271C2C;
	margin-bottom: 14px;
}

.zlz-whatsapp-cta .zlz-btn {
	display: inline-flex;
}
