/*
 * ELNIQ GEO — AI Bot-Checker for WordPress page
 * (/tools/wordpress-plugin/) section styles. Loaded only on this page
 * template. Values copied verbatim from
 * "AI Bot-Checker for WordPress.dc.html". Header/breadcrumb/footer/
 * CTA-band/browser-mockup styles are shared.
 */

/* ------------------------------------------------------------ *
 * Hero
 * ------------------------------------------------------------ */
.eg-wpp-hero {
	position: relative;
	padding: 56px 24px 24px;
}
.eg-wpp-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-wpp-hero__grid {
		grid-template-columns: minmax(340px, 1fr) minmax(340px, 1fr);
		gap: 64px;
	}
}
.eg-wpp-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-wpp-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-wpp-hero__lede {
	font-size: 17px;
	color: var(--eg-text-secondary);
	margin: 0 0 32px;
	line-height: 1.6;
	max-width: 520px;
}
.eg-wpp-hero__cta {
	font-size: 15px;
	padding: 14px 26px;
	box-shadow: none;
}
.eg-wpp-hero__cta:hover,
.eg-wpp-hero__cta:focus-visible {
	box-shadow: 0 8px 22px rgba(21, 93, 252, 0.32);
	filter: brightness(1.05);
}

/* Shared centered heading pattern used across this page. Only
   max-width/text-align are common — margin-bottom genuinely varies
   per instance in the source (36/44/48px with no discernible pattern),
   so that's set inline per usage rather than guessed here. */
.eg-wpp-heading {
	margin: 0 auto;
	text-align: center;
}
.eg-wpp-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-wpp-heading--nomargin h2 {
	margin: 0;
}
.eg-wpp-heading p {
	font-size: 16px;
	color: var(--eg-text-secondary);
	margin: 0;
}

/* ------------------------------------------------------------ *
 * "Two ways to connect your website"
 * ------------------------------------------------------------ */
.eg-wpp-connect {
	padding: 64px 24px 24px;
}
.eg-wpp-connect__stack {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.eg-wpp-connect__option {
	width: 100%;
	background: #fff;
	border: 1px solid var(--eg-border-light);
	border-radius: var(--eg-radius-card);
	padding: 28px 32px;
}
.eg-wpp-connect__option--featured {
	border: 2px solid var(--eg-blue);
	box-shadow: 0 16px 40px rgba(21, 93, 252, 0.14);
}
.eg-wpp-connect__option-title {
	font-size: 16.5px;
	font-weight: 700;
	color: var(--eg-text-heading);
	margin-bottom: 6px;
}
.eg-wpp-connect__option-title span {
	color: var(--eg-blue);
}
.eg-wpp-connect__option-desc {
	font-size: 14.5px;
	color: var(--eg-text-secondary);
	margin-bottom: 16px;
}
.eg-wpp-connect__tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.eg-wpp-connect__tags span {
	font-size: 13px;
	font-weight: 600;
	color: var(--eg-text-secondary);
	background: var(--eg-section-bg-light);
	border: 1px solid var(--eg-border-light);
	padding: 6px 14px;
	border-radius: var(--eg-radius-pill);
}
.eg-wpp-connect__tags--featured span {
	color: var(--eg-blue);
	background: var(--eg-blue-tint-bg);
	border: none;
}
.eg-wpp-connect__arrow {
	font-size: 20px;
	color: var(--eg-text-muted-2);
	line-height: 1;
}
.eg-wpp-connect__note {
	max-width: 760px;
	margin: 32px auto 0;
	text-align: center;
}
.eg-wpp-connect__note p {
	font-size: 14.5px;
	color: var(--eg-text-secondary);
	line-height: 1.6;
	margin: 0;
}

/* ------------------------------------------------------------ *
 * Generic "card panel" (used by comparison text block, data
 * collected block, and the final ready-to-connect band)
 * ------------------------------------------------------------ */
.eg-wpp-panel-section {
	padding: 24px 24px 24px;
}
.eg-wpp-panel {
	max-width: 900px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--eg-border-light);
	border-radius: 20px;
	padding: 44px 48px;
}
.eg-wpp-panel h2 {
	font-size: 22px;
	font-weight: 800;
	color: var(--eg-text-heading);
	margin: 0 0 18px;
	letter-spacing: -0.01em;
}
.eg-wpp-panel p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--eg-text-secondary);
	margin: 0 0 14px;
}
.eg-wpp-panel p:last-child {
	color: var(--eg-text-heading);
	font-weight: 600;
	margin-bottom: 0;
}

/* ------------------------------------------------------------ *
 * Screenshot showcase (dashboard, events table)
 * ------------------------------------------------------------ */
.eg-wpp-shot-section {
	padding: 48px 24px 24px;
}
.eg-wpp-shot-section--tight {
	padding-top: 24px;
}
.eg-wpp-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-wpp-shot-frame img {
	width: 100%;
	height: auto;
	display: block;
}
.eg-wpp-shot-note {
	max-width: 640px;
	margin: 20px auto 0;
	text-align: center;
}
.eg-wpp-shot-note p {
	font-size: 14px;
	color: var(--eg-text-muted-2);
	margin: 0;
}

/* ------------------------------------------------------------ *
 * Feature grid ("Why use the plugin?")
 * ------------------------------------------------------------ */
.eg-wpp-features {
	padding: 64px 24px 24px;
}
.eg-wpp-features__grid {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media (min-width: 900px) {
	.eg-wpp-features__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.eg-wpp-feature {
	background: #fff;
	border: 1px solid var(--eg-border-light);
	border-radius: var(--eg-radius-card);
	padding: 26px 24px;
}
.eg-wpp-feature__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}
.eg-wpp-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-wpp-feature__title {
	font-size: 15.5px;
	font-weight: 700;
	color: var(--eg-text-heading);
}
.eg-wpp-feature__desc {
	font-size: 14px;
	color: var(--eg-text-secondary);
	line-height: 1.55;
}

/* ------------------------------------------------------------ *
 * Data collected panel
 * ------------------------------------------------------------ */
.eg-wpp-panel--data {
	max-width: 760px;
	padding: 40px 48px;
}
.eg-wpp-panel--data h2 {
	font-size: 20px;
	margin-bottom: 6px;
}
.eg-wpp-panel--data .eg-wpp-panel--data__sub {
	font-size: 14px;
	line-height: normal;
	color: var(--eg-text-muted-2);
	margin: 0 0 20px;
}
.eg-wpp-panel--data__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.eg-wpp-panel--data__tags span {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--eg-text-heading);
	background: var(--eg-section-bg-light);
	border: 1px solid var(--eg-border-light);
	padding: 8px 16px;
	border-radius: var(--eg-radius-pill);
}

/* ------------------------------------------------------------ *
 * "Who is it for?" pill list
 * ------------------------------------------------------------ */
.eg-wpp-audience-section {
	padding: 64px 24px 24px;
}
.eg-wpp-audience-list {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}
.eg-wpp-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-wpp-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-wpp-audience-pill span:last-child {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--eg-text-heading);
	white-space: nowrap;
}

/* ------------------------------------------------------------ *
 * Requirements + Installation two-column cards
 * ------------------------------------------------------------ */
.eg-wpp-reqinstall-section {
	padding: 64px 24px 24px;
}
.eg-wpp-reqinstall-grid {
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: stretch;
}
@media (min-width: 900px) {
	.eg-wpp-reqinstall-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
.eg-wpp-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-wpp-reqinstall-card h3 {
	font-size: 17px;
	font-weight: 800;
	color: var(--eg-text-heading);
	margin: 0 0 18px;
	letter-spacing: -0.01em;
}
.eg-wpp-reqinstall-card__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.eg-wpp-reqinstall-card__req {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14.5px;
	color: var(--eg-text-heading);
	font-weight: 600;
}
.eg-wpp-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-wpp-reqinstall-card__steps {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.eg-wpp-reqinstall-card__step {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.eg-wpp-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-wpp-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 connect" band
 * ------------------------------------------------------------ */
.eg-wpp-final-section {
	padding: 24px 24px 64px;
}
.eg-wpp-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-wpp-final__left {
	display: flex;
	align-items: center;
	gap: 20px;
}
.eg-wpp-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-wpp-final__left h3 {
	font-size: 21px;
	font-weight: 800;
	color: var(--eg-text-heading);
	margin: 0 0 6px;
	letter-spacing: -0.01em;
}
.eg-wpp-final__left p {
	font-size: 14.5px;
	color: var(--eg-text-secondary);
	margin: 0;
	max-width: 420px;
}
.eg-wpp-final__cta {
	flex-shrink: 0;
	white-space: nowrap;
	font-size: 14.5px;
	padding: 14px 26px;
}
