/* Shared styles for dedicated SEO landing pages. */
.page-hero {
	padding: 60px 0 30px;
	background: rgba(9, 14, 22, 0.9);
}

.page-hero h1 {
	margin-bottom: 15px;
}

.page-kicker {
	display: inline-block;
	margin-bottom: 10px;
	padding: 3px 10px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.breadcrumb-trail {
	margin-top: 18px;
	font-size: 14px;
	opacity: 0.85;
}

.breadcrumb-trail a {
	text-decoration: underline;
}

.content-section {
	padding: 55px 0;
}

.content-section p,
.content-section li {
	font-size: 16px;
	line-height: 1.65;
}

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

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

.info-card {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.04);
}

.info-card h3 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 22px;
}

.inline-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}

.inline-links .btn {
	min-width: 180px;
}

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

.quote-card {
	padding: 22px;
	background: rgba(255, 255, 255, 0.04);
	border-left: 4px solid #fcbf49;
}

.quote-card p {
	margin-bottom: 12px;
}

.quote-author {
	font-size: 14px;
	font-weight: 600;
	opacity: 0.85;
}

.pricing-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 12px;
}

.pricing-table th,
.pricing-table td {
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	vertical-align: top;
}

.pricing-table thead th {
	background: rgba(255, 255, 255, 0.84);
	color: #0a0d1b;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-shadow: none;
}

.contact-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.contact-list li {
	margin-bottom: 10px;
}

.seo-footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	justify-content: center;
	margin-top: 14px;
}

.review-carousel {
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 14px;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.review-carousel-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 20px;
}

.review-carousel-title h3 {
	margin: 0;
	font-size: 26px;
}

.review-carousel-title p {
	margin: 8px 0 0;
	font-size: 15px;
	opacity: 0.92;
}

.review-rating-chip {
	display: inline-grid;
	grid-template-columns: 1fr;
	gap: 2px;
	text-decoration: none;
	color: #fff;
	align-items: center;
	padding: 10px 16px;
	border-radius: 18px;
	border: 1px solid rgba(252, 191, 73, 0.55);
	background: rgba(252, 191, 73, 0.12);
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.review-rating-chip:hover,
.review-rating-chip:focus {
	background: rgba(252, 191, 73, 0.2);
	border-color: #fcbf49;
	transform: translateY(-1px);
	outline: none;
}

.review-chip-stars {
	color: #fcbf49;
	letter-spacing: 0.06em;
}

.review-stage {
	min-height: 270px;
}

.review-card-live {
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-left: 4px solid #fcbf49;
	border-radius: 12px;
	background: rgba(8, 15, 25, 0.68);
	transition: transform 0.35s ease, opacity 0.35s ease;
}

.review-card-live.is-entering {
	opacity: 0;
	transform: translateY(12px);
}

.review-card-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.review-avatar {
	width: 54px;
	height: 54px;
	min-width: 54px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid rgba(252, 191, 73, 0.7);
	background: rgba(255, 255, 255, 0.08);
}

.review-avatar-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.review-avatar-fallback {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	font-size: 18px;
	font-weight: 700;
}

.review-profile {
	min-width: 0;
}

.review-author {
	margin: 0;
	font-size: 18px;
	line-height: 1.2;
}

.review-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 13px;
	opacity: 0.88;
}

.review-stars {
	color: #fcbf49;
	letter-spacing: 0.04em;
	font-size: 14px;
}

.review-date {
	opacity: 0.82;
}

.review-text {
	margin: 0 0 14px;
	font-size: 17px;
	line-height: 1.72;
}

.review-source-link {
	display: inline-block;
	margin-top: 4px;
	font-size: 14px;
	text-decoration: underline;
}

.review-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 18px;
}

.review-control {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(0, 0, 0, 0.2);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.review-control:hover,
.review-control:focus {
	border-color: #fcbf49;
	color: #fcbf49;
	transform: translateY(-1px);
	outline: none;
}

.review-dots {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.review-dot {
	width: 11px;
	height: 11px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.review-dot:hover,
.review-dot:focus {
	border-color: #fcbf49;
	outline: none;
}

.review-dot.is-active {
	background: #fcbf49;
	border-color: #fcbf49;
	transform: scale(1.05);
}

.review-status {
	font-size: 13px;
	opacity: 0.75;
	margin-top: 12px;
}

body.signup-modal-open {
	overflow: hidden;
}

.signup-modal-backdrop {
	position: fixed !important;
	inset: 0 !important;
	z-index: 2147483647 !important;
	display: none;
	align-items: center;
	justify-content: center;
	padding: clamp(16px, 4vw, 40px);
	background: rgba(5, 10, 16, 0.84);
	-webkit-backdrop-filter: blur(14px) saturate(115%);
	backdrop-filter: blur(14px) saturate(115%);
	overflow: auto;
	box-sizing: border-box;
}

.signup-modal-backdrop.is-open {
	display: flex;
}

.signup-modal {
	position: relative;
	width: min(620px, calc(100vw - 32px));
	max-height: calc(100vh - 40px);
	overflow: auto;
	padding: 26px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: linear-gradient(180deg, rgba(16, 24, 38, 0.99), rgba(9, 15, 26, 0.99));
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.56);
	margin: auto;
}

.signup-modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.signup-modal-close:hover,
.signup-modal-close:focus {
	border-color: #fcbf49;
	color: #fcbf49;
	background: rgba(252, 191, 73, 0.15);
	outline: none;
}

.signup-modal h3 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 29px;
	color: #fff;
}

.signup-modal p {
	margin-bottom: 10px;
	line-height: 1.62;
	color: rgba(255, 255, 255, 0.88);
}

.signup-modal-note {
	font-size: 13px;
	opacity: 0.8;
	margin-top: 2px;
}

.signup-modal-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.signup-modal-actions .btn {
	min-width: 190px;
}

.class-switcher {
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.04);
}

.class-switcher h2 {
	margin-top: 0;
}

.class-switcher-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-top: 16px;
}

.switch-card {
	display: block;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.03);
	text-decoration: none;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.switch-card strong {
	display: block;
	font-size: 16px;
	margin-bottom: 4px;
}

.switch-card span {
	font-size: 13px;
	opacity: 0.8;
}

.switch-card:hover,
.switch-card:focus {
	border-color: #fcbf49;
	transform: translateY(-2px);
	outline: none;
}

.switch-card.active {
	border-color: #fcbf49;
	background: rgba(252, 191, 73, 0.12);
}

.resource-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.resource-card {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.04);
}

.resource-card h3 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 24px;
}

.resource-card .btn {
	margin-top: 8px;
}

@media (max-width: 991px) {
	.info-grid,
	.info-grid.two-col,
	.quote-grid,
	.resource-grid {
		grid-template-columns: 1fr;
	}

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

	.review-carousel-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.page-hero {
		padding-top: 50px;
	}
}

@media (max-width: 575px) {
	.class-switcher-grid {
		grid-template-columns: 1fr;
	}

	.review-stage {
		min-height: 320px;
	}

	.review-carousel {
		padding: 20px;
	}

	.review-carousel-title h3 {
		font-size: 22px;
	}

	.review-text {
		font-size: 16px;
	}

	.signup-modal {
		padding: 20px;
	}

	.signup-modal h3 {
		font-size: 24px;
	}

	.signup-modal-actions .btn {
		width: 100%;
		min-width: 0;
	}
}
