:root {
	--sakn-bg: #f3f5f7;
	--sakn-surface: #ffffff;
	--sakn-text: #112034;
	--sakn-muted: #66758a;
	--sakn-accent: #1f8f61;
	--sakn-accent-dark: #156b48;
	--sakn-accent-soft: #35b27d;
	--sakn-navy-strong: #08152b;
	--sakn-navy-soft: #0f1d36;
	--sakn-navy-panel: #12223f;
	--sakn-ink-light: #d8e3f0;
	--sakn-border: #d9e0e7;
	--sakn-shadow: 0 20px 60px rgba(17, 32, 52, 0.08);
	--sakn-radius: 24px;
	--sakn-radius-sm: 16px;
	--sakn-container: 1180px;
	--sakn-font-ar: "Noto Kufi Arabic", "Segoe UI", sans-serif;
	--sakn-font-en: "Manrope", "Segoe UI", sans-serif;
	--sakn-font: var(--sakn-font-en);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: linear-gradient(180deg, #f8fafb 0%, #eff3f6 100%);
	color: var(--sakn-text);
	font-family: var(--sakn-font);
	font-size: 15px;
	line-height: 1.6;
}

body.sakn-lang-ar {
	--sakn-font: var(--sakn-font-ar);
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

input,
select,
textarea,
button {
	font: inherit;
}

.container {
	width: min(calc(100% - 2rem), var(--sakn-container));
	margin-inline: auto;
}

.narrow-container {
	width: min(calc(100% - 2rem), 820px);
	margin-inline: auto;
}

.section {
	padding: 4rem 0;
}

.section--muted {
	background: rgba(255, 255, 255, 0.66);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(18px);
	background: rgba(8, 20, 39, 0.88);
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.8rem 0;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	font-weight: 700;
	font-size: 0.88rem;
}

.site-brand__mark {
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--sakn-accent);
	font-size: 0.78rem;
}

.site-nav__menu,
.footer-links,
.dashboard-nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-nav__menu {
	display: flex;
	gap: 1rem;
	align-items: center;
	font-size: 0.88rem;
}

.site-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.site-nav-toggle {
	display: none;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
}

.site-nav-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	background: #fff;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	padding: 0.72rem 1.15rem;
	background: var(--sakn-accent);
	color: #fff;
	font-weight: 700;
	font-size: 0.86rem;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
	box-shadow: 0 14px 30px rgba(31, 143, 97, 0.2);
}

.button--ghost {
	background: transparent;
	color: inherit;
	border: 1px solid rgba(255, 255, 255, 0.24);
	box-shadow: none;
}

.button:hover {
	transform: translateY(-1px);
	background: var(--sakn-accent-soft);
}

.button--ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.38);
}

.lang-switcher {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-switcher__icon {
	display: inline-flex;
	width: 1rem;
	height: 1rem;
	color: rgba(255, 255, 255, 0.74);
}

.lang-switcher__link {
	padding: 0.36rem 0.62rem;
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.72rem;
	font-weight: 700;
}

.lang-switcher__link.is-active {
	background: #fff;
	color: #081427;
}

.button--block {
	width: 100%;
}

.hero {
	padding: 5rem 0 4rem;
}

.hero--map {
	padding: 4rem 0 3rem;
	background:
		radial-gradient(circle at top left, rgba(31, 143, 97, 0.18), transparent 28%),
		linear-gradient(135deg, #07111f 0%, #0b1932 46%, #091427 100%);
	color: #fff;
	overflow: hidden;
}

.hero__grid,
.hero-map,
.archive-layout,
.property-single,
.dashboard-layout,
.site-footer__grid {
	display: grid;
	gap: 1.5rem;
}

.hero__grid {
	grid-template-columns: 1.2fr 0.9fr;
	align-items: center;
}

.hero-map {
	grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
	align-items: center;
	gap: 2.5rem;
}

.hero-map__content h1 {
	font-size: clamp(2.1rem, 5vw, 3.9rem);
	line-height: 1.04;
	margin: 0 0 0.85rem;
	max-width: 10ch;
}

.hero-map__content p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.78);
	max-width: 54ch;
	font-size: 0.95rem;
}

.hero__content h1 {
	font-size: clamp(2.5rem, 5vw, 4.4rem);
	line-height: 1.05;
	margin: 0 0 1rem;
	max-width: 12ch;
}

.eyebrow {
	margin: 0 0 0.65rem;
	color: var(--sakn-accent);
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hero__search,
.search-panel,
.property-card,
.dashboard-card,
.sticky-card,
.profile-card,
.empty-state,
.post-card,
.pricing-card {
	background: var(--sakn-surface);
	border: 1px solid rgba(217, 224, 231, 0.7);
	border-radius: var(--sakn-radius);
	box-shadow: var(--sakn-shadow);
}

.map-region-list {
	display: grid;
	gap: 0.9rem;
	margin-top: 1.5rem;
}

.map-region-list__item {
	display: grid;
	gap: 0.25rem;
	text-align: start;
	padding: 0.8rem 0.95rem;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.045);
	color: rgba(233, 240, 248, 0.78);
	cursor: pointer;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
	font-size: 0.82rem;
}

.map-region-list__item strong {
	color: #fff;
	font-size: 0.95rem;
}

.map-region-list__item.is-active,
.map-region-list__item:hover {
	transform: translateY(-2px);
	background: linear-gradient(135deg, rgba(31, 143, 97, 0.18), rgba(255, 255, 255, 0.08));
	border-color: rgba(53, 178, 125, 0.95);
	box-shadow: 0 14px 30px rgba(9, 20, 39, 0.24);
}

.egypt-map-card {
	position: relative;
	min-height: 560px;
	border-radius: 36px;
	background:
		radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 55%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.egypt-map-card__stage {
	position: relative;
	height: 100%;
	min-height: 560px;
}

.egypt-map-card__dots {
	position: absolute;
	inset: 5% 6% 8%;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.28) 1.8px, transparent 2px);
	background-size: 16px 16px;
	mask-image: radial-gradient(circle at center, black 45%, transparent 84%);
	opacity: 0.5;
}

.egypt-map-card__svg {
	position: absolute;
	inset: 3% 7% 4%;
	width: 86%;
	height: 90%;
}

.egypt-map-card__shape {
	fill: rgba(255, 255, 255, 0.08);
	stroke: rgba(255, 255, 255, 0.32);
	stroke-width: 10;
	stroke-linejoin: round;
}

.egypt-map-card__coast {
	fill: none;
	stroke: rgba(255, 255, 255, 0.6);
	stroke-width: 12;
	stroke-linecap: round;
	stroke-dasharray: 1 18;
}

.egypt-map-card__pin {
	position: absolute;
	width: 26px;
	height: 26px;
	margin: -13px 0 0 -13px;
	border-radius: 50%;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.egypt-map-card__pin span,
.egypt-map-card__pin::before,
.egypt-map-card__pin::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
}

.egypt-map-card__pin span {
	background: #fff;
	box-shadow: 0 0 0 8px rgba(31, 143, 97, 0.22);
}

.egypt-map-card__pin::before {
	border: 1px solid rgba(255, 255, 255, 0.4);
	transform: scale(1.9);
}

.egypt-map-card__pin.is-active span {
	background: var(--sakn-accent);
	box-shadow: 0 0 0 12px rgba(31, 143, 97, 0.18);
}

.egypt-map-card__tooltip {
	position: absolute;
	inset-inline-start: 15%;
	bottom: 14%;
	display: grid;
	gap: 0.45rem;
	max-width: 230px;
	padding: 0.85rem 0.95rem;
	border-radius: 20px;
	background: #ffffff;
	color: var(--sakn-text);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
	font-size: 0.8rem;
}

.egypt-map-card__tooltip a {
	color: var(--sakn-accent-dark);
	font-weight: 700;
}

.section--search {
	padding-top: 0.4rem;
	margin-top: -1.2rem;
}

.search-shell {
	padding: 1.25rem;
	border-radius: 28px;
	background:
		radial-gradient(circle at top right, rgba(53, 178, 125, 0.08), transparent 30%),
		linear-gradient(135deg, var(--sakn-navy-strong) 0%, var(--sakn-navy-soft) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 28px 70px rgba(8, 20, 39, 0.2);
}

.section-heading {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 1rem;
	margin-bottom: 1rem;
}

.section-heading h2 {
	margin: 0;
	font-size: 1.3rem;
	line-height: 1.45;
}

.search-panel,
.dashboard-card,
.sticky-card,
.pricing-card {
	padding: 1.5rem;
}

.section--search .search-panel {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.85rem 1rem;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.section--search .search-panel label {
	margin-bottom: 0;
}

.section--search .search-panel label span {
	color: rgba(226, 236, 246, 0.82);
	font-size: 0.76rem;
}

.section--search .search-panel input,
.section--search .search-panel select {
	padding: 0.78rem 0;
	border: 0;
	border-bottom: 1px solid rgba(182, 201, 225, 0.22);
	border-radius: 0;
	background: transparent;
	color: #fff;
	font-size: 0.92rem;
	transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.section--search .search-panel input::placeholder {
	color: rgba(187, 201, 218, 0.46);
}

.section--search .search-panel select {
	background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.72) 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.72) 50%, transparent 50%);
}

.section--search .search-panel input:hover,
.section--search .search-panel select:hover {
	border-bottom-color: rgba(83, 209, 152, 0.52);
}

.section--search .search-panel input:focus,
.section--search .search-panel select:focus {
	outline: none;
	border-bottom-color: var(--sakn-accent-soft);
	box-shadow: inset 0 -1px 0 var(--sakn-accent-soft);
}

.section--search .search-panel__split {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section--search .search-panel > label:first-child,
.section--search .search-panel > label:last-of-type {
	grid-column: span 2;
}

.section--search .checkbox-row {
	align-items: end;
	padding-bottom: 0.78rem;
	border-bottom: 1px solid rgba(182, 201, 225, 0.22);
	color: rgba(226, 236, 246, 0.82);
	transition: border-color 180ms ease, color 180ms ease;
}

.section--search .checkbox-row:hover {
	border-bottom-color: rgba(83, 209, 152, 0.52);
	color: #fff;
}

.section--search .button {
	align-self: end;
	min-height: 46px;
	background: linear-gradient(135deg, var(--sakn-accent) 0%, var(--sakn-accent-soft) 100%);
	box-shadow: 0 18px 36px rgba(31, 143, 97, 0.24);
}

.section--search .button:hover {
	background: linear-gradient(135deg, var(--sakn-accent-soft) 0%, #42c28c 100%);
}

.form-intro h2 {
	margin: 0 0 0.45rem;
	font-size: 1.35rem;
}

.form-intro p {
	margin: 0 0 1rem;
	color: var(--sakn-muted);
}

.search-panel label,
.form-stack label {
	display: grid;
	gap: 0.4rem;
	margin-bottom: 1rem;
}

.search-panel input,
.search-panel select,
.form-stack input,
.form-stack select,
.form-stack textarea {
	border: 1px solid var(--sakn-border);
	border-radius: 14px;
	padding: 0.9rem 1rem;
	background: #fff;
}

.search-panel select,
.form-stack select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #66758a 50%), linear-gradient(135deg, #66758a 50%, transparent 50%);
	background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

.search-panel__split,
.form-grid,
.property-grid,
.profile-grid,
.pricing-grid,
.spec-grid {
	display: grid;
	gap: 1rem;
}

.property-grid,
.profile-grid,
.pricing-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.property-card__image {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: var(--sakn-radius) var(--sakn-radius) 0 0;
	aspect-ratio: 4 / 3;
}

.property-card__image img,
.profile-card__image img,
.property-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.property-card__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #d7e0e7, #f6f8fa);
}

.badge {
	position: absolute;
	top: 1rem;
	inset-inline-start: 1rem;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	background: rgba(17, 32, 52, 0.9);
	color: #fff;
	font-size: 0.85rem;
}

.badge--featured {
	background: var(--sakn-accent);
}

.property-card__body,
.profile-card__body,
.post-card {
	padding: 1.25rem;
}

.property-card {
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.property-card:hover {
	transform: translateY(-4px);
	border-color: rgba(31, 143, 97, 0.22);
	box-shadow: 0 22px 44px rgba(17, 32, 52, 0.12);
}

.property-card__price,
.pricing-card__price {
	font-weight: 800;
	font-size: 1.05rem;
	color: var(--sakn-text);
}

.property-card__title {
	margin: 0.35rem 0 0.45rem;
	font-size: 1rem;
	line-height: 1.5;
}

.property-card__meta,
.property-meta,
.site-footer,
.footer-links a,
.post-card p {
	color: var(--sakn-muted);
	font-size: 0.82rem;
}

.property-card__title a:hover,
.footer-links a:hover {
	color: var(--sakn-accent-dark);
}

.property-card__specs,
.property-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	font-size: 0.76rem;
}

.archive-layout {
	grid-template-columns: 320px minmax(0, 1fr);
	align-items: start;
}

.property-single {
	grid-template-columns: minmax(0, 1.6fr) 380px;
	align-items: start;
}

.property-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin: 1.5rem 0;
}

.sticky-card {
	position: sticky;
	top: 6.5rem;
}

.dashboard-layout {
	grid-template-columns: 280px minmax(0, 1fr);
}

.dashboard-panel {
	position: sticky;
	top: 6rem;
	align-self: start;
	padding: 1.25rem;
	background: #112034;
	color: #fff;
	border-radius: var(--sakn-radius);
}

.dashboard-nav li + li {
	margin-top: 0.75rem;
}

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

.site-footer {
	padding: 3rem 0;
	background: #112034;
	color: #fff;
	font-size: 0.9rem;
}

.site-footer__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checkbox-row {
	display: flex !important;
	align-items: center;
	gap: 0.75rem;
}

body.sakn-lang-ar .site-header__inner,
body.sakn-lang-ar .site-actions,
body.sakn-lang-ar .property-card__specs,
body.sakn-lang-ar .property-meta {
	flex-direction: row-reverse;
}

.home-premium {
	background:
		radial-gradient(circle at top, rgba(31, 143, 97, 0.08), transparent 18%),
		linear-gradient(180deg, #f8fbfd 0%, #f2f6fa 100%);
}

.home-hero {
	position: relative;
	padding: 3rem 0 8rem;
	background: linear-gradient(180deg, #071320 0%, #09192d 50%, #0c1b30 100%);
	overflow: hidden;
}

.home-hero__backdrop {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(7, 19, 32, 0.94) 0%, rgba(7, 19, 32, 0.76) 45%, rgba(7, 19, 32, 0.86) 100%),
		radial-gradient(circle at 20% 18%, rgba(53, 178, 125, 0.18), transparent 28%),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='900' viewBox='0 0 1600 900'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1'%3E%3Cstop stop-color='%23081427'/%3E%3Cstop offset='1' stop-color='%23111f34'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1600' height='900' fill='url(%23g)'/%3E%3Cg fill='none' stroke='rgba(255,255,255,0.06)'%3E%3Cpath d='M0 740h1600'/%3E%3Cpath d='M0 620h1600'/%3E%3Cpath d='M0 500h1600'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
}

.home-hero__container,
.command-center,
.trust-layer,
.market-intelligence,
.alerts-section,
.why-sakn-band {
	position: relative;
	z-index: 1;
}

.hero-premium-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
	gap: 2rem;
	align-items: center;
}

.hero-premium-copy {
	color: #fff;
}

.hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 1rem;
	color: #9dd9bd;
	font-size: 0.85rem;
	font-weight: 700;
}

.hero-kicker__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #38c98b;
	box-shadow: 0 0 16px rgba(56, 201, 139, 0.7);
}

.hero-premium-copy h1 {
	margin: 0 0 1rem;
	font-size: clamp(2.8rem, 5vw, 5rem);
	line-height: 1.02;
	max-width: 8ch;
}

.hero-premium-copy > p {
	margin: 0;
	max-width: 56ch;
	color: rgba(229, 238, 244, 0.82);
	font-size: 1rem;
}

.hero-ai-search {
	margin-top: 1.6rem;
	padding: 1rem;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(18px);
	box-shadow: 0 28px 80px rgba(1, 10, 20, 0.3);
}

.hero-ai-search__input {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.9rem 1rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-ai-search__icon {
	font-size: 1rem;
	color: #90e1ba;
}

.hero-ai-search__input input {
	flex: 1;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 1rem;
}

.hero-ai-search__input input::placeholder {
	color: rgba(215, 227, 239, 0.6);
}

.hero-ai-search__input input:focus {
	outline: none;
}

.hero-ai-search__voice {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.hero-ai-search__actions,
.hero-market-strip,
.hero-trust-row,
.property-card__eyebrow,
.property-card__footer,
.property-card__actions,
.section-heading--split,
.market-grid,
.alerts-shell,
.social-proof-grid,
.why-sakn-band,
.why-sakn-band__stats,
.command-center__quick {
	display: flex;
}

.hero-ai-search__actions {
	margin-top: 0.9rem;
	gap: 0.75rem;
}

.hero-ai-search__status {
	min-height: 1.25rem;
	margin-top: 0.7rem;
	color: rgba(213, 227, 239, 0.76);
	font-size: 0.78rem;
}

.hero-ai-search__status.is-error {
	color: #ffb0b0;
}

.hero-ai-search__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 0.9rem;
}

.search-chip,
.inline-chip {
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.07);
	color: #dce6f0;
	padding: 0.55rem 0.8rem;
	border-radius: 999px;
	font-size: 0.8rem;
	transition: 180ms ease;
}

.search-chip:hover,
.inline-chip:hover {
	background: rgba(53, 178, 125, 0.16);
	border-color: rgba(53, 178, 125, 0.3);
	color: #fff;
}

.hero-market-strip {
	gap: 0.8rem;
	margin-top: 1.15rem;
	flex-wrap: wrap;
}

.hero-market-chip {
	padding: 0.7rem 0.85rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: grid;
	gap: 0.2rem;
}

.hero-market-chip strong {
	font-size: 0.82rem;
}

.hero-market-chip span {
	font-size: 0.78rem;
	color: rgba(228, 236, 243, 0.74);
}

.hero-premium-map {
	display: flex;
	justify-content: center;
}

.hero-map-panel {
	position: relative;
	width: 100%;
	min-height: 620px;
	border-radius: 34px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.hero-map-panel__grid,
.hero-map-panel__glow {
	position: absolute;
	inset: 0;
}

.hero-map-panel__grid {
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
	background-size: 18px 18px;
	opacity: 0.35;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 95%);
}

.hero-map-panel__glow {
	background: radial-gradient(circle at 36% 42%, rgba(53, 178, 125, 0.22), transparent 22%);
}

.hero-map-panel__svg {
	position: absolute;
	inset: 5% 12% 10%;
	width: 76%;
	height: 82%;
}

.hero-map-panel__shape {
	fill: rgba(255, 255, 255, 0.05);
	stroke: rgba(201, 217, 230, 0.56);
	stroke-width: 8;
}

.hero-map-panel__route {
	fill: none;
	stroke: rgba(130, 224, 177, 0.55);
	stroke-width: 4;
	stroke-dasharray: 5 12;
}

.hero-hotspot {
	position: absolute;
	width: 28px;
	height: 28px;
	margin: -14px 0 0 -14px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.hero-hotspot span,
.hero-hotspot::before,
.hero-hotspot::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
}

.hero-hotspot span {
	background: #a8ffd1;
	box-shadow: 0 0 0 10px rgba(53, 178, 125, 0.18);
}

.hero-hotspot::before {
	inset: -6px;
	border: 1px solid rgba(184, 255, 222, 0.34);
}

.hero-hotspot::after {
	animation: saknPulse 2.8s ease infinite;
	border: 1px solid rgba(56, 201, 139, 0.35);
}

.hero-hotspot.is-active span {
	background: #38c98b;
}

@keyframes saknPulse {
	0% { transform: scale(1); opacity: 0.8; }
	100% { transform: scale(2.2); opacity: 0; }
}

.hero-map-tooltip {
	position: absolute;
	inset-inline-end: 3rem;
	top: 10rem;
	display: grid;
	gap: 0.35rem;
	max-width: 250px;
	padding: 1rem 1.1rem;
	border-radius: 22px;
	background: rgba(10, 25, 42, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(14px);
	color: #fff;
}

.hero-map-tooltip__eyebrow {
	margin: 0;
	color: #9dd9bd;
	font-size: 0.72rem;
}

.hero-map-tooltip strong {
	font-size: 1rem;
}

.hero-map-tooltip span {
	font-size: 1.15rem;
	font-weight: 800;
}

.hero-map-tooltip em {
	font-style: normal;
	color: rgba(220, 230, 240, 0.74);
	font-size: 0.8rem;
}

.hero-map-tooltip a {
	color: #8fe0b8;
	font-size: 0.8rem;
	font-weight: 700;
}

.hero-trust-row {
	margin-top: 1.5rem;
	gap: 1rem;
	flex-wrap: wrap;
}

.trust-stat {
	flex: 1 1 180px;
	padding: 1rem 1.1rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	color: #fff;
	display: grid;
	gap: 0.2rem;
}

.trust-stat strong {
	font-size: 1.45rem;
}

.trust-stat span {
	font-weight: 700;
}

.trust-stat small {
	color: rgba(221, 231, 240, 0.68);
}

.command-center {
	margin-top: -5rem;
	padding-bottom: 1rem;
}

.command-center__panel {
	padding: 1.35rem;
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.76);
	backdrop-filter: blur(28px);
	box-shadow: 0 28px 80px rgba(7, 19, 32, 0.15);
}

.command-center__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.command-center__head h2 {
	margin: 0;
	font-size: 1.25rem;
}

.command-center__toggle,
.section-link {
	border: 0;
	background: transparent;
	color: var(--sakn-accent-dark);
	font-weight: 700;
	font-size: 0.85rem;
}

.command-center__quick {
	align-items: center;
	gap: 0.55rem;
	flex-wrap: wrap;
	margin-top: 1rem;
	color: var(--sakn-muted);
	font-size: 0.82rem;
}

.command-center__filters {
	margin-top: 1rem;
}

.command-center__filters.is-collapsed .search-panel__advanced {
	display: none;
}

.search-panel__primary {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.85rem 1rem;
}

.search-panel__advanced {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem 1rem;
	margin-top: 0.85rem;
}

.feature-trust-grid,
.property-grid--premium,
.market-grid__metrics,
.area-card-grid,
.agent-showcase,
.alerts-list,
.testimonials-list {
	display: grid;
	gap: 1rem;
}

.feature-trust-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-feature {
	padding: 1.2rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(214, 223, 232, 0.8);
	box-shadow: 0 18px 42px rgba(17, 32, 52, 0.06);
}

.trust-feature__icon {
	width: 52px;
	height: 52px;
	border-radius: 18px;
	margin-bottom: 0.9rem;
	background: linear-gradient(135deg, rgba(31, 143, 97, 0.18), rgba(7, 26, 46, 0.08));
	position: relative;
}

.trust-feature__icon::before,
.trust-feature__icon::after {
	content: "";
	position: absolute;
	inset: 50%;
	transform: translate(-50%, -50%);
}

.trust-feature__icon--shield::before { width: 18px; height: 22px; border: 2px solid #1f8f61; border-radius: 8px 8px 10px 10px; }
.trust-feature__icon--pulse::before { width: 22px; height: 2px; background: #1f8f61; box-shadow: 0 0 0 1px rgba(31, 143, 97, 0.2); }
.trust-feature__icon--map::before { width: 22px; height: 18px; border: 2px solid #1f8f61; transform: translate(-50%, -50%) skew(-10deg); }
.trust-feature__icon--compare::before { width: 20px; height: 20px; border-left: 2px solid #1f8f61; border-right: 2px solid #1f8f61; }
.trust-feature__icon--bolt::before { width: 12px; height: 22px; background: linear-gradient(180deg, #1f8f61 0%, #35b27d 100%); clip-path: polygon(50% 0, 100% 0, 60% 45%, 100% 45%, 18% 100%, 38% 58%, 0 58%); }

.trust-feature h3 {
	margin: 0 0 0.5rem;
	font-size: 1rem;
}

.trust-feature p {
	margin: 0;
	color: var(--sakn-muted);
	font-size: 0.86rem;
}

.property-grid--premium {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.property-card--premium {
	position: relative;
	border-radius: 28px;
	background: #fff;
	border: 1px solid rgba(219, 226, 234, 0.9);
	box-shadow: 0 20px 42px rgba(17, 32, 52, 0.08);
	overflow: hidden;
}

.property-card__media {
	position: relative;
}

.property-card__image {
	aspect-ratio: 16 / 11;
}

.property-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(7, 26, 46, 0.44) 100%);
}

.property-card__topbar {
	position: absolute;
	inset: 1rem 1rem auto 1rem;
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 0.75rem;
}

.property-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.badge--verified {
	background: rgba(7, 26, 46, 0.84);
}

.property-card__actions {
	gap: 0.4rem;
}

.property-card__actions button {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(7, 26, 46, 0.52);
	color: #fff;
}

.property-card__scorebar {
	position: absolute;
	inset-inline: 1rem;
	bottom: 1rem;
	display: flex;
	justify-content: space-between;
	gap: 0.55rem;
	flex-wrap: wrap;
}

.property-card__scorebar span {
	padding: 0.42rem 0.7rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #0b1831;
	font-size: 0.72rem;
	font-weight: 700;
}

.property-card__body {
	padding: 1rem;
}

.property-card__eyebrow {
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.45rem;
	font-size: 0.72rem;
	color: var(--sakn-muted);
}

.property-card__insight-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
	margin-top: 0.85rem;
}

.property-card__insight-grid div {
	padding: 0.7rem;
	border-radius: 16px;
	background: #f6f9fb;
}

.property-card__insight-grid small {
	display: block;
	margin-bottom: 0.2rem;
	color: var(--sakn-muted);
	font-size: 0.68rem;
}

.property-card__insight-grid strong {
	font-size: 0.84rem;
}

.property-card__footer {
	align-items: center;
	justify-content: space-between;
	gap: 0.9rem;
	margin-top: 0.9rem;
}

.property-card__agent {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.property-card__agent-avatar {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0d2644, #1f8f61);
	color: #fff;
	font-weight: 800;
}

.property-card__agent strong,
.property-card__trust strong {
	display: block;
	font-size: 0.76rem;
}

.property-card__agent span,
.property-card__trust span {
	color: var(--sakn-muted);
	font-size: 0.68rem;
}

.property-card__trust {
	text-align: end;
}

.market-grid {
	gap: 1rem;
	align-items: stretch;
}

.market-grid__metrics {
	flex: 0 0 420px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.market-metric,
.market-chart,
.area-card,
.agent-spotlight,
.alert-card,
.testimonial-card,
.activity-panel {
	background: #fff;
	border: 1px solid rgba(219, 226, 234, 0.86);
	box-shadow: 0 20px 40px rgba(17, 32, 52, 0.06);
}

.market-metric {
	padding: 1rem;
	border-radius: 22px;
}

.market-metric p,
.market-metric span {
	margin: 0;
	color: var(--sakn-muted);
	font-size: 0.8rem;
}

.market-metric strong {
	display: block;
	margin: 0.35rem 0;
	font-size: 1.2rem;
}

.market-chart {
	flex: 1;
	padding: 1.25rem;
	border-radius: 28px;
	background: linear-gradient(180deg, #09182c 0%, #0d2037 100%);
	color: #fff;
}

.market-chart__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.market-chart__header h3 {
	margin: 0;
}

.market-chart__header span {
	color: rgba(221, 230, 239, 0.7);
	font-size: 0.8rem;
}

.market-bars {
	margin-top: 1rem;
	display: grid;
	gap: 0.85rem;
}

.market-bar__label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.35rem;
	font-size: 0.82rem;
}

.market-bar__track {
	height: 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.market-bar__track span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #1f8f61 0%, #8df0bd 100%);
}

.area-card-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.area-card {
	position: relative;
	border-radius: 30px;
	min-height: 280px;
	overflow: hidden;
	padding: 1.2rem;
	color: #fff;
}

.area-card__bg {
	position: absolute;
	inset: 0;
	opacity: 0.95;
}

.area-card--teal .area-card__bg { background: linear-gradient(135deg, #0b223d 0%, #145b52 100%); }
.area-card--gold .area-card__bg { background: linear-gradient(135deg, #16253d 0%, #6d5b2c 100%); }
.area-card--blue .area-card__bg { background: linear-gradient(135deg, #0c2448 0%, #205a83 100%); }

.area-card__content {
	position: relative;
	z-index: 1;
}

.area-card__content h3 {
	margin: 0 0 0.35rem;
	font-size: 1.2rem;
}

.area-card__content > p {
	margin: 0 0 1rem;
	color: rgba(232, 240, 247, 0.8);
}

.area-card__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.8rem;
}

.area-card__stats div {
	padding: 0.8rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
}

.area-card__stats span {
	display: block;
	font-size: 0.72rem;
	color: rgba(233, 239, 245, 0.74);
}

.area-card__stats strong {
	display: block;
	margin-top: 0.2rem;
	font-size: 0.95rem;
}

.agent-showcase {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.agent-spotlight {
	padding: 1.1rem;
	border-radius: 26px;
	display: flex;
	gap: 1rem;
}

.agent-spotlight__avatar {
	flex: 0 0 72px;
	width: 72px;
	height: 72px;
	border-radius: 22px;
	overflow: hidden;
	background: linear-gradient(135deg, #0e2644, #1f8f61);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 1.8rem;
	font-weight: 800;
}

.agent-spotlight__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.agent-spotlight__body {
	flex: 1;
}

.agent-spotlight__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.agent-spotlight__badges span {
	padding: 0.35rem 0.55rem;
	border-radius: 999px;
	background: #f2f6fa;
	color: var(--sakn-accent-dark);
	font-size: 0.68rem;
	font-weight: 700;
}

.agent-spotlight__body h3 {
	margin: 0.55rem 0 0.35rem;
}

.agent-spotlight__body p {
	margin: 0;
	color: var(--sakn-muted);
	font-size: 0.84rem;
}

.agent-spotlight__meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.6rem;
	margin-top: 0.9rem;
}

.agent-spotlight__meta div {
	padding: 0.7rem;
	border-radius: 14px;
	background: #f7fafc;
}

.agent-spotlight__meta strong {
	display: block;
	font-size: 0.88rem;
}

.agent-spotlight__meta span {
	color: var(--sakn-muted);
	font-size: 0.7rem;
}

.alerts-shell {
	padding: 1.4rem;
	gap: 1rem;
	border-radius: 30px;
	background: linear-gradient(135deg, #08182d 0%, #0d2139 100%);
	color: #fff;
	align-items: stretch;
}

.alerts-copy {
	flex: 0 0 360px;
}

.alerts-copy h2 {
	margin: 0 0 0.8rem;
	font-size: 1.8rem;
}

.alerts-copy p:last-of-type {
	color: rgba(227, 236, 244, 0.78);
}

.alerts-list {
	flex: 1;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.alert-card {
	padding: 1rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.alert-card h3 {
	margin: 0 0 0.4rem;
	font-size: 1rem;
}

.alert-card p {
	margin: 0;
	font-size: 0.82rem;
	color: rgba(225, 233, 241, 0.74);
}

.social-proof-grid {
	gap: 1rem;
	align-items: stretch;
}

.testimonials-panel,
.activity-panel {
	flex: 1;
}

.testimonials-list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 1rem;
}

.testimonial-card,
.activity-panel {
	padding: 1.2rem;
	border-radius: 26px;
	margin: 0;
}

.testimonial-card p {
	margin: 0 0 1rem;
	font-size: 0.9rem;
}

.testimonial-card footer {
	display: grid;
	gap: 0.15rem;
}

.testimonial-card footer span {
	color: var(--sakn-muted);
	font-size: 0.76rem;
}

.activity-feed {
	display: grid;
	gap: 0.9rem;
	padding: 0;
	margin: 1rem 0 0;
	list-style: none;
}

.activity-feed li {
	padding: 0.95rem 1rem;
	border-radius: 18px;
	background: #f7fafc;
	color: var(--sakn-text);
	font-size: 0.84rem;
}

.why-sakn-band {
	padding: 1.5rem;
	border-radius: 34px;
	background: linear-gradient(135deg, #08182d 0%, #0c2340 100%);
	color: #fff;
	align-items: center;
	gap: 1.4rem;
}

.why-sakn-band__stats {
	flex: 1;
	gap: 1rem;
	flex-wrap: wrap;
}

.why-sakn-band__orb {
	flex: 1 1 150px;
	padding: 1.2rem 0.8rem;
	border-radius: 999px;
	background: radial-gradient(circle at center, rgba(53, 178, 125, 0.22), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
}

.why-sakn-band__orb strong {
	display: block;
	font-size: 1.5rem;
}

.why-sakn-band__orb span {
	font-size: 0.8rem;
	color: rgba(224, 234, 242, 0.78);
}

.why-sakn-band__copy {
	flex: 0 0 320px;
}

.why-sakn-band__copy h2 {
	margin: 0 0 0.65rem;
	font-size: 1.8rem;
}

.why-sakn-band__copy p {
	margin: 0 0 1rem;
	color: rgba(225, 234, 242, 0.76);
}

.floating-lead-cta {
	position: fixed;
	inset-inline-end: 1rem;
	bottom: 1rem;
	display: grid;
	gap: 0.45rem;
	z-index: 30;
}

.floating-lead-cta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 130px;
	padding: 0.78rem 0.95rem;
	border-radius: 999px;
	background: rgba(7, 26, 46, 0.92);
	color: #fff;
	box-shadow: 0 18px 40px rgba(9, 19, 35, 0.22);
	font-size: 0.8rem;
	font-weight: 700;
}

.floating-lead-cta a:first-child {
	background: linear-gradient(135deg, #1f8f61 0%, #35b27d 100%);
}

@media (max-width: 960px) {
	.hero__grid,
	.hero-map,
	.archive-layout,
	.property-single,
	.dashboard-layout,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.property-grid,
	.profile-grid,
	.pricing-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-header__inner,
	.site-actions {
		flex-wrap: wrap;
	}

	.section--search .search-panel {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.section--search .search-panel > label:first-child,
	.section--search .search-panel > label:last-of-type,
	.section--search .search-panel__split,
	.section--search .button {
		grid-column: 1 / -1;
	}

	.site-nav-toggle {
		display: inline-block;
	}

	.site-nav {
		width: 100%;
		display: none;
		order: 4;
		padding-top: 0.75rem;
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__menu {
		flex-direction: column;
		align-items: stretch;
		padding: 1rem;
		border-radius: 20px;
		background: rgba(255, 255, 255, 0.06);
	}

	.site-actions {
		margin-inline-start: auto;
	}

	.egypt-map-card,
	.egypt-map-card__stage {
		min-height: 460px;
	}

	.hero-premium-grid,
	.market-grid,
	.alerts-shell,
	.social-proof-grid,
	.why-sakn-band {
		flex-direction: column;
		display: flex;
	}

	.hero-premium-grid {
		display: grid;
		grid-template-columns: 1fr;
	}

	.feature-trust-grid,
	.property-grid--premium,
	.area-card-grid,
	.agent-showcase,
	.alerts-list,
	.testimonials-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.market-grid__metrics {
		flex: auto;
	}

	.hero-map-tooltip {
		inset-inline-end: 1.25rem;
		top: auto;
		bottom: 1.25rem;
	}
}

@media (max-width: 640px) {
	.property-grid,
	.profile-grid,
	.pricing-grid,
	.spec-grid,
	.form-grid,
	.search-panel__split,
	.property-gallery {
		grid-template-columns: 1fr;
	}

	.site-nav__menu {
		flex-wrap: wrap;
	}

	.site-actions {
		width: 100%;
		justify-content: space-between;
	}

	.lang-switcher {
		order: -1;
	}

	.hero {
		padding-top: 3rem;
	}

	.hero-map__content h1 {
		max-width: none;
		font-size: 2.45rem;
	}

	.egypt-map-card,
	.egypt-map-card__stage {
		min-height: 360px;
	}

	.egypt-map-card__tooltip {
		inset-inline-start: 1rem;
		inset-inline-end: 1rem;
		bottom: 1rem;
		max-width: none;
	}

	.section-heading h2 {
		font-size: 1.08rem;
	}

	.section--search .search-shell {
		padding: 1rem;
	}

	.hero-premium-copy h1 {
		font-size: 2.4rem;
	}

	.hero-map-panel {
		min-height: 420px;
	}

	.hero-map-panel__svg {
		inset: 7% 12% 16%;
		width: 76%;
		height: 72%;
	}

	.hero-trust-row,
	.hero-ai-search__actions,
	.why-sakn-band__stats {
		flex-direction: column;
	}

	.feature-trust-grid,
	.property-grid--premium,
	.area-card-grid,
	.agent-showcase,
	.alerts-list,
	.testimonials-list,
	.agent-spotlight__meta {
		grid-template-columns: 1fr;
	}

	.command-center__head,
	.property-card__footer,
	.hero-market-strip,
	.section-heading--split {
		flex-direction: column;
		align-items: start;
	}

	.hero-map-tooltip,
	.why-sakn-band__copy,
	.alerts-copy {
		max-width: none;
		width: 100%;
	}

	.floating-lead-cta {
		inset-inline: 1rem;
	}

	.floating-lead-cta a {
		width: 100%;
	}
}

.property-premium {
	padding-bottom: 8rem;
	background:
		radial-gradient(circle at top, rgba(31, 143, 97, 0.12), transparent 26%),
		linear-gradient(180deg, #f7fafc 0%, #eef3f7 100%);
}

.property-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
	gap: 2rem;
	align-items: start;
}

.property-shell__main,
.property-shell__sidebar {
	min-width: 0;
}

.property-shell__sidebar {
	width: 100%;
}

.property-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-bottom: 1.2rem;
	color: var(--sakn-muted);
	font-size: 0.82rem;
}

.property-breadcrumb i {
	font-style: normal;
	opacity: 0.45;
}

.property-topbar,
.property-section-card,
.lead-sticky-panel {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(8, 21, 43, 0.07);
	box-shadow: 0 24px 80px rgba(7, 26, 46, 0.08);
	backdrop-filter: blur(22px);
}

.property-topbar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
	gap: 1.25rem;
	padding: 1.5rem;
	border-radius: 28px;
	margin-bottom: 1.25rem;
	align-items: start;
}

.property-topbar__copy {
	min-width: 0;
}

.property-topbar__badges,
.property-topbar__meta,
.property-topbar__actions,
.lead-sticky-panel__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.48rem 0.9rem;
	border-radius: 999px;
	font-size: 0.74rem;
	font-weight: 700;
}

.pill--verified,
.pill--deal {
	color: #fff;
	background: linear-gradient(135deg, #17a36e, #27c07f);
}

.pill--dark {
	color: #f2f6fb;
	background: rgba(7, 26, 46, 0.92);
}

.pill--gold {
	color: #8f5c00;
	background: linear-gradient(135deg, rgba(255, 215, 140, 0.94), rgba(255, 241, 196, 0.96));
}

.pill--light {
	color: var(--sakn-accent-dark);
	background: rgba(31, 143, 97, 0.1);
}

.property-topbar h1 {
	margin: 0.85rem 0 0.65rem;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1.12;
	letter-spacing: -0.03em;
}

.property-topbar__meta {
	color: var(--sakn-muted);
	font-size: 0.84rem;
}

.property-topbar__meta span::before {
	content: "";
	display: inline-block;
	width: 0.35rem;
	height: 0.35rem;
	margin-inline-end: 0.45rem;
	border-radius: 50%;
	background: rgba(31, 143, 97, 0.42);
}

.property-topbar__pricing {
	display: grid;
	align-content: start;
	gap: 0.5rem;
	min-width: 0;
	text-align: end;
	justify-items: end;
}

.property-topbar__pricing strong {
	font-size: clamp(1.7rem, 2.6vw, 2.55rem);
	line-height: 1;
	color: var(--sakn-navy-strong);
}

.property-topbar__pricing span {
	color: var(--sakn-muted);
	font-weight: 600;
}

.ghost-icon-button,
.gallery-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1rem;
	border-radius: 999px;
	border: 1px solid rgba(8, 21, 43, 0.09);
	background: rgba(255, 255, 255, 0.82);
	color: var(--sakn-navy-strong);
	font-weight: 700;
	cursor: pointer;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ghost-icon-button:hover,
.gallery-action:hover,
.ghost-icon-button:focus-visible,
.gallery-action:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(31, 143, 97, 0.28);
	background: rgba(31, 143, 97, 0.08);
	box-shadow: 0 14px 36px rgba(7, 26, 46, 0.1);
}

.property-gallery-premium {
	display: grid;
	gap: 0.9rem;
	margin-bottom: 1.2rem;
}

.property-gallery-premium__main {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	border-radius: 30px;
	background:
		linear-gradient(180deg, rgba(7, 26, 46, 0) 50%, rgba(7, 26, 46, 0.8) 100%),
		linear-gradient(135deg, rgba(7, 26, 46, 0.96), rgba(15, 29, 54, 0.94));
	box-shadow: 0 28px 90px rgba(7, 26, 46, 0.18);
}

.property-gallery-premium__hero-image,
.property-gallery-premium__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.property-gallery-premium__placeholder {
	background:
		radial-gradient(circle at 20% 20%, rgba(31, 143, 97, 0.18), transparent 24%),
		linear-gradient(145deg, rgba(10, 25, 44, 0.96), rgba(21, 40, 70, 0.88));
}

.property-gallery-premium__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1rem;
	background: linear-gradient(180deg, rgba(7, 26, 46, 0.05), rgba(7, 26, 46, 0.5));
}

.property-gallery-premium__counter {
	align-self: flex-start;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	background: rgba(7, 26, 46, 0.58);
	color: #fff;
	font-weight: 700;
	backdrop-filter: blur(14px);
}

.property-gallery-premium__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.gallery-action {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.18);
	color: #fff;
	backdrop-filter: blur(12px);
}

.property-gallery-premium__thumbs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.8rem;
}

.property-thumb {
	position: relative;
	overflow: hidden;
	padding: 0;
	border: 0;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 12px 32px rgba(7, 26, 46, 0.08);
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.property-thumb img,
.property-thumb__placeholder {
	width: 100%;
	height: 100px;
	object-fit: cover;
}

.property-thumb__placeholder {
	display: block;
	background: linear-gradient(135deg, rgba(12, 29, 52, 0.92), rgba(31, 143, 97, 0.32));
}

.property-thumb.is-active {
	transform: translateY(-3px);
	box-shadow: 0 18px 42px rgba(31, 143, 97, 0.18);
	outline: 2px solid rgba(31, 143, 97, 0.5);
}

.property-quick-facts,
.property-intelligence-grid,
.detail-icon-grid,
.nearby-grid,
.social-proof-row,
.agent-premium-card__stats {
	display: grid;
	gap: 1rem;
}

.property-quick-facts {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	margin-bottom: 1.2rem;
}

.property-quick-facts div {
	padding: 1rem 1.1rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(8, 21, 43, 0.06);
	box-shadow: 0 14px 44px rgba(7, 26, 46, 0.06);
}

.property-quick-facts small,
.detail-icon-card small,
.social-proof-card span,
.lead-sticky-panel__meta small,
.agent-premium-card__stats span,
.mortgage-results small {
	display: block;
	color: var(--sakn-muted);
}

.property-quick-facts strong,
.detail-icon-card strong,
.social-proof-card strong,
.lead-sticky-panel__meta strong,
.agent-premium-card__stats strong,
.mortgage-results strong {
	display: block;
	margin-top: 0.4rem;
	font-size: 1.08rem;
}

.property-intelligence-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 1.2rem;
}

.intel-card {
	padding: 1.3rem;
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 253, 0.92));
	border: 1px solid rgba(8, 21, 43, 0.06);
	box-shadow: 0 18px 52px rgba(7, 26, 46, 0.06);
}

.intel-card h3,
.trust-score-card h3,
.mortgage-card h3,
.analytics-chart-card h3,
.recent-activity-card h3,
.property-description-panel h3,
.property-amenities-panel h3,
.lead-sticky-panel__schedule h3 {
	margin: 0 0 0.75rem;
	font-size: 1rem;
}

.intel-card strong {
	display: block;
	font-size: 1.6rem;
	color: var(--sakn-navy-strong);
	margin-bottom: 0.45rem;
}

.intel-card p,
.agent-premium-card p,
.property-location-map p,
.recent-activity-card li,
.property-amenities-panel li {
	color: var(--sakn-muted);
}

.intel-card--chart {
	background:
		radial-gradient(circle at top left, rgba(31, 143, 97, 0.16), transparent 38%),
		linear-gradient(145deg, rgba(8, 21, 43, 0.98), rgba(15, 29, 54, 0.95));
	color: #fff;
}

.intel-card--chart strong,
.intel-card--chart p {
	color: inherit;
}

.property-content-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-bottom: 1rem;
}

.property-content-tabs a {
	padding: 0.75rem 1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(8, 21, 43, 0.06);
	font-weight: 700;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.property-content-tabs a:hover,
.property-content-tabs a:focus-visible {
	background: rgba(31, 143, 97, 0.1);
	color: var(--sakn-accent-dark);
	transform: translateY(-1px);
}

.property-section-card {
	padding: 1.5rem;
	border-radius: 28px;
	margin-bottom: 1.25rem;
}

.property-section-card__head {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: end;
	margin-bottom: 1.2rem;
}

.property-section-card__head h2 {
	margin: 0.2rem 0 0;
	font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.detail-icon-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin-bottom: 1.2rem;
}

.detail-icon-card {
	padding: 1.15rem;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(247, 250, 252, 0.98), rgba(239, 245, 248, 0.9));
	border: 1px solid rgba(8, 21, 43, 0.06);
	text-align: center;
}

.detail-icon-card span:first-child {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 0.7rem;
	border-radius: 18px;
	background: rgba(31, 143, 97, 0.12);
	font-size: 1.3rem;
}

.property-description-panel,
.property-location-grid,
.analytics-grid,
.agent-premium-card {
	display: grid;
	gap: 1rem;
}

.property-description-panel {
	grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
}

.property-description-panel__text,
.property-amenities-panel,
.property-location-map,
.nearby-card,
.trust-score-card,
.mortgage-card,
.analytics-chart-card,
.social-proof-card,
.recent-activity-card,
.agent-premium-card,
.lead-sticky-panel__schedule,
.lead-sticky-panel__form {
	padding: 1.25rem;
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.92));
	border: 1px solid rgba(8, 21, 43, 0.06);
}

.property-amenities-panel ul,
.trust-score-card ul,
.recent-activity-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.property-amenities-panel li,
.trust-score-card li,
.recent-activity-card li {
	padding: 0.8rem 0;
	border-bottom: 1px solid rgba(8, 21, 43, 0.07);
}

.property-amenities-panel li:last-child,
.trust-score-card li:last-child,
.recent-activity-card li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.property-location-grid {
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
}

.property-location-map__canvas {
	position: relative;
	min-height: 320px;
	border-radius: 24px;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(245, 249, 252, 0.92), rgba(226, 235, 242, 0.92)),
		linear-gradient(90deg, rgba(9, 25, 45, 0.04) 1px, transparent 1px),
		linear-gradient(rgba(9, 25, 45, 0.04) 1px, transparent 1px);
	background-size: cover, 48px 48px, 48px 48px;
}

.property-location-map__grid {
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(90deg, rgba(8, 21, 43, 0.04) 0 1px, transparent 1px 58px),
		repeating-linear-gradient(rgba(8, 21, 43, 0.04) 0 1px, transparent 1px 58px);
}

.property-location-map__pin {
	position: absolute;
	top: 44%;
	left: 48%;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	background: linear-gradient(135deg, #1fb97f, #1f8f61);
	box-shadow: 0 0 0 10px rgba(31, 143, 97, 0.14);
	transform: translate(-50%, -50%);
}

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

.nearby-card strong {
	display: block;
	margin-bottom: 0.4rem;
}

.analytics-grid {
	grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr) minmax(260px, 0.95fr);
}

.trust-score-card__ring {
	display: flex;
	align-items: baseline;
	gap: 0.35rem;
	margin-bottom: 1rem;
	font-weight: 800;
}

.trust-score-card__ring strong {
	font-size: 3rem;
	line-height: 1;
	color: var(--sakn-accent-dark);
}

.mortgage-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
}

.mortgage-form label {
	display: grid;
	gap: 0.35rem;
}

.mortgage-form input {
	width: 100%;
	padding: 0.8rem 0.9rem;
	border-radius: 16px;
	border: 1px solid rgba(8, 21, 43, 0.1);
	background: rgba(248, 251, 253, 0.95);
}

.mortgage-results {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
}

.mortgage-results div {
	padding: 0.95rem;
	border-radius: 18px;
	background: rgba(7, 26, 46, 0.04);
}

.analytics-bars {
	display: grid;
	gap: 1rem;
}

.analytics-bar__label {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.4rem;
	font-size: 0.9rem;
}

.analytics-bar__track {
	height: 0.75rem;
	border-radius: 999px;
	background: rgba(8, 21, 43, 0.08);
	overflow: hidden;
}

.analytics-bar__track span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #13a56d, #4cd39a);
}

.social-proof-row {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 1rem;
}

.social-proof-card {
	text-align: center;
}

.social-proof-card strong {
	font-size: 2rem;
	color: var(--sakn-accent-dark);
}

.agent-premium-card {
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
}

.agent-premium-card__avatar,
.lead-sticky-panel__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(31, 143, 97, 0.18), rgba(7, 26, 46, 0.9));
	color: #fff;
	font-size: 1.45rem;
	font-weight: 800;
}

.agent-premium-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-bottom: 0.65rem;
}

.agent-premium-card__badges span {
	padding: 0.4rem 0.7rem;
	border-radius: 999px;
	background: rgba(31, 143, 97, 0.08);
	color: var(--sakn-accent-dark);
	font-size: 0.75rem;
	font-weight: 700;
}

.agent-premium-card__stats {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 1rem;
}

.lead-sticky-panel {
	position: sticky;
	top: 5.6rem;
	padding: 1.3rem;
	border-radius: 28px;
	max-width: 340px;
	margin-inline-start: auto;
}

.lead-sticky-panel__agent {
	display: flex;
	gap: 1rem;
	align-items: center;
	margin-bottom: 1rem;
}

.lead-sticky-panel__agent span {
	display: block;
	margin-top: 0.2rem;
	color: var(--sakn-muted);
	font-size: 0.84rem;
}

.lead-sticky-panel__meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
	margin-bottom: 1rem;
}

.button--block {
	width: 100%;
	justify-content: center;
}

.lead-sticky-panel__actions {
	display: grid;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.lead-sticky-panel__schedule input {
	width: 100%;
	padding: 0.85rem 0.9rem;
	border-radius: 16px;
	border: 1px solid rgba(8, 21, 43, 0.08);
	background: rgba(248, 251, 253, 0.95);
}

.lead-sticky-panel__form {
	margin-top: 1rem;
}

.lead-sticky-panel .form-stack label {
	margin-bottom: 0.8rem;
}

.lead-sticky-panel .form-stack input,
.lead-sticky-panel .form-stack textarea {
	padding: 0.78rem 0.9rem;
}

.property-mobile-bar {
	position: fixed;
	inset-inline: 0;
	bottom: 0;
	z-index: 25;
	display: none;
	align-items: center;
	gap: 0.7rem;
	padding: 0.9rem 1rem calc(0.9rem + env(safe-area-inset-bottom));
	background: rgba(7, 26, 46, 0.94);
	backdrop-filter: blur(20px);
	box-shadow: 0 -18px 40px rgba(7, 26, 46, 0.28);
}

.property-mobile-bar__price {
	min-width: 0;
	margin-inline-end: auto;
	color: #fff;
}

.property-mobile-bar__price strong,
.property-mobile-bar__price span {
	display: block;
}

.property-mobile-bar a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.78rem 1rem;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-weight: 700;
	white-space: nowrap;
}

.property-mobile-bar a:last-child {
	background: linear-gradient(135deg, #17a36e, #2dc887);
}

@media (max-width: 1180px) {
	.property-shell {
		grid-template-columns: 1fr;
	}

	.property-shell__sidebar {
		order: -1;
	}

	.lead-sticky-panel {
		position: static;
		top: auto;
		max-width: none;
		margin-inline-start: 0;
	}
}

@media (max-width: 960px) {
	.property-shell,
	.property-topbar,
	.property-description-panel,
	.property-location-grid,
	.analytics-grid {
		grid-template-columns: 1fr;
	}
	.property-quick-facts {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.property-intelligence-grid,
	.detail-icon-grid,
	.agent-premium-card__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nearby-grid,
	.social-proof-row,
	.mortgage-results {
		grid-template-columns: 1fr;
	}
	.property-topbar__pricing {
		text-align: start;
		justify-items: start;
	}
}

@media (max-width: 640px) {
	.property-premium {
		padding-bottom: 7rem;
	}

	.property-topbar,
	.property-section-card,
	.lead-sticky-panel {
		padding: 1.1rem;
		border-radius: 22px;
	}

	.property-topbar h1 {
		font-size: 1.8rem;
	}

	.property-topbar__actions,
	.property-content-tabs {
		gap: 0.55rem;
	}

	.ghost-icon-button,
	.gallery-action,
	.property-content-tabs a {
		width: 100%;
	}

	.property-gallery-premium__main {
		min-height: 320px;
		border-radius: 22px;
	}

	.property-gallery-premium__thumbs,
	.property-quick-facts,
	.property-intelligence-grid,
	.detail-icon-grid,
	.agent-premium-card__stats,
	.lead-sticky-panel__meta,
	.mortgage-form,
	.mortgage-results {
		grid-template-columns: 1fr;
	}

	.property-thumb img,
	.property-thumb__placeholder {
		height: 84px;
	}

	.property-mobile-bar {
		display: flex;
		flex-wrap: wrap;
	}

	.property-mobile-bar__price {
		width: 100%;
	}

	.property-mobile-bar a {
		flex: 1 1 calc(50% - 0.35rem);
	}
}
