/* ==========================================================================
   Business Database Page — قاعدة بيانات الأعمال
   ========================================================================== */

/* --- Hero --- */
.wsali-db-hero {
	position: relative;
	padding: 5rem 0 4rem;
	background: linear-gradient(160deg, #0a2521 0%, #0f332e 45%, #143d37 100%);
	color: #fff;
	overflow: hidden;
}

.wsali-db-hero__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 20% 50%, rgba(197, 160, 89, 0.15) 0%, transparent 55%),
		radial-gradient(ellipse at 85% 20%, rgba(0, 201, 167, 0.08) 0%, transparent 45%);
	pointer-events: none;
}

.wsali-db-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 3rem;
	align-items: center;
	direction: rtl;
}

.wsali-db-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.375rem 1rem 0.375rem 0.75rem;
	font-size: 0.8125rem;
	font-weight: 700;
	color: #c5a059;
	background: rgba(197, 160, 89, 0.12);
	border: 1px solid rgba(197, 160, 89, 0.35);
	border-radius: 50px;
	margin-bottom: 1.25rem;
}

.wsali-db-hero__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #c5a059;
	box-shadow: 0 0 8px rgba(197, 160, 89, 0.6);
	animation: wsali-db-pulse 2s ease infinite;
}

@keyframes wsali-db-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.6; }
}

.wsali-db-hero__title {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 1rem;
	color: #d4b06a;
}

.wsali-db-hero__lead {
	font-size: 1.0625rem;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 1.75rem;
	max-width: 560px;
}

.wsali-db-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem 2rem;
	margin-bottom: 2rem;
}

.wsali-db-hero__stat strong {
	display: block;
	font-size: 1.625rem;
	font-weight: 800;
	color: #c5a059;
	line-height: 1.2;
}

.wsali-db-hero__stat span {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.65);
}

.wsali-db-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.875rem;
}

.wsali-db-hero__image {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(197, 160, 89, 0.2);
}

.wsali-db-page-showcase {
	padding: 0 0 2.5rem;
	background: linear-gradient(160deg, #071916 0%, #0a2521 100%);
}

.wsali-db-page-showcase__inner {
	max-width: 920px;
	margin: 0 auto;
}

.wsali-db-page-showcase__image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(197, 160, 89, 0.2);
}

/* --- Buttons --- */
.wsali-db-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.75rem;
	font-size: 0.9375rem;
	font-weight: 800;
	border-radius: 10px;
	text-decoration: none !important;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wsali-db-btn--primary {
	color: #0a2521 !important;
	background: linear-gradient(135deg, #d4b06a, #c5a059, #a8863f);
	box-shadow: 0 4px 16px rgba(197, 160, 89, 0.35);
}

.wsali-db-btn--primary:hover {
	color: #0a2521 !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(197, 160, 89, 0.45);
}

.wsali-db-btn--outline {
	color: #fff !important;
	border: 2px solid rgba(197, 160, 89, 0.6);
	background: transparent;
}

.wsali-db-btn--outline:hover {
	color: #0a2521 !important;
	background: #c5a059;
	border-color: #c5a059;
}

.wsali-db-btn--on-dark {
	border-color: rgba(255, 255, 255, 0.5);
}

.wsali-db-btn--on-dark:hover {
	color: #0a2521 !important;
	background: #fff;
	border-color: #fff;
}

/* --- Keywords --- */
.wsali-db-keywords {
	padding: 5rem 0;
	background: #fff;
}

.wsali-db-keywords__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
}

.wsali-db-keywords__card {
	position: relative;
	padding: 2rem;
	background: #f8fafc;
	border-radius: 14px;
	border: 1px solid rgba(10, 37, 33, 0.06);
	transition: box-shadow 0.25s ease;
}

.wsali-db-keywords__card:hover {
	box-shadow: 0 12px 40px rgba(10, 37, 33, 0.08);
}

.wsali-db-keywords__card--featured {
	background: linear-gradient(135deg, #0a2521, #0f332e);
	border-color: rgba(197, 160, 89, 0.3);
}

.wsali-db-keywords__num {
	display: block;
	font-size: 2.5rem;
	font-weight: 800;
	color: rgba(197, 160, 89, 0.25);
	line-height: 1;
	margin-bottom: 0.75rem;
}

.wsali-db-keywords__card h2 {
	font-size: 1.125rem;
	font-weight: 800;
	color: #0a2521;
	margin: 0 0 0.75rem;
	line-height: 1.4;
}

.wsali-db-keywords__card.wsali-db-keywords__card--featured h2 {
	color: #d4b06a;
}

.wsali-db-keywords__card--featured .wsali-db-keywords__num {
	color: rgba(212, 176, 106, 0.45);
}

.wsali-db-keywords__card--featured p {
	color: rgba(255, 255, 255, 0.78);
}

.wsali-db-keywords__card p {
	font-size: 0.9375rem;
	line-height: 1.8;
	color: #64748b;
	margin: 0;
}

/* --- Sectors --- */
.wsali-db-sectors {
	padding: 5rem 0;
	background: #f8fafc;
}

.wsali-db-sectors__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.wsali-db-sectors__more {
	margin: 2.5rem 0 0;
	text-align: center;
}

.wsali-db-sector {
	padding: 1.75rem;
	background: #fff;
	border-radius: 14px;
	border: 1px solid rgba(10, 37, 33, 0.08);
	transition: border-color 0.25s ease, transform 0.25s ease;
}

.wsali-db-sector:hover {
	border-color: rgba(197, 160, 89, 0.4);
	transform: translateY(-3px);
}

.wsali-db-sector__icon {
	display: block;
	font-size: 2rem;
	margin-bottom: 0.75rem;
}

.wsali-db-sector h3 {
	font-size: 1.0625rem;
	font-weight: 800;
	color: #0a2521;
	margin: 0 0 0.5rem;
}

.wsali-db-sector p {
	font-size: 0.875rem;
	line-height: 1.75;
	color: #64748b;
	margin: 0 0 1rem;
}

.wsali-db-sector__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wsali-db-sector__tags li {
	padding: 0.2rem 0.625rem;
	font-size: 0.6875rem;
	font-weight: 700;
	color: #0a2521;
	background: rgba(197, 160, 89, 0.2);
	border-radius: 50px;
}

/* --- Gallery --- */
.wsali-db-gallery {
	padding: 5rem 0;
	background: #fff;
}

.wsali-db-gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.wsali-db-gallery__item {
	margin: 0;
	border-radius: 14px;
	overflow: hidden;
	background: #f8fafc;
	border: 1px solid rgba(10, 37, 33, 0.08);
	box-shadow: 0 8px 32px rgba(10, 37, 33, 0.06);
}

.wsali-db-gallery__item--featured {
	grid-column: span 2;
}

.wsali-db-gallery__img {
	display: block;
	width: 100%;
	height: auto;
}

.wsali-db-gallery__caption {
	padding: 0.875rem 1.25rem;
	background: #0a2521;
}

.wsali-db-gallery__label {
	font-size: 0.875rem;
	font-weight: 700;
	color: #c5a059;
}

/* --- Marketing --- */
.wsali-db-marketing {
	position: relative;
	padding: 5rem 0;
	background: linear-gradient(160deg, #0a2521 0%, #0f332e 100%);
	color: #fff;
	overflow: hidden;
}

.wsali-db-marketing__bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 70% 50%, rgba(37, 211, 102, 0.08) 0%, transparent 55%);
	pointer-events: none;
}

.wsali-db-marketing__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	direction: rtl;
}

.wsali-db-marketing__badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	color: #25d366;
	background: rgba(37, 211, 102, 0.12);
	border: 1px solid rgba(37, 211, 102, 0.3);
	padding: 0.375rem 0.875rem;
	border-radius: 50px;
	margin-bottom: 1rem;
}

.wsali-db-marketing__title {
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 800;
	margin: 0 0 1rem;
	line-height: 1.35;
	color: #d4b06a;
}

.wsali-db-marketing__desc {
	font-size: 1rem;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.78);
	margin: 0 0 1.75rem;
}

.wsali-db-marketing__channels {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 2rem;
}

.wsali-db-marketing__channel {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.wsali-db-marketing__channel > span {
	font-size: 1.5rem;
	line-height: 1;
}

.wsali-db-marketing__channel h3 {
	font-size: 1rem;
	font-weight: 800;
	margin: 0 0 0.25rem;
	color: #c5a059;
}

.wsali-db-marketing__channel p {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	line-height: 1.6;
}

.wsali-db-marketing__image {
	width: 100%;
	height: auto;
	border-radius: 14px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* --- Process --- */
.wsali-db-process {
	padding: 5rem 0;
	background: #f8fafc;
}

.wsali-db-process__steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wsali-db-process__steps li {
	padding: 1.75rem;
	background: #fff;
	border-radius: 14px;
	border-top: 3px solid #c5a059;
	box-shadow: 0 4px 20px rgba(10, 37, 33, 0.04);
}

.wsali-db-process__num {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	color: rgba(197, 160, 89, 0.35);
	line-height: 1;
	margin-bottom: 0.75rem;
}

.wsali-db-process__steps h3 {
	font-size: 1.0625rem;
	font-weight: 800;
	color: #0a2521;
	margin: 0 0 0.5rem;
}

.wsali-db-process__steps p {
	font-size: 0.875rem;
	line-height: 1.7;
	color: #64748b;
	margin: 0;
}

/* --- Countries / Global Coverage --- */
.wsali-db-countries {
	position: relative;
	padding: 5rem 0;
	background: linear-gradient(180deg, #f8fafc 0%, #fff 50%, #f8fafc 100%);
	overflow: hidden;
}

.wsali-db-countries__hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 15% 20%, rgba(197, 160, 89, 0.1) 0%, transparent 50%),
		radial-gradient(ellipse at 85% 80%, rgba(10, 37, 33, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.wsali-db-countries__header {
	position: relative;
	text-align: center;
	max-width: 860px;
	margin: 0 auto 3rem;
}

.wsali-db-countries__badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	color: #c5a059;
	background: rgba(197, 160, 89, 0.12);
	border: 1px solid rgba(197, 160, 89, 0.3);
	padding: 0.375rem 1rem;
	border-radius: 50px;
	margin-bottom: 1rem;
}

.wsali-db-countries__title {
	font-size: clamp(1.5rem, 3.5vw, 2.5rem);
	font-weight: 800;
	color: #0a2521;
	line-height: 1.35;
	margin: 0 0 1rem;
}

.wsali-db-countries__subtitle {
	font-size: 1.0625rem;
	line-height: 1.9;
	color: #64748b;
	margin: 0 0 2rem;
}

.wsali-db-countries__global-stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem 2.5rem;
}

.wsali-db-countries__global-stat strong {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	color: #c5a059;
	line-height: 1.1;
}

.wsali-db-countries__global-stat span {
	font-size: 0.8125rem;
	color: #64748b;
}

.wsali-db-countries__featured-label {
	position: relative;
	margin-bottom: 1.5rem;
}

.wsali-db-countries__featured-label h3 {
	font-size: 1.25rem;
	font-weight: 800;
	color: #0a2521;
	margin: 0;
	padding-inline-start: 1rem;
	border-inline-start: 4px solid #c5a059;
}

.wsali-db-countries__featured {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	margin-bottom: 3.5rem;
}

@media (min-width: 1101px) {
	.wsali-db-countries__featured {
		grid-template-columns: repeat(3, 1fr);
	}

	.wsali-db-country--primary {
		grid-column: span 3;
	}
}

.wsali-db-country {
	padding: 1.75rem;
	background: #fff;
	border-radius: 16px;
	border: 1px solid rgba(10, 37, 33, 0.08);
	box-shadow: 0 8px 32px rgba(10, 37, 33, 0.05);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wsali-db-country:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 48px rgba(10, 37, 33, 0.1);
}

.wsali-db-country--primary {
	grid-column: span 2;
	background: linear-gradient(135deg, #0a2521 0%, #0f332e 100%);
	border-color: rgba(197, 160, 89, 0.35);
}

.wsali-db-country--primary .wsali-db-country__name {
	color: #d4b06a;
}

.wsali-db-country--primary .wsali-db-country__desc {
	color: rgba(255, 255, 255, 0.78);
}

.wsali-db-country--primary .wsali-db-country__col strong {
	color: #c5a059;
}

.wsali-db-country--primary .wsali-db-country__tags li {
	background: rgba(197, 160, 89, 0.15);
	color: rgba(255, 255, 255, 0.9);
	border-color: rgba(197, 160, 89, 0.3);
}

.wsali-db-country__head {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.wsali-db-country__flag {
	font-size: 2.5rem;
	line-height: 1;
}

.wsali-db-country__meta {
	flex: 1;
}

.wsali-db-country__name {
	font-size: 1.125rem;
	font-weight: 800;
	color: #0a2521;
	margin: 0 0 0.125rem;
	line-height: 1.3;
}

.wsali-db-country__count {
	font-size: 0.8125rem;
	font-weight: 700;
	color: #c5a059;
}

.wsali-db-country__primary-badge {
	padding: 0.25rem 0.75rem;
	font-size: 0.6875rem;
	font-weight: 800;
	color: #0a2521;
	background: #c5a059;
	border-radius: 50px;
}

.wsali-db-country__desc {
	font-size: 0.9375rem;
	line-height: 1.8;
	color: #64748b;
	margin: 0 0 1.25rem;
}

.wsali-db-country__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.wsali-db-country__col strong {
	display: block;
	font-size: 0.75rem;
	font-weight: 800;
	color: #0a2521;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.wsali-db-country__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wsali-db-country__tags li {
	padding: 0.25rem 0.625rem;
	font-size: 0.6875rem;
	font-weight: 600;
	color: #475569;
	background: #f1f5f9;
	border: 1px solid rgba(10, 37, 33, 0.06);
	border-radius: 50px;
}

.wsali-db-country__tags--sectors li {
	background: rgba(197, 160, 89, 0.12);
	color: #0a2521;
	border-color: rgba(197, 160, 89, 0.25);
}

/* Country accent borders */
.wsali-db-country--sa { border-top: 3px solid #006c35; }
.wsali-db-country--ae { border-top: 3px solid #00732f; }
.wsali-db-country--kw { border-top: 3px solid #007a3d; }
.wsali-db-country--bh { border-top: 3px solid #ce1126; }
.wsali-db-country--qa { border-top: 3px solid #8d1b3d; }
.wsali-db-country--us { border-top: 3px solid #3c3b6e; }
.wsali-db-country--eg { border-top: 3px solid #ce1126; }
.wsali-db-country--tr { border-top: 3px solid #e30a17; }
.wsali-db-country--de { border-top: 3px solid #000; }
.wsali-db-country--fr { border-top: 3px solid #002395; }
.wsali-db-country--cn { border-top: 3px solid #de2910; }

.wsali-db-countries__region {
	position: relative;
	margin-bottom: 2.5rem;
}

.wsali-db-countries__region-title {
	font-size: 1.0625rem;
	font-weight: 800;
	color: #64748b;
	margin: 0 0 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid rgba(197, 160, 89, 0.25);
}

.wsali-db-countries__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.wsali-db-country-card {
	padding: 1.5rem;
	background: #fff;
	border-radius: 14px;
	border: 1px solid rgba(10, 37, 33, 0.08);
	transition: border-color 0.25s ease;
}

.wsali-db-country-card:hover {
	border-color: rgba(197, 160, 89, 0.4);
}

.wsali-db-country-card__head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.wsali-db-country-card__flag {
	font-size: 1.75rem;
	line-height: 1;
}

.wsali-db-country-card__head h4 {
	font-size: 0.9375rem;
	font-weight: 800;
	color: #0a2521;
	margin: 0 0 0.125rem;
}

.wsali-db-country-card__count {
	font-size: 0.75rem;
	font-weight: 700;
	color: #c5a059;
}

.wsali-db-country-card p {
	font-size: 0.8125rem;
	line-height: 1.7;
	color: #64748b;
	margin: 0 0 0.75rem;
}

.wsali-db-country-card__cities {
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wsali-db-country-card__cities li {
	padding: 0.2rem 0.5rem;
	font-size: 0.625rem;
	font-weight: 600;
	color: #475569;
	background: #f8fafc;
	border-radius: 4px;
}

.wsali-db-countries__cta {
	position: relative;
	text-align: center;
	padding: 2.5rem;
	margin-top: 1rem;
	background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), rgba(10, 37, 33, 0.04));
	border-radius: 16px;
	border: 1px dashed rgba(197, 160, 89, 0.4);
}

.wsali-db-countries__cta p {
	font-size: 1rem;
	color: #475569;
	margin: 0 0 1.25rem;
}

/* --- Why --- */
.wsali-db-why {
	padding: 5rem 0;
	background: #f8fafc;
}

.wsali-db-why__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.wsali-db-why__card {
	padding: 1.75rem;
	background: #fff;
	border-radius: 14px;
	border: 1px solid rgba(10, 37, 33, 0.08);
}

.wsali-db-why__card--featured {
	background: linear-gradient(135deg, rgba(197, 160, 89, 0.12), rgba(10, 37, 33, 0.04));
	border-color: rgba(197, 160, 89, 0.35);
}

.wsali-db-why__card > span {
	display: block;
	font-size: 1.75rem;
	margin-bottom: 0.75rem;
}

.wsali-db-why__card h3 {
	font-size: 1.0625rem;
	font-weight: 800;
	color: #0a2521;
	margin: 0 0 0.5rem;
}

.wsali-db-why__card p {
	font-size: 0.875rem;
	line-height: 1.75;
	color: #64748b;
	margin: 0;
}

/* --- Import / List Builder --- */
.wsali-db-import {
	padding: 5rem 0;
	background: linear-gradient(180deg, #fff 0%, #f8fafc 50%, #fff 100%);
}

.wsali-db-import__intro {
	text-align: center;
	max-width: 820px;
	margin: 0 auto 2.5rem;
}

.wsali-db-import__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.375rem 1rem 0.375rem 0.75rem;
	font-size: 0.8125rem;
	font-weight: 700;
	color: #c5a059;
	background: rgba(197, 160, 89, 0.12);
	border: 1px solid rgba(197, 160, 89, 0.3);
	border-radius: 50px;
	margin-bottom: 1rem;
}

.wsali-db-import__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #c5a059;
}

.wsali-db-import__title {
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 800;
	color: #0a2521;
	line-height: 1.35;
	margin: 0 0 1rem;
}

.wsali-db-import__lead {
	font-size: 1.0625rem;
	line-height: 1.9;
	color: #64748b;
	margin: 0;
}

.wsali-db-import__highlights {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-bottom: 3rem;
}

.wsali-db-import__highlight {
	text-align: center;
	padding: 1.25rem 1rem;
	background: #fff;
	border-radius: 12px;
	border: 1px solid rgba(10, 37, 33, 0.08);
	box-shadow: 0 4px 16px rgba(10, 37, 33, 0.04);
}

.wsali-db-import__highlight strong {
	display: block;
	font-size: 1rem;
	font-weight: 800;
	color: #c5a059;
	margin-bottom: 0.25rem;
}

.wsali-db-import__highlight span {
	font-size: 0.75rem;
	color: #64748b;
}

.wsali-db-import__tool {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: center;
	padding: 2.5rem;
	margin-bottom: 2rem;
	background: #fff;
	border-radius: 20px;
	border: 1px solid rgba(10, 37, 33, 0.08);
	box-shadow: 0 12px 40px rgba(10, 37, 33, 0.06);
	direction: rtl;
}

.wsali-db-import__tool--reverse {
	direction: rtl;
}

.wsali-db-import__tool--reverse .wsali-db-import__tool-visual {
	order: -1;
}

.wsali-db-import__tool--excel {
	border-top: 4px solid #22c55e;
}

.wsali-db-import__tool--pdf {
	border-top: 4px solid #3b82f6;
}

.wsali-db-import__tool--gmaps {
	border-top: 4px solid #8b5cf6;
	margin-bottom: 2.5rem;
}

.wsali-db-import__tool-tag {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 800;
	padding: 0.375rem 0.875rem;
	border-radius: 50px;
	margin-bottom: 1rem;
}

.wsali-db-import__tool-tag--excel {
	color: #15803d;
	background: rgba(34, 197, 94, 0.12);
	border: 1px solid rgba(34, 197, 94, 0.3);
}

.wsali-db-import__tool-tag--pdf {
	color: #1d4ed8;
	background: rgba(59, 130, 246, 0.12);
	border: 1px solid rgba(59, 130, 246, 0.3);
}

.wsali-db-import__tool-tag--gmaps {
	color: #6d28d9;
	background: rgba(139, 92, 246, 0.12);
	border: 1px solid rgba(139, 92, 246, 0.3);
}

.wsali-db-import__tool-title {
	font-size: clamp(1.25rem, 2.5vw, 1.625rem);
	font-weight: 800;
	color: #0a2521;
	margin: 0 0 0.875rem;
	line-height: 1.35;
}

.wsali-db-import__tool-desc {
	font-size: 1rem;
	line-height: 1.85;
	color: #475569;
	margin: 0 0 1.25rem;
}

.wsali-db-import__tool-feats {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
}

.wsali-db-import__tool-feats li {
	padding: 0.875rem 1rem;
	margin-bottom: 0.5rem;
	background: #f8fafc;
	border-radius: 10px;
	border-inline-start: 3px solid #c5a059;
}

.wsali-db-import__tool-feats strong {
	display: block;
	font-size: 0.875rem;
	font-weight: 800;
	color: #0a2521;
	margin-bottom: 0.125rem;
}

.wsali-db-import__tool-feats span {
	font-size: 0.8125rem;
	color: #64748b;
	line-height: 1.6;
}

.wsali-db-import__tool-note {
	font-size: 0.9375rem;
	font-weight: 600;
	font-style: italic;
	color: #c5a059;
	line-height: 1.7;
	margin: 0;
	padding: 1rem;
	background: rgba(197, 160, 89, 0.08);
	border-radius: 10px;
}

.wsali-db-import__tool-visual {
	margin: 0;
}

.wsali-db-import__tool-img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(10, 37, 33, 0.12);
	border: 1px solid rgba(10, 37, 33, 0.06);
}

.wsali-db-import__methods {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.wsali-db-import__method {
	padding: 1.25rem;
	border-radius: 12px;
	border: 1px solid rgba(10, 37, 33, 0.08);
}

.wsali-db-import__method--api {
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(34, 197, 94, 0.02));
	border-color: rgba(34, 197, 94, 0.25);
}

.wsali-db-import__method--scrape {
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(139, 92, 246, 0.02));
	border-color: rgba(139, 92, 246, 0.25);
}

.wsali-db-import__method h4 {
	font-size: 0.9375rem;
	font-weight: 800;
	color: #0a2521;
	margin: 0 0 0.5rem;
}

.wsali-db-import__method p {
	font-size: 0.8125rem;
	line-height: 1.7;
	color: #64748b;
	margin: 0 0 0.75rem;
}

.wsali-db-import__method ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wsali-db-import__method li {
	font-size: 0.75rem;
	font-weight: 600;
	color: #475569;
	padding: 0.25rem 0;
	padding-inline-start: 1rem;
	position: relative;
}

.wsali-db-import__method li::before {
	content: '✓';
	position: absolute;
	inset-inline-start: 0;
	color: #c5a059;
	font-weight: 800;
}

.wsali-db-import__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: 2.5rem;
	background: linear-gradient(135deg, #0a2521, #0f332e);
	border-radius: 20px;
	border: 1px solid rgba(197, 160, 89, 0.25);
}

.wsali-db-import__footer-text {
	flex: 1;
	min-width: 280px;
}

.wsali-db-import__footer h3 {
	font-size: clamp(1.125rem, 2.5vw, 1.5rem);
	font-weight: 800;
	color: #d4b06a;
	margin: 0 0 0.75rem;
	line-height: 1.4;
}

.wsali-db-import__footer p {
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.78);
	margin: 0;
}

/* --- CTA --- */
.wsali-db-cta {
	padding: 5rem 0;
	background: linear-gradient(135deg, #0a2521 0%, #143d37 100%);
}

.wsali-db-cta__inner {
	text-align: center;
}

.wsali-db-cta__title {
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 800;
	color: #d4b06a;
	margin: 0 0 0.75rem;
}

.wsali-db-cta__text {
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 2rem;
	max-width: 600px;
	margin-inline: auto;
}

.wsali-db-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.875rem;
}

/* --- Responsive --- */
@media (max-width: 1100px) {
	.wsali-db-sectors__grid { grid-template-columns: repeat(2, 1fr); }
	.wsali-db-why__grid { grid-template-columns: repeat(2, 1fr); }
	.wsali-db-process__steps { grid-template-columns: repeat(2, 1fr); }
	.wsali-db-import__highlights { grid-template-columns: repeat(2, 1fr); }
	.wsali-db-countries__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
	.wsali-db-hero__inner,
	.wsali-db-marketing__inner {
		grid-template-columns: 1fr;
	}
	.wsali-db-hero__visual,
	.wsali-db-marketing__visual { order: -1; }
	.wsali-db-keywords__grid { grid-template-columns: 1fr; }
	.wsali-db-gallery__item--featured { grid-column: span 1; }
	.wsali-db-import__tool,
	.wsali-db-import__tool--reverse {
		grid-template-columns: 1fr;
	}
	.wsali-db-import__tool--reverse .wsali-db-import__tool-visual { order: -1; }
	.wsali-db-countries__featured { grid-template-columns: 1fr; }
	.wsali-db-country--primary { grid-column: span 1; }
	.wsali-db-country__cols { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
	.wsali-db-hero { padding: 3.5rem 0 3rem; }
	.wsali-db-sectors__grid,
	.wsali-db-gallery__grid,
	.wsali-db-why__grid,
	.wsali-db-process__steps { grid-template-columns: 1fr; }
	.wsali-db-hero__actions,
	.wsali-db-cta__actions { flex-direction: column; }
	.wsali-db-btn { width: 100%; }
	.wsali-db-import__highlights { grid-template-columns: 1fr; }
	.wsali-db-import__methods { grid-template-columns: 1fr; }
	.wsali-db-import__footer { flex-direction: column; text-align: center; }
	.wsali-db-import__footer .wsali-db-btn { width: 100%; }
	.wsali-db-countries__grid { grid-template-columns: 1fr; }
	.wsali-db-countries__global-stats { gap: 1rem 1.5rem; }
}
