.geo-pro-faq-section,
.geo-pro-reviews-section,
.geo-pro-key-facts-section {
	--geo-pro-surface: #ffffff;
	--geo-pro-soft: #f6f1e8;
	--geo-pro-ink: #1f2428;
	--geo-pro-muted: #687078;
	--geo-pro-border: rgba(31, 36, 40, 0.12);
	--geo-pro-accent: #b66a2d;
	--geo-pro-star: #d9911f;
	box-sizing: border-box;
	margin: clamp(28px, 5vw, 64px) 0;
	color: var(--geo-pro-ink);
}

.geo-pro-faq-section *,
.geo-pro-reviews-section *,
.geo-pro-key-facts-section * {
	box-sizing: border-box;
}

.geo-pro-faq-section > h2,
.geo-pro-reviews-section > h2,
.geo-pro-key-facts-section > h2 {
	margin: 0 0 20px;
	font-size: clamp(1.55rem, 2.6vw, 2.35rem);
	line-height: 1.08;
	letter-spacing: -0.035em;
	color: var(--geo-pro-ink);
}

.geo-pro-reviews-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
	gap: 18px;
}

.geo-pro-reviews-section.is-carousel {
	--geo-pro-review-gap: 18px;
	--geo-pro-dot-size: 8px;
	--geo-pro-arrow-offset: 10px;
}

.geo-pro-reviews-shell {
	position: relative;
	overflow: hidden;
}

.geo-pro-reviews-section.is-carousel .geo-pro-reviews-shell {
	padding: 0 30px;
}

.geo-pro-reviews-section.is-carousel .geo-pro-reviews-list {
	display: flex;
	gap: var(--geo-pro-review-gap);
	align-items: stretch;
	transition: transform 0.35s ease;
	will-change: transform;
}

.geo-pro-reviews-section.is-carousel .geo-pro-review {
	flex: 0 0 100%;
	max-width: 100%;
}

.geo-pro-reviews-arrows {
	position: absolute;
	inset: 0 calc(var(--geo-pro-arrow-offset) * -1);
	display: flex;
	align-items: center;
	justify-content: space-between;
	pointer-events: none;
	z-index: 3;
}

.geo-pro-reviews-arrows .geo-pro-reviews-arrow {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin: 0;
	border: 1px solid var(--geo-pro-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	background-image: none;
	color: var(--geo-pro-ink);
	font-size: 1.15rem;
	line-height: 1;
	text-indent: 0;
	text-transform: none;
	font-family: inherit;
	font-weight: 700;
	box-shadow: 0 8px 24px rgba(31, 36, 40, 0.08);
	cursor: pointer;
	pointer-events: auto;
	transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.geo-pro-reviews-arrow:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow: 0 12px 28px rgba(31, 36, 40, 0.12);
}

.geo-pro-reviews-arrow:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.geo-pro-reviews-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
	margin-bottom: 8px;
	padding: 0;
	line-height: 0;
}

.geo-pro-reviews-dots .geo-pro-reviews-dot {
	appearance: none;
	-webkit-appearance: none;
	display: block;
	width: var(--geo-pro-dot-size);
	height: var(--geo-pro-dot-size);
	margin: 0;
	border: 1px solid transparent;
	border-radius: 999px;
	background: rgba(31, 36, 40, 0.18);
	background-image: none;
	padding: 0;
	min-width: 0;
	min-height: 0;
	line-height: 0;
	font-size: 0;
	cursor: pointer;
	box-shadow: none;
	transition: transform 0.18s ease, background-color 0.18s ease, opacity 0.18s ease;
}

.geo-pro-reviews-dot.is-active {
	background: var(--geo-pro-accent);
	transform: scale(1.18);
}

.geo-pro-reviews-section.is-static .geo-pro-reviews-arrows,
.geo-pro-reviews-section.is-static .geo-pro-reviews-dots {
	display: none;
}

.geo-pro-review {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: clamp(20px, 3vw, 28px);
	overflow: hidden;
	border: 1px solid var(--geo-pro-border);
	border-radius: 24px;
	background: var(--geo-pro-surface);
	box-shadow: 0 18px 45px rgba(31, 36, 40, 0.10);
}

.geo-pro-review::before {
	content: none;
}

.geo-pro-review-head {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin: 0 0 18px;
}

.geo-pro-review-score {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.geo-pro-review-stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: var(--geo-pro-star);
	font-size: 1.16rem;
	letter-spacing: 0.04em;
	line-height: 1;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.geo-pro-review-star.is-empty {
	color: rgba(104, 112, 120, 0.28);
}

.geo-pro-review-rating {
	display: inline-flex;
	align-items: baseline;
	gap: 1px;
	padding: 5px 9px;
	border: 1px solid rgba(217, 145, 31, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--geo-pro-ink);
	font-size: 0.82rem;
	font-weight: 750;
	line-height: 1;
}

.geo-pro-review-rating-max {
	color: var(--geo-pro-muted);
	font-size: 0.76em;
	font-weight: 650;
}

.geo-pro-review-body {
	position: relative;
	z-index: 1;
	flex: 1;
	margin: 0;
	color: var(--geo-pro-ink);
	font-size: clamp(1rem, 1.45vw, 1.08rem);
	line-height: 1.65;
}

.geo-pro-review-meta {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 22px;
	padding-top: 16px;
	border-top: 1px solid var(--geo-pro-border);
	color: var(--geo-pro-muted);
	font-size: 0.92rem;
}

.geo-pro-review-meta strong {
	color: var(--geo-pro-ink);
	font-weight: 760;
}

.geo-pro-review-meta-details {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
	text-align: right;
}

.geo-pro-review-source {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--geo-pro-accent);
	font-weight: 700;
	text-decoration: none;
}

.geo-pro-review-source:hover {
	color: var(--geo-pro-ink);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.geo-pro-citations-list {
	margin: 0;
	padding-left: 1.2em;
	color: var(--geo-pro-ink);
}

.geo-pro-citations-list li:not(:last-child) {
	margin-bottom: 12px;
}

.geo-pro-citations-list a {
	color: var(--geo-pro-accent);
	text-decoration: none;
	font-weight: 650;
}

.geo-pro-citations-list a:hover {
	color: var(--geo-pro-ink);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.geo-pro-citation-meta {
	color: var(--geo-pro-muted);
}

.geo-pro-faq-group {
	display: grid;
	gap: 12px;
}

.geo-pro-key-facts-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
	gap: 14px;
	margin: 0;
}

.geo-pro-key-fact {
	padding: 18px;
	border: 1px solid var(--geo-pro-border);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,241,232,0.82));
	box-shadow: 0 10px 28px rgba(31, 36, 40, 0.06);
}

.geo-pro-key-fact dt {
	margin: 0 0 8px;
	color: var(--geo-pro-muted);
	font-size: 0.86rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.geo-pro-key-fact dd {
	margin: 0;
	color: var(--geo-pro-ink);
	font-size: clamp(1rem, 1.55vw, 1.14rem);
	font-weight: 760;
	line-height: 1.35;
}

.geo-pro-key-fact a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px dashed rgba(182, 106, 45, 0.35);
}

.geo-pro-key-fact a:hover {
	border-bottom-style: solid;
}

.geo-pro-faq-item {
	border: 1px solid var(--geo-pro-border);
	border-radius: 18px;
	background: var(--geo-pro-surface);
	box-shadow: 0 10px 28px rgba(31, 36, 40, 0.06);
}

.geo-pro-faq-question {
	position: relative;
	padding: 18px 52px 18px 20px;
	color: var(--geo-pro-ink);
	font-weight: 760;
	cursor: pointer;
	list-style: none;
}

.geo-pro-faq-question::-webkit-details-marker {
	display: none;
}

.geo-pro-faq-question::after {
	content: "+";
	position: absolute;
	right: 20px;
	top: 50%;
	display: grid;
	width: 26px;
	height: 26px;
	place-items: center;
	border-radius: 999px;
	background: var(--geo-pro-soft);
	color: var(--geo-pro-accent);
	font-weight: 800;
	transform: translateY(-50%);
}

.geo-pro-faq-item[open] .geo-pro-faq-question::after {
	content: "-";
}

.geo-pro-faq-answer {
	padding: 0 20px 20px;
	color: var(--geo-pro-muted);
	line-height: 1.7;
}

.geo-pro-faq-answer p {
	margin: 0;
}

@media (max-width: 640px) {
	.geo-pro-reviews-section.is-carousel .geo-pro-reviews-shell {
		padding: 0 16px;
	}

	.geo-pro-review {
		border-radius: 20px;
	}

	.geo-pro-review-meta {
		align-items: flex-start;
		flex-direction: column;
	}

	.geo-pro-review-meta-details {
		justify-content: flex-start;
		text-align: left;
	}
}
