/**
 * Location Landing Page - Body, Reviews, CTA.
 * Mobile responsive. Works with or without theme CSS variables.
 */
.prebo-location-landing .cta-section .cta-content h2 {
	color: #fff;
	color: var(--white, #fff);
}

.prebo-location-landing .cta-section .cta-content > p {
	color: rgba(255, 255, 255, 0.85);
	color: var(--gray-300, rgba(255, 255, 255, 0.85));
}

.prebo-location-landing .prebo-location-content {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}

.prebo-location-landing .prebo-location-content h2 {
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.prebo-location-landing .prebo-location-content h2:first-child {
	margin-top: 0;
}

.prebo-location-landing .prebo-location-content h3 {
	margin-top: 1.75rem;
	margin-bottom: 0.75rem;
	font-size: 1.25rem;
}

.prebo-location-landing .prebo-location-content p {
	margin-bottom: 1.25rem;
}

.prebo-location-landing .prebo-location-content p:last-child {
	margin-bottom: 0;
}

.prebo-location-landing .prebo-location-content ul,
.prebo-location-landing .prebo-location-content ol {
	margin-bottom: 1.25rem;
	padding-left: 1.5rem;
}

.prebo-location-landing .prebo-location-content a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Tables - Pricing, Packages, Comparisons */
.prebo-location-landing .prebo-location-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0 2rem;
	font-size: 0.9375rem;
	background: #fff;
	background: var(--white, #fff);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.prebo-location-landing .prebo-location-content thead,
.prebo-location-landing .prebo-location-content tr:first-child th {
	background: #1e3a5f;
	background: var(--primary, #1e3a5f);
	color: #fff;
}

.prebo-location-landing .prebo-location-content th {
	padding: 14px 18px;
	text-align: left;
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.3px;
}

.prebo-location-landing .prebo-location-content td {
	padding: 14px 18px;
	border-bottom: 1px solid #e5e7eb;
	border-bottom: 1px solid var(--gray-200, #e5e7eb);
	color: #374151;
	color: var(--gray-700, #374151);
}

.prebo-location-landing .prebo-location-content tbody tr:last-child td {
	border-bottom: none;
}

.prebo-location-landing .prebo-location-content tbody tr:hover {
	background: #f9fafb;
	background: var(--gray-50, #f9fafb);
}

.prebo-location-landing .prebo-location-content tbody tr:nth-child(even) {
	background: #fafafa;
}

.prebo-location-landing .prebo-location-content tbody tr:nth-child(even):hover {
	background: #f3f4f6;
	background: var(--gray-100, #f3f4f6);
}

.prebo-location-landing .prebo-location-content td:last-child,
.prebo-location-landing .prebo-location-content th:last-child {
	text-align: right;
	font-weight: 600;
	color: #059669;
	color: var(--success, #059669);
}

.prebo-location-landing .prebo-location-content th:last-child {
	color: #fff;
	opacity: 0.95;
}

/* Table wrapper for horizontal scroll on mobile */
.prebo-location-landing .prebo-location-content .prebo-table-wrapper {
	overflow-x: auto;
	margin: 1.5rem 0 2rem;
	-webkit-overflow-scrolling: touch;
}

.prebo-location-landing .prebo-location-content .prebo-table-wrapper table {
	margin: 0;
	min-width: 320px;
}

/* Reviews section */
.prebo-location-reviews {
	padding: 60px 24px;
	background: #fff;
	background: var(--white, #fff);
	border-top: 1px solid #f3f4f6;
	border-top: 1px solid var(--gray-100, #f3f4f6);
}

.prebo-reviews-header {
	text-align: center;
	margin-bottom: 40px;
}

.prebo-reviews-header .section-tag {
	display: inline-block;
	padding: 8px 20px;
	background: rgba(201, 162, 39, 0.15);
	color: #b8860b;
	color: var(--gold-dark, #b8860b);
	font-weight: 600;
	font-size: 0.875rem;
	border-radius: 50px;
	margin-bottom: 16px;
}

.prebo-reviews-header h2 {
	margin-bottom: 12px;
	font-size: 1.75rem;
	line-height: 1.3;
}

.prebo-aggregate-rating {
	margin-top: 12px;
}

.prebo-stars {
	color: #f59e0b;
	font-size: 1.25rem;
	letter-spacing: 2px;
}

.prebo-rating-text {
	margin-left: 8px;
	color: #6b7280;
	color: var(--gray-600, #6b7280);
	font-size: 0.9375rem;
}

.prebo-reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
	max-width: 1100px;
	margin: 0 auto;
}

.prebo-review-card {
	margin: 0;
	padding: 24px;
	background: #f9fafb;
	background: var(--gray-50, #f9fafb);
	border-radius: 12px;
	border-left: 4px solid #1e3a5f;
	border-left: 4px solid var(--primary, #1e3a5f);
}

.prebo-review-stars {
	color: #f59e0b;
	font-size: 1rem;
	margin-bottom: 12px;
	letter-spacing: 1px;
}

.prebo-review-text {
	margin: 0 0 16px;
	line-height: 1.6;
	font-size: 0.9375rem;
	color: #374151;
	color: var(--gray-700, #374151);
}

.prebo-review-card footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	font-size: 0.875rem;
	color: #6b7280;
	color: var(--gray-600, #6b7280);
}

.prebo-review-card cite {
	font-style: normal;
	font-weight: 600;
	color: #1f2937;
	color: var(--gray-800, #1f2937);
}

/* Form row - single column on mobile */
.prebo-location-landing .cta-form .form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.prebo-location-landing .prebo-location-content {
		padding: 0 16px;
		max-width: 100%;
	}

	.prebo-location-landing .prebo-location-content th,
	.prebo-location-landing .prebo-location-content td {
		padding: 12px 14px;
		font-size: 0.875rem;
	}

	.prebo-location-landing .prebo-location-content h2 {
		font-size: 1.375rem;
	}

	.prebo-location-landing .prebo-location-content h3 {
		font-size: 1.125rem;
	}

	.prebo-location-reviews {
		padding: 40px 16px;
	}

	.prebo-reviews-header {
		margin-bottom: 28px;
	}

	.prebo-reviews-header h2 {
		font-size: 1.375rem;
	}

	.prebo-reviews-grid {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 0;
	}

	.prebo-review-card {
		padding: 20px 16px;
	}

	.prebo-location-landing .cta-form .form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.prebo-location-landing .cta-form .form-group {
		margin-bottom: 16px;
	}

	.prebo-location-landing .cta-section .container,
	.prebo-location-landing .industry-why-section .container {
		padding-left: 16px;
		padding-right: 16px;
	}
}

@media (max-width: 480px) {
	.prebo-reviews-header h2 {
		font-size: 1.25rem;
	}

	.prebo-review-card {
		padding: 16px;
	}

	.prebo-review-card footer {
		flex-direction: column;
		align-items: flex-start;
	}
}
