/**
 * ZHUUZH Guide Landing V1
 */

.zhuuzh-guide-landing {
	--zg-blue: #123b78;
	--zg-blue-dark: #092653;
	--zg-blue-light: #eaf1fa;
	--zg-gold: #b9944a;
	--zg-ink: #172033;
	--zg-muted: #667085;
	--zg-line: #dbe3ee;
	--zg-surface: #f6f8fb;
	--zg-white: #ffffff;
	--zg-radius: 22px;
	--zg-shadow: 0 18px 50px rgba(9, 38, 83, 0.09);

	direction: rtl;
	background: var(--zg-white);
	color: var(--zg-ink);
	overflow: hidden;
}

.zhuuzh-guide-landing *,
.zhuuzh-guide-landing *::before,
.zhuuzh-guide-landing *::after {
	box-sizing: border-box;
}

.zhuuzh-guide-landing h1,
.zhuuzh-guide-landing h2,
.zhuuzh-guide-landing h3,
.zhuuzh-guide-landing p {
	margin-top: 0;
}

.zg-container {
	width: min(1180px, calc(100% - 48px));
	margin-inline: auto;
}

.zg-section {
	padding: 100px 0;
}

.zg-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 18px;
	color: var(--zg-gold);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.zg-eyebrow::before {
	width: 30px;
	height: 2px;
	background: currentColor;
	content: "";
}

/* Hero */

.zg-hero {
	position: relative;
	padding: 92px 0 82px;
	background:
		radial-gradient(circle at 10% 15%, rgba(185, 148, 74, 0.13), transparent 28%),
		linear-gradient(135deg, #f9fbfe 0%, #eef4fb 100%);
}

.zg-hero::after {
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--zg-line), transparent);
	content: "";
}

.zg-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
	align-items: center;
	gap: 70px;
}

.zg-hero h1 {
	max-width: 720px;
	margin-bottom: 24px;
	color: var(--zg-blue-dark);
	font-size: clamp(40px, 5vw, 68px);
	font-weight: 800;
	line-height: 1.35;
}

.zg-hero__content > p {
	max-width: 690px;
	margin-bottom: 30px;
	color: var(--zg-muted);
	font-size: 18px;
	line-height: 2;
}

.zg-search {
	display: flex;
	max-width: 680px;
	margin-bottom: 24px;
	padding: 7px;
	border: 1px solid var(--zg-line);
	border-radius: 15px;
	background: var(--zg-white);
	box-shadow: 0 12px 35px rgba(9, 38, 83, 0.08);
}

.zg-search input {
	flex: 1;
	min-width: 0;
	height: 52px;
	padding: 0 18px;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--zg-ink);
	font: inherit;
}

.zg-search button {
	min-width: 112px;
	border: 0;
	border-radius: 11px;
	background: var(--zg-blue);
	color: var(--zg-white);
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.zg-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* Buttons */

.zg-button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	padding: 12px 25px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-weight: 700;
	text-decoration: none !important;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.zg-button:hover {
	transform: translateY(-2px);
}

.zg-button--primary {
	background: var(--zg-blue);
	color: var(--zg-white) !important;
	box-shadow: 0 10px 25px rgba(18, 59, 120, 0.18);
}

.zg-button--primary:hover {
	background: var(--zg-blue-dark);
}

.zg-button--secondary {
	border-color: var(--zg-blue);
	background: transparent;
	color: var(--zg-blue) !important;
}

/* Image placeholders */

.zg-image-placeholder {
	position: relative;
	display: flex;
	aspect-ratio: 4 / 3;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px;
	border: 2px dashed rgba(18, 59, 120, 0.34);
	border-radius: var(--zg-radius);
	background:
		linear-gradient(135deg, rgba(18, 59, 120, 0.04), rgba(185, 148, 74, 0.08)),
		repeating-linear-gradient(
			45deg,
			transparent 0,
			transparent 18px,
			rgba(18, 59, 120, 0.025) 18px,
			rgba(18, 59, 120, 0.025) 19px
		);
	color: var(--zg-blue);
	text-align: center;
}

.zg-image-placeholder::before {
	display: block;
	width: 54px;
	height: 42px;
	margin-bottom: 20px;
	border: 2px solid currentColor;
	border-radius: 7px;
	content: "";
	opacity: 0.55;
}

.zg-image-placeholder strong {
	margin-bottom: 9px;
	color: var(--zg-blue-dark);
	font-size: 16px;
	letter-spacing: 0.06em;
}

.zg-image-placeholder span {
	margin-bottom: 5px;
	font-weight: 700;
}

.zg-image-placeholder small {
	color: var(--zg-muted);
}

.zg-image-placeholder--hero {
	aspect-ratio: 16 / 11;
	box-shadow: var(--zg-shadow);
}

.zg-image-placeholder--wide {
	aspect-ratio: 12 / 5;
}

/* Section headings */

.zg-section-heading {
	max-width: 720px;
	margin: 0 auto 50px;
	text-align: center;
}

.zg-section-heading .zg-eyebrow {
	justify-content: center;
}

.zg-section-heading h2,
.zg-split__content h2,
.zg-international__content h2,
.zg-support-box h2 {
	margin-bottom: 18px;
	color: var(--zg-blue-dark);
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 800;
	line-height: 1.45;
}

.zg-section-heading p,
.zg-split__content p,
.zg-international__content p,
.zg-support-box p {
	color: var(--zg-muted);
	font-size: 17px;
	line-height: 1.95;
}

/* Path cards */

.zg-section--paths {
	background: var(--zg-white);
}

.zg-path-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.zg-path-card {
	position: relative;
	min-height: 315px;
	padding: 34px 28px;
	border: 1px solid var(--zg-line);
	border-radius: 18px;
	background: var(--zg-white);
	box-shadow: 0 10px 35px rgba(9, 38, 83, 0.05);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.zg-path-card:hover {
	transform: translateY(-6px);
	border-color: rgba(185, 148, 74, 0.65);
	box-shadow: var(--zg-shadow);
}

.zg-card-number {
	display: block;
	margin-bottom: 42px;
	color: var(--zg-gold);
	font-size: 13px;
	font-weight: 800;
}

.zg-path-card h3 {
	margin-bottom: 15px;
	color: var(--zg-blue-dark);
	font-size: 24px;
	font-weight: 800;
}

.zg-path-card p {
	margin-bottom: 24px;
	color: var(--zg-muted);
	line-height: 1.9;
}

.zg-path-card a,
.zg-text-link {
	color: var(--zg-blue);
	font-weight: 800;
	text-decoration: none;
}

.zg-path-card a::after,
.zg-text-link::after {
	margin-right: 8px;
	content: "←";
}

/* Split sections */

.zg-section--trust,
.zg-section--seller {
	background: var(--zg-surface);
}

.zg-split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	gap: 80px;
}

.zg-split--reverse .zg-split__content {
	order: 1;
}

.zg-split--reverse .zg-image-placeholder {
	order: 2;
}

.zg-split__content > p {
	margin-bottom: 26px;
}

.zg-check-list {
	display: grid;
	margin: 0 0 30px;
	padding: 0;
	gap: 13px;
	list-style: none;
}

.zg-check-list li {
	position: relative;
	padding-right: 30px;
	color: var(--zg-ink);
}

.zg-check-list li::before {
	position: absolute;
	top: 5px;
	right: 0;
	display: grid;
	width: 19px;
	height: 19px;
	place-items: center;
	border-radius: 50%;
	background: rgba(185, 148, 74, 0.17);
	color: var(--zg-gold);
	content: "✓";
	font-size: 12px;
	font-weight: 900;
}

/* Knowledge */

.zg-knowledge-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.zg-knowledge-card {
	display: flex;
	min-height: 205px;
	flex-direction: column;
	padding: 28px;
	border: 1px solid var(--zg-line);
	border-radius: 17px;
	background: var(--zg-white);
	color: var(--zg-ink);
	text-decoration: none !important;
	transition: background 180ms ease, transform 180ms ease, color 180ms ease;
}

.zg-knowledge-card:hover {
	transform: translateY(-4px);
	background: var(--zg-blue);
	color: var(--zg-white);
}

.zg-knowledge-card span {
	margin-bottom: auto;
	color: var(--zg-gold);
	font-size: 13px;
	font-weight: 800;
}

.zg-knowledge-card strong {
	margin: 30px 0 8px;
	font-size: 22px;
}

.zg-knowledge-card small {
	color: var(--zg-muted);
	line-height: 1.8;
}

.zg-knowledge-card:hover small {
	color: rgba(255, 255, 255, 0.76);
}

/* International */

.zg-section--international {
	background: var(--zg-blue-dark);
}

.zg-section--international .zg-image-placeholder {
	border-color: rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.06);
	color: var(--zg-white);
}

.zg-section--international .zg-image-placeholder strong {
	color: var(--zg-white);
}

.zg-section--international .zg-image-placeholder small {
	color: rgba(255, 255, 255, 0.68);
}

.zg-international__content {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	align-items: end;
	margin-top: 42px;
	gap: 50px;
}

.zg-international__content h2,
.zg-international__content p {
	color: var(--zg-white);
}

.zg-international__content .zg-text-link {
	color: #e1bf78;
}

/* Support */

.zg-support-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 58px;
	border: 1px solid var(--zg-line);
	border-radius: var(--zg-radius);
	background:
		linear-gradient(120deg, var(--zg-white), var(--zg-blue-light));
	box-shadow: var(--zg-shadow);
	gap: 40px;
}

.zg-support-box p {
	margin-bottom: 0;
}

/* Responsive */

@media (max-width: 1024px) {
	.zg-hero__grid,
	.zg-split {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.zg-path-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.zg-knowledge-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.zg-split--reverse .zg-split__content,
	.zg-split--reverse .zg-image-placeholder {
		order: initial;
	}

	.zg-image-placeholder--hero {
		max-width: 720px;
		width: 100%;
		margin-inline: auto;
	}
}

@media (max-width: 700px) {
	.zg-container {
		width: min(100% - 30px, 1180px);
	}

	.zg-section {
		padding: 70px 0;
	}

	.zg-hero {
		padding: 62px 0;
	}

	.zg-hero h1 {
		font-size: 37px;
	}

	.zg-hero__content > p {
		font-size: 16px;
	}

	.zg-search {
		flex-direction: column;
	}

	.zg-search button {
		min-height: 48px;
	}

	.zg-path-grid,
	.zg-knowledge-grid,
	.zg-international__content {
		grid-template-columns: 1fr;
	}

	.zg-path-card {
		min-height: auto;
	}

	.zg-support-box {
		align-items: stretch;
		flex-direction: column;
		padding: 34px 25px;
	}

	.zg-support-box .zg-button {
		width: 100%;
	}

	.zg-image-placeholder--wide {
		aspect-ratio: 4 / 3;
	}
}
/* Landing V1 refinements */

/* حذف پس‌زمینه خاکستری و محدودیت عرض Astra */
body.page-id-26083 {
	background: #ffffff !important;
}

body.page-id-26083 .site-content {
	background: #ffffff !important;
}

body.page-id-26083 .site-content > .ast-container {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

/* پس‌زمینه روشن و ظریف Hero */
.zg-hero {
	background:
		radial-gradient(
			circle at 12% 18%,
			rgba(185, 148, 74, 0.10),
			transparent 26%
		),
		radial-gradient(
			circle at 88% 78%,
			rgba(18, 59, 120, 0.06),
			transparent 30%
		),
		linear-gradient(
			135deg,
			#ffffff 0%,
			#f8fbff 55%,
			#f3f7fc 100%
		);
}

/* بزرگ‌تر کردن اعداد ۱ تا ۴ */
.zg-card-number {
	display: block;
	margin-bottom: 28px;
	color: rgba(185, 148, 74, 0.92);
	font-size: clamp(58px, 5vw, 82px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
}

/* تأکید بیشتر روی کارت‌ها */
.zg-path-card {
	overflow: hidden;
	background:
		linear-gradient(
			145deg,
			#ffffff 0%,
			#ffffff 70%,
			rgba(234, 241, 250, 0.65) 100%
		);
}

.zg-path-card:hover .zg-card-number {
	color: var(--zg-blue);
	transform: translateY(-3px);
}

.zg-card-number {
	transition: color 180ms ease, transform 180ms ease;
}

@media (max-width: 700px) {
	.zg-card-number {
		font-size: 62px;
	}
}
/* ==================================================
   ZHUUZH Guide Header — Landing Preview
   Scoped to page 26083
   ================================================== */

.page-id-26083 .site-header {
	position: relative;
	z-index: 100;
	background: #ffffff;
}

.page-id-26083 .ast-primary-header-bar {
	border-bottom: 1px solid rgba(18, 59, 120, 0.10);
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 8px 30px rgba(9, 38, 83, 0.05);
}

.page-id-26083 .site-primary-header-wrap {
	width: min(1380px, calc(100% - 40px));
	max-width: none;
	margin-inline: auto;
	padding-inline: 0;
}

.page-id-26083 .site-primary-header-wrap .ast-builder-grid-row {
	min-height: 92px;
	grid-template-columns: auto minmax(0, 1fr);
	column-gap: 34px;
}

/* Logo */

.page-id-26083 .site-branding {
	padding: 8px 0;
}

.page-id-26083 .site-logo-img,
.page-id-26083 .custom-logo-link {
	display: flex;
	align-items: center;
}

.page-id-26083 .custom-logo {
	width: auto;
	max-width: 96px;
	max-height: 76px;
	object-fit: contain;
}

/* Navigation */

.page-id-26083 .site-header-primary-section-right {
	min-width: 0;
	justify-content: flex-start;
}

.page-id-26083 .ast-builder-menu-1,
.page-id-26083 .ast-main-header-bar-alignment,
.page-id-26083 .main-header-bar-navigation,
.page-id-26083 #primary-site-navigation-desktop {
	width: 100%;
}

.page-id-26083 #ast-hf-menu-1 {
	width: 100%;
	align-items: center;
	justify-content: flex-start;
	gap: 2px;
	flex-wrap: nowrap;
}

.page-id-26083 #ast-hf-menu-1 > .menu-item > .menu-link {
	position: relative;
	display: flex;
	height: 92px;
	align-items: center;
	padding: 0 12px;
	color: #24324a;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	transition: color 180ms ease;
}

.page-id-26083 #ast-hf-menu-1 > .menu-item > .menu-link::before {
	position: absolute;
	right: 12px;
	bottom: 20px;
	left: 12px;
	height: 2px;
	border-radius: 10px;
	background: var(--zg-gold);
	content: "";
	opacity: 0;
	transform: scaleX(0);
	transition: opacity 180ms ease, transform 180ms ease;
}

.page-id-26083 #ast-hf-menu-1 > .menu-item:hover > .menu-link,
.page-id-26083 #ast-hf-menu-1 > .current-menu-item > .menu-link,
.page-id-26083 #ast-hf-menu-1 > .current-menu-ancestor > .menu-link {
	color: var(--zg-blue);
}

.page-id-26083 #ast-hf-menu-1 > .menu-item:hover > .menu-link::before,
.page-id-26083 #ast-hf-menu-1 > .current-menu-item > .menu-link::before,
.page-id-26083 #ast-hf-menu-1 > .current-menu-ancestor > .menu-link::before {
	opacity: 1;
	transform: scaleX(1);
}

/* Dropdown menus */

.page-id-26083 #ast-hf-menu-1 .sub-menu {
	min-width: 285px;
	padding: 12px;
	border: 1px solid rgba(18, 59, 120, 0.10);
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 22px 55px rgba(9, 38, 83, 0.14);
}

.page-id-26083 #ast-hf-menu-1 .sub-menu .menu-link {
	min-height: 43px;
	padding: 10px 14px;
	border-radius: 9px;
	color: #344054;
	font-size: 13px;
	line-height: 1.6;
}

.page-id-26083 #ast-hf-menu-1 .sub-menu .menu-link:hover {
	background: var(--zg-blue-light);
	color: var(--zg-blue);
}

/* دو ستونه برای منوهای بزرگ */

.page-id-26083 #menu-item-25456 > .sub-menu,
.page-id-26083 #menu-item-26027 > .sub-menu,
.page-id-26083 #menu-item-25955 > .sub-menu {
	width: 590px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 3px 10px;
}

.page-id-26083 #menu-item-25456:hover > .sub-menu,
.page-id-26083 #menu-item-26027:hover > .sub-menu,
.page-id-26083 #menu-item-25955:hover > .sub-menu {
	display: grid;
}

/* Marketplace CTA */

.page-id-26083 #menu-item-25333 {
	margin-right: auto;
}

.page-id-26083 #menu-item-25333 > .menu-link {
	height: 46px !important;
	margin-right: 10px;
	padding: 0 20px !important;
	border-radius: 11px;
	background: var(--zg-blue);
	color: #ffffff !important;
	box-shadow: 0 9px 22px rgba(18, 59, 120, 0.18);
}

.page-id-26083 #menu-item-25333 > .menu-link::before {
	display: none;
}

.page-id-26083 #menu-item-25333 > .menu-link:hover {
	background: var(--zg-blue-dark);
	transform: translateY(-1px);
}

/* Tablet and mobile */

@media (max-width: 1180px) {
	.page-id-26083 #ast-hf-menu-1 > .menu-item > .menu-link {
		padding-inline: 8px;
		font-size: 13px;
	}

	.page-id-26083 .custom-logo {
		max-width: 82px;
	}
}

@media (max-width: 921px) {
	.page-id-26083 .site-primary-header-wrap .ast-builder-grid-row {
		min-height: 76px;
	}

	.page-id-26083 .custom-logo {
		max-width: 76px;
		max-height: 62px;
	}

	.page-id-26083 .ast-mobile-header-wrap .ast-primary-header-bar {
		min-height: 76px;
	}

	.page-id-26083 .ast-mobile-popup-content .menu-link,
	.page-id-26083 .ast-header-break-point .main-navigation .menu-link {
		font-size: 15px;
		font-weight: 600;
	}

	.page-id-26083 #menu-item-25333 {
		margin: 12px 18px;
	}

	.page-id-26083 #menu-item-25333 > .menu-link {
		justify-content: center;
		margin: 0;
	}
}

/* Header critical fixes V1.3 */

body.page-id-26083 {
	--zg-blue: #123b78;
	--zg-blue-dark: #092653;
	background: #ffffff !important;
}

body.page-id-26083 #content,
body.page-id-26083 .site-content,
body.page-id-26083 #primary {
	margin: 0 !important;
	padding: 0 !important;
}

body.page-id-26083 .site-content > .ast-container {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.page-id-26083 .zg-hero {
	padding-top: 62px !important;
}

body.page-id-26083 #menu-item-25333 > a.menu-link {
	display: flex !important;
	min-width: 150px !important;
	height: 48px !important;
	align-items: center !important;
	justify-content: center !important;
	margin-right: 12px !important;
	padding: 0 20px !important;
	border: 1px solid #123b78 !important;
	border-radius: 11px !important;
	background-color: #123b78 !important;
	color: #ffffff !important;
	opacity: 1 !important;
	visibility: visible !important;
}

body.page-id-26083 #menu-item-25333 > a.menu-link:hover {
	background-color: #092653 !important;
	color: #ffffff !important;
}
/* ZHUUZH Guide V1 curated mega menu */

/* دکمه ورود به بازارگاه در منوی جدید */
body.page-id-26083 #menu-item-26086 {
	margin-right: auto;
}

body.page-id-26083 #menu-item-26086 > a.menu-link {
	display: flex !important;
	min-width: 150px;
	height: 48px !important;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
	padding: 0 20px !important;
	border: 1px solid #123b78 !important;
	border-radius: 11px;
	background: #123b78 !important;
	color: #ffffff !important;
	box-shadow: 0 9px 22px rgba(18, 59, 120, 0.20);
}

body.page-id-26083 #menu-item-26086 > a.menu-link::before {
	display: none !important;
}

body.page-id-26083 #menu-item-26086 > a.menu-link:hover {
	background: #092653 !important;
	color: #ffffff !important;
}

/* مگامنوی دو ستونه در دسکتاپ */
@media (min-width: 922px) {
	body.page-id-26083 #menu-item-26084 > .sub-menu,
	body.page-id-26083 #menu-item-26087 > .sub-menu,
	body.page-id-26083 #menu-item-26085 > .sub-menu,
	body.page-id-26083 #menu-item-26088 > .sub-menu {
		width: 590px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 4px 10px;
		padding: 16px;
	}

	body.page-id-26083 #menu-item-26084:hover > .sub-menu,
	body.page-id-26083 #menu-item-26087:hover > .sub-menu,
	body.page-id-26083 #menu-item-26085:hover > .sub-menu,
	body.page-id-26083 #menu-item-26088:hover > .sub-menu {
		display: grid;
	}

	body.page-id-26083 #menu-item-26089 > .sub-menu,
	body.page-id-26083 #menu-item-26090 > .sub-menu,
	body.page-id-26083 #menu-item-26091 > .sub-menu {
		width: 310px;
	}
}

/* موبایل */
@media (max-width: 921px) {
	body.page-id-26083 #menu-item-26086 {
		margin: 14px 18px;
	}

	body.page-id-26083 #menu-item-26086 > a.menu-link {
		width: 100%;
		margin: 0;
	}

	body.page-id-26083 #ast-hf-menu-1 .sub-menu {
		width: 100% !important;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}
}
/* ==================================================
   ZHUUZH Guide Custom Footer V1
   ================================================== */

/* مخفی‌کردن فوتر قدیمی فقط در لندینگ */
body.page-id-26083 footer#colophon {
	display: none !important;
}

/* Footer foundation */

.zg-footer {
	position: relative;
	padding: 78px 0 0;
	overflow: hidden;
	background:
		radial-gradient(
			circle at 12% 20%,
			rgba(185, 148, 74, 0.16),
			transparent 27%
		),
		radial-gradient(
			circle at 90% 85%,
			rgba(79, 125, 190, 0.18),
			transparent 30%
		),
		linear-gradient(135deg, #092653 0%, #123b78 100%);
	color: #ffffff;
}

.zg-footer::before {
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(
			45deg,
			transparent 0,
			transparent 32px,
			rgba(255, 255, 255, 0.018) 32px,
			rgba(255, 255, 255, 0.018) 33px
		);
	content: "";
	pointer-events: none;
}

.zg-footer .zg-container {
	position: relative;
	z-index: 1;
}

.zg-footer__grid {
	display: grid;
	grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(150px, 1fr));
	padding-bottom: 62px;
	gap: 58px;
}

/* Brand */

.zg-footer__logo {
	display: inline-flex;
	margin-bottom: 24px;
}

.zg-footer__logo-image {
	width: auto;
	max-width: 105px;
	max-height: 88px;
	filter: brightness(0) invert(1);
	object-fit: contain;
}

.zg-footer__brand h2 {
	margin-bottom: 15px;
	color: #ffffff;
	font-size: 25px;
	font-weight: 800;
}

.zg-footer__brand > p {
	max-width: 390px;
	margin-bottom: 25px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 2;
}

.zg-footer__brand-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.zg-footer__brand-links a {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	padding: 8px 15px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.06);
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease;
}

.zg-footer__brand-links a:hover {
	border-color: #d6b66e;
	background: rgba(185, 148, 74, 0.18);
	color: #ffffff;
}

/* Columns */

.zg-footer__column h3 {
	position: relative;
	margin: 10px 0 25px;
	padding-bottom: 13px;
	color: #ffffff;
	font-size: 17px;
	font-weight: 800;
}

.zg-footer__column h3::after {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 34px;
	height: 2px;
	border-radius: 5px;
	background: #c8a45d;
	content: "";
}

.zg-footer__column ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.zg-footer__column li {
	margin-bottom: 12px;
}

.zg-footer__column a {
	position: relative;
	display: inline-flex;
	padding-right: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.7;
	text-decoration: none;
	transition: color 180ms ease, padding-right 180ms ease;
}

.zg-footer__column a::before {
	position: absolute;
	top: 10px;
	right: 0;
	width: 0;
	height: 1px;
	background: #d6b66e;
	content: "";
	transition: width 180ms ease;
}

.zg-footer__column a:hover {
	padding-right: 16px;
	color: #ffffff;
}

.zg-footer__column a:hover::before {
	width: 9px;
}

/* Bottom bar */

.zg-footer__bottom {
	display: flex;
	min-height: 75px;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	gap: 30px;
}

.zg-footer__bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 12px;
}

.zg-footer__bottom > div {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
}

.zg-footer__bottom a {
	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
	text-decoration: none;
}

.zg-footer__bottom a:hover {
	color: #ffffff;
}

/* Tablet */

@media (max-width: 1024px) {
	.zg-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 48px;
	}
}

/* Mobile */

@media (max-width: 650px) {
	.zg-footer {
		padding-top: 58px;
	}

	.zg-footer__grid {
		grid-template-columns: 1fr;
		padding-bottom: 42px;
		gap: 35px;
	}

	.zg-footer__brand {
		text-align: center;
	}

	.zg-footer__brand > p {
		margin-inline: auto;
	}

	.zg-footer__brand-links {
		justify-content: center;
	}

	.zg-footer__column {
		text-align: center;
	}

	.zg-footer__column h3::after {
		right: 50%;
		transform: translateX(50%);
	}

	.zg-footer__bottom {
		flex-direction: column;
		justify-content: center;
		padding: 23px 0;
		text-align: center;
	}

	.zg-footer__bottom > div {
		justify-content: center;
		gap: 14px;
	}
}



/* Real Landing Images V1 */
.zg-landing-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(18, 59, 120, 0.18);
    border-radius: var(--zg-radius);
    background: #f5f8fc;
    box-shadow: 0 20px 44px rgba(8, 47, 99, 0.10);
}

.zg-landing-image--hero {
    aspect-ratio: 16 / 9;
}

.zg-landing-image--wide {
    aspect-ratio: 12 / 5;
}

.zg-landing-image__element {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 767px) {
    .zg-landing-image,
    .zg-landing-image--hero,
    .zg-landing-image--wide {
        aspect-ratio: 4 / 3;
        border-radius: 18px;
    }
}