/*
 * ELNIQ GEO — ChatGPT Tracker for Chrome page
 * (/tools/chrome-extension/) section styles. Loaded only on this page
 * template. Values copied verbatim from
 * "ChatGPT Tracker for Chrome.dc.html". Header/breadcrumb/footer/
 * CTA-band styles are shared. This page's hero visual is a plain
 * rounded image frame (no macOS dots), so it does NOT use the shared
 * browser-mockup component.
 */

/* ------------------------------------------------------------ *
 * Hero
 * ------------------------------------------------------------ */
.eg-cext-hero {
	position: relative;
	padding: 56px 24px 24px;
}
.eg-cext-hero__grid {
	max-width: var(--eg-container-xl);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}
@media (min-width: 900px) {
	.eg-cext-hero__grid {
		grid-template-columns: minmax(340px, 1fr) minmax(340px, 1fr);
		gap: 64px;
	}
}
.eg-cext-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--eg-blue-tint-bg);
	color: var(--eg-blue);
	font-size: 12.5px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: var(--eg-radius-pill);
	margin-bottom: 20px;
}
.eg-cext-hero__title {
	font-size: clamp(32px, 4.4vw, 50px);
	font-weight: 800;
	color: var(--eg-text-heading);
	margin: 0 0 18px;
	letter-spacing: -0.01em;
	line-height: 1.08;
}
.eg-cext-hero__lede {
	font-size: 17px;
	color: var(--eg-text-secondary);
	margin: 0 0 32px;
	line-height: 1.6;
	max-width: 520px;
}
.eg-cext-hero__cta {
	font-size: 15px;
	padding: 14px 26px;
	box-shadow: none;
}
.eg-cext-hero__cta:hover,
.eg-cext-hero__cta:focus-visible {
	box-shadow: 0 8px 22px rgba(21, 93, 252, 0.32);
	filter: brightness(1.05);
}
.eg-cext-hero__visual {
	position: relative;
}
.eg-cext-hero__glow {
	position: absolute;
	top: -40px;
	right: -40px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(21, 93, 252, 0.14), rgba(21, 93, 252, 0) 70%);
	pointer-events: none;
}
.eg-cext-hero__frame {
	position: relative;
	border-radius: var(--eg-radius-card);
	overflow: hidden;
	box-shadow: 0 30px 70px rgba(16, 35, 95, 0.22);
}
.eg-cext-hero__frame img {
	width: 100%;
	height: auto;
	display: block;
}

/* Shared centered heading — margin-bottom set inline per instance
   (varies 36/44px in source, same pattern as the WordPress plugin page) */
.eg-cext-heading {
	margin: 0 auto;
	text-align: center;
}
.eg-cext-heading h2 {
	font-size: clamp(26px, 3.2vw, 36px);
	font-weight: 800;
	color: var(--eg-text-heading);
	margin: 0 0 14px;
	letter-spacing: -0.01em;
}
.eg-cext-heading--nomargin h2 {
	margin: 0;
}
.eg-cext-heading p {
	font-size: 16px;
	color: var(--eg-text-secondary);
	margin: 0;
}

/* ------------------------------------------------------------ *
 * Screenshot showcase sections
 * ------------------------------------------------------------ */
.eg-cext-shot-section {
	padding: 56px 24px 24px;
}
.eg-cext-shot-frame {
	max-width: 1100px;
	margin: 0 auto;
	border-radius: var(--eg-radius-card);
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(16, 35, 95, 0.14);
	border: 1px solid var(--eg-border-light);
}
.eg-cext-shot-frame img {
	width: 100%;
	height: auto;
	display: block;
}
.eg-cext-tags {
	max-width: 900px;
	margin: 24px auto 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}
.eg-cext-tags span {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--eg-text-heading);
	background: #fff;
	border: 1px solid var(--eg-border-light);
	padding: 8px 16px;
	border-radius: var(--eg-radius-pill);
}

/* ------------------------------------------------------------ *
 * "One score. Every visibility state." grid + lightbox
 * ------------------------------------------------------------ */
.eg-score-section {
	padding: 56px 24px 24px;
}
.eg-score-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media (min-width: 900px) {
	.eg-score-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.eg-score-image {
	display: block;
	width: 100%;
	padding: 0;
	border: 1px solid var(--eg-border-light);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 14px 36px rgba(16, 35, 95, 0.12);
	margin-bottom: 12px;
	cursor: zoom-in;
	background: none;
	transition: box-shadow 0.15s ease;
}
.eg-score-image:hover,
.eg-score-image:focus-visible {
	box-shadow: 0 20px 48px rgba(16, 35, 95, 0.2);
}
.eg-score-image img {
	width: 100%;
	height: auto;
	display: block;
}
.eg-score-legend {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
}
.eg-score-legend__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}
.eg-score-legend__label {
	font-size: 14px;
	font-weight: 700;
	color: var(--eg-text-heading);
}

.eg-score-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(7, 13, 36, 0.86);
	z-index: 400;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 40px 24px;
}
.eg-score-lightbox.is-open {
	display: flex;
}
.eg-score-lightbox__close {
	position: absolute;
	top: 24px;
	right: 28px;
	background: none;
	border: none;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	line-height: 1;
}
.eg-score-lightbox__prev,
.eg-score-lightbox__next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.eg-score-lightbox__prev:hover,
.eg-score-lightbox__next:hover {
	background: rgba(255, 255, 255, 0.2);
}
.eg-score-lightbox__prev { left: 16px; }
.eg-score-lightbox__next { right: 16px; }
.eg-score-lightbox__content {
	max-width: min(1000px, 90vw);
	max-height: 86vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}
.eg-score-lightbox__img {
	max-width: 100%;
	max-height: 72vh;
	border-radius: 14px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
	display: block;
}
.eg-score-lightbox__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
}
.eg-score-lightbox__label {
	font-size: 15px;
	font-weight: 700;
}
.eg-score-lightbox__counter {
	font-size: 13px;
	color: #8FA3D6;
}

/* ------------------------------------------------------------ *
 * Feature grid ("Why use the extension?")
 * ------------------------------------------------------------ */
.eg-cext-features {
	padding: 56px 24px 24px;
}
.eg-cext-features__grid {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media (min-width: 900px) {
	.eg-cext-features__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.eg-cext-feature {
	background: #fff;
	border: 1px solid var(--eg-border-light);
	border-radius: var(--eg-radius-card);
	padding: 26px 24px;
}
.eg-cext-feature__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}
.eg-cext-feature__check {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(21, 93, 252, 0.12);
	color: var(--eg-blue);
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.eg-cext-feature__title {
	font-size: 15.5px;
	font-weight: 700;
	color: var(--eg-text-heading);
}
.eg-cext-feature__desc {
	font-size: 14px;
	color: var(--eg-text-secondary);
	line-height: 1.55;
}

/* ------------------------------------------------------------ *
 * "Who is it for?" pill list
 * ------------------------------------------------------------ */
.eg-cext-audience-section {
	padding: 56px 24px 24px;
}
.eg-cext-audience-list {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}
.eg-cext-audience-pill {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border: 1px solid var(--eg-border-light);
	border-radius: var(--eg-radius-pill);
	padding: 14px 24px;
}
.eg-cext-audience-pill__icon {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(21, 93, 252, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.eg-cext-audience-pill span:last-child {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--eg-text-heading);
	white-space: nowrap;
}

/* ------------------------------------------------------------ *
 * Requirements + How it works two-column cards
 * ------------------------------------------------------------ */
.eg-cext-reqinstall-section {
	padding: 56px 24px 24px;
}
.eg-cext-reqinstall-grid {
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: stretch;
}
@media (min-width: 900px) {
	.eg-cext-reqinstall-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
.eg-cext-reqinstall-card {
	background: #fff;
	border: 1px solid var(--eg-border-light);
	border-radius: var(--eg-radius-card);
	padding: 32px;
	height: 100%;
	box-sizing: border-box;
}
.eg-cext-reqinstall-card h3 {
	font-size: 17px;
	font-weight: 800;
	color: var(--eg-text-heading);
	margin: 0 0 18px;
	letter-spacing: -0.01em;
}
.eg-cext-reqinstall-card__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.eg-cext-reqinstall-card__req {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14.5px;
	color: var(--eg-text-heading);
	font-weight: 600;
}
.eg-cext-reqinstall-card__req span:first-child {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(21, 93, 252, 0.12);
	color: var(--eg-blue);
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.eg-cext-reqinstall-card__steps {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.eg-cext-reqinstall-card__step {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.eg-cext-reqinstall-card__step-num {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--eg-blue-gradient);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}
.eg-cext-reqinstall-card__step-text {
	font-size: 14.5px;
	color: var(--eg-text-heading);
	font-weight: 600;
	line-height: 1.5;
	padding-top: 2px;
}

/* ------------------------------------------------------------ *
 * Final "ready to see your brand" band
 * ------------------------------------------------------------ */
.eg-cext-final-section {
	padding: 24px 24px 64px;
}
.eg-cext-final {
	max-width: 900px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--eg-border-light);
	border-radius: 20px;
	padding: 44px 48px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	box-shadow: 0 12px 40px rgba(16, 35, 95, 0.08);
}
.eg-cext-final__left {
	display: flex;
	align-items: center;
	gap: 20px;
}
.eg-cext-final__icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--eg-blue-tint-bg);
	display: flex;
	align-items: center;
	justify-content: center;
}
.eg-cext-final__left h3 {
	font-size: 21px;
	font-weight: 800;
	color: var(--eg-text-heading);
	margin: 0 0 6px;
	letter-spacing: -0.01em;
}
.eg-cext-final__left p {
	font-size: 14.5px;
	color: var(--eg-text-secondary);
	margin: 0;
	max-width: 420px;
}
.eg-cext-final__cta {
	flex-shrink: 0;
	white-space: nowrap;
	font-size: 14.5px;
	padding: 14px 26px;
}
