/* PII Discovery product page — selectors not already covered by assets/css/main.css. */

/* ── HERO (overrides + page-only classes) ── */
.hero {
	background: linear-gradient(160deg, #f0f5ff 0%, #fff 55%, #faf5ff 100%);
	padding: 88px 24px 96px;
	overflow: hidden;
}
.hero-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.hero-badge-dot { background: var(--green-500); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.hero-tagline {
	display: inline-block; font-size: 15px; font-weight: 600; color: var(--indigo-600);
	font-style: italic; margin-bottom: 16px; padding: 8px 20px;
	background: #f0f0ff; border-radius: var(--radius-sm);
	border-left: 3px solid var(--indigo-600);
}
.hero-sub { max-width: 600px; margin: 0 auto 36px; }
.hero-media {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 40px;
	max-width: 1320px;
	perspective: 1800px;
}
.hero-media-frame {
	position: relative;
	width: 100%;
	padding: 16px;
	border-radius: 30px;
	background:
		linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.78)),
		linear-gradient(135deg, rgba(37,99,235,.18), rgba(79,70,229,.12));
	border: 1px solid rgba(148,163,184,.22);
	box-shadow:
		0 40px 80px rgba(15,23,42,.14),
		-24px 22px 48px rgba(37,99,235,.12),
		inset 0 1px 0 rgba(255,255,255,.8);
	transform: none;
	transform-style: preserve-3d;
	transition: box-shadow .35s ease;
}
.hero-media-frame::before,
.hero-media-frame::after {
	content: "";
	position: absolute;
	pointer-events: none;
}
.hero-media-frame::before {
	inset: -18px -24px 28px 20px;
	border-radius: 34px;
	background: linear-gradient(135deg, rgba(59,130,246,.18), rgba(168,85,247,.08));
	filter: blur(24px);
	transform: translate3d(-22px, 28px, -60px);
	z-index: -2;
}
.hero-media-frame::after {
	top: 12px;
	left: 12px;
	width: 42%;
	height: 10px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,0));
	opacity: .9;
	transform: translateZ(40px);
}
.hero-media-frame img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 20px;
	border: 1px solid rgba(191,219,254,.9);
	box-shadow:
		0 12px 28px rgba(15,23,42,.08),
		0 0 0 1px rgba(255,255,255,.65);
	transform: translateZ(26px);
}
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-btn-primary {
	display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
	background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
	color: #fff; font-size: 15px; font-weight: 700; border-radius: var(--radius-md);
	border: none; cursor: pointer; box-shadow: 0 4px 20px rgba(37,99,235,.35);
	transition: transform .15s, box-shadow .15s; font-family: var(--font);
}
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,99,235,.45); }
.hero-btn-secondary {
	display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
	border: 1.5px solid var(--slate-300); color: var(--slate-700);
	font-size: 15px; font-weight: 600; border-radius: var(--radius-md);
	background: #fff; cursor: pointer; font-family: var(--font);
	transition: border-color .15s, color .15s, transform .15s;
}
.hero-btn-secondary:hover { border-color: var(--blue-600); color: var(--blue-600); transform: translateY(-2px); }
.hero-trust { margin-top: 32px; }
.hero-trust-chips { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.hero-trust-chip {
	display: inline-flex; align-items: center; gap: 5px;
	background: #fff; border: 1px solid var(--slate-200);
	border-radius: 999px; padding: 4px 12px;
	font-size: 12px; font-weight: 600; color: var(--slate-600);
	box-shadow: var(--shadow-sm);
}
.hero-trust-chip .chip-check { color: var(--green-500); flex-shrink: 0; }

/* ── STATS BAR ── */
.stats-bar {
	background: var(--white);
	border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200);
	padding: 40px 24px;
}
.stats-inner {
	max-width: 1200px; margin: 0 auto;
	display: grid; grid-template-columns: repeat(4,1fr);
	gap: 24px; text-align: center;
}
.stat-item { padding: 8px; }
.stat-val {
	font-size: 40px; font-weight: 800;
	background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
	-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
	line-height: 1.1;
}
.stat-label { font-size: 14px; color: var(--slate-500); margin-top: 6px; font-weight: 500; }

/* ── FEATURES ── */
.features { padding: 96px 24px; background: #fff; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 60px; }
.features-header .section-sub { margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-card {
	background: var(--white); border: 1px solid var(--slate-200);
	border-radius: var(--radius-lg); padding: 28px;
	transition: box-shadow .2s, transform .2s, border-color .2s; cursor: default;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-200); }
.feature-icon-wrap {
	width: 52px; height: 52px; border-radius: 14px;
	display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature-icon-wrap svg { width: 26px; height: 26px; }
.fi-blue   { background: #dbeafe; }
.fi-indigo { background: #e0e7ff; }
.fi-purple { background: #f3e8ff; }
.fi-green  { background: #dcfce7; }
.fi-orange { background: #ffedd5; }
.fi-teal   { background: #ccfbf1; }
.fi-pink   { background: #fce7f3; }
.fi-yellow { background: #fef9c3; }
.fi-red    { background: #fee2e2; }
.feature-title { font-size: 16px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.feature-desc  { font-size: 14px; color: var(--slate-500); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.how-it-works {
	padding: 96px 24px;
	background: linear-gradient(160deg, var(--blue-50) 0%, #f0f0ff 100%);
}
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 64px; }
.steps-grid {
	display: grid; grid-template-columns: repeat(4,1fr);
	gap: 24px; position: relative;
}
.steps-grid::before {
	content: ''; position: absolute;
	top: 44px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
	height: 2px;
	background: linear-gradient(90deg, #93c5fd, #a5b4fc);
	z-index: 0;
}
.step-card {
	background: #fff; border-radius: var(--radius-xl); padding: 32px 22px;
	text-align: center; position: relative; z-index: 1;
	box-shadow: var(--shadow-md); border: 1px solid var(--blue-100);
	transition: transform .2s, box-shadow .2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num {
	width: 48px; height: 48px; border-radius: 50%;
	background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
	color: #fff; font-size: 18px; font-weight: 800;
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 12px; box-shadow: 0 4px 14px rgba(37,99,235,.3);
}
.step-icon { font-size: 28px; margin-bottom: 12px; }
.step-title { font-size: 15px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.step-desc  { font-size: 13px; color: var(--slate-500); line-height: 1.65; }

/* ── DEEP DIVE ── */
.deep-dive { padding: 96px 24px; background: var(--white); }
.deep-inner {
	max-width: 1200px; margin: 0 auto;
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 64px; align-items: center;
}
.deep-inner.reverse { direction: rtl; }
.deep-inner.reverse > * { direction: ltr; }
.deep-check-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.deep-check-item { display: flex; align-items: flex-start; gap: 12px; }
.deep-check-dot {
	width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
	background: var(--green-100); display: flex; align-items: center; justify-content: center;
}
.deep-check-dot svg { width: 11px; height: 11px; }
.deep-check-text { font-size: 14.5px; color: var(--slate-600); line-height: 1.6; }
.deep-check-text strong { color: var(--slate-800); }

/* visual panel */
.visual-panel {
	background: var(--slate-50); border: 1px solid var(--slate-200);
	border-radius: 20px; padding: 28px; box-shadow: var(--shadow-md);
	position: relative; overflow: hidden;
}
.visual-panel::before {
	content: ''; position: absolute; top: -40px; right: -40px;
	width: 160px; height: 160px; border-radius: 50%;
	background: radial-gradient(circle, rgba(37,99,235,.08), transparent 70%);
	pointer-events: none;
}

/* pii chips */
.pii-category { margin-bottom: 18px; }
.pii-cat-label { font-size: 10.5px; font-weight: 700; color: var(--slate-400); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 7px; }
.pii-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.pii-chip { font-size: 11.5px; font-weight: 700; border-radius: 6px; padding: 4px 10px; letter-spacing: .02em; }
.chip-blue   { background: var(--blue-50);  color: var(--blue-700);  border: 1px solid var(--blue-100); }
.chip-indigo { background: #e0e7ff; color: #3730a3; border: 1px solid #c7d2fe; }
.chip-green  { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.chip-orange { background: #ffedd5; color: #c2410c; border: 1px solid #fed7aa; }
.chip-purple { background: #f3e8ff; color: #7e22ce; border: 1px solid #e9d5ff; }
.chip-teal   { background: #ccfbf1; color: #0f766e; border: 1px solid #99f6e4; }
.chip-slate  { background: var(--slate-100); color: var(--slate-600); border: 1px solid var(--slate-200); }

/* findings list */
.findings-list { display: flex; flex-direction: column; }
.finding-item {
	display: flex; align-items: center; gap: 10px;
	padding: 11px 0; border-bottom: 1px solid var(--slate-200);
}
.finding-item:last-child { border-bottom: none; }
.finding-icon { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.finding-icon svg { width: 14px; height: 14px; }
.finding-type { font-size: 12.5px; font-weight: 700; color: var(--slate-800); }
.finding-loc  { font-size: 11px; color: var(--slate-400); margin-top: 1px; }
.finding-badge { margin-left: auto; flex-shrink: 0; font-size: 10.5px; font-weight: 700; border-radius: 999px; padding: 3px 9px; }
.badge-critical { background: #fee2e2; color: #dc2626; }
.badge-high     { background: #ffedd5; color: #c2410c; }
.badge-medium   { background: #fef9c3; color: #a16207; }
.badge-resolved { background: #dcfce7; color: #16a34a; }

/* monitor list */
.monitor-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.monitor-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 12.5px; color: var(--slate-700); font-weight: 500; }
.monitor-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.monitor-dot.live { animation: pulse 2s infinite; }

/* ── DATA SOURCES ── */
.sources { padding: 96px 24px; background: var(--slate-50); }
.sources-inner { max-width: 1200px; margin: 0 auto; }
.sources-header { text-align: center; margin-bottom: 56px; }
.sources-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.source-card {
	background: #fff; border: 1px solid var(--slate-200);
	border-radius: var(--radius-xl); padding: 36px 28px;
	text-align: center; transition: box-shadow .2s, transform .2s, border-color .2s;
}
.source-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--blue-200); }
.source-icon-wrap {
	width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 20px;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 16px rgba(37,99,235,.15);
}
.source-icon-wrap svg { width: 34px; height: 34px; }
.source-title { font-size: 18px; font-weight: 800; color: var(--slate-900); margin-bottom: 10px; }
.source-desc  { font-size: 14px; color: var(--slate-500); line-height: 1.7; margin-bottom: 20px; }
.source-tags  { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.source-tag {
	font-size: 11.5px; font-weight: 600;
	background: var(--blue-50); color: var(--blue-700);
	border: 1px solid var(--blue-100); border-radius: 6px; padding: 4px 10px;
}

/* ── COMPLIANCE ── */
.compliance { padding: 96px 24px; background: #fff; }
.compliance-inner { max-width: 1200px; margin: 0 auto; }
.compliance-header { text-align: center; margin-bottom: 56px; }
.compliance-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.compliance-card {
	background: var(--white); border: 1.5px solid var(--slate-200);
	border-radius: var(--radius-lg); padding: 24px;
	transition: border-color .2s, box-shadow .2s;
}
.compliance-card.primary-reg {
	border-color: #93c5fd; background: var(--blue-50);
	box-shadow: 0 0 0 3px rgba(37,99,235,.06);
}
.compliance-card:hover { border-color: var(--blue-300); box-shadow: var(--shadow-md); }
.compliance-flag { font-size: 28px; margin-bottom: 10px; }
.compliance-name { font-size: 18px; font-weight: 800; color: var(--slate-900); margin-bottom: 4px; }
.compliance-full { font-size: 12px; color: var(--slate-400); margin-bottom: 14px; }
.compliance-tag-list { display: flex; flex-wrap: wrap; gap: 5px; }
.compliance-tag { font-size: 11px; font-weight: 500; background: var(--slate-100); color: var(--slate-600); border-radius: 5px; padding: 3px 8px; }
.primary-reg .compliance-tag { background: var(--blue-100); color: var(--blue-700); }
.compliance-primary-badge {
	display: inline-flex; align-items: center; gap: 5px;
	background: var(--blue-600); color: #fff;
	border-radius: 999px; padding: 3px 11px;
	font-size: 10.5px; font-weight: 700; letter-spacing: .04em;
	text-transform: uppercase; margin-bottom: 10px;
}

/* ── TESTIMONIALS SLIDER ── */
.testimonials { padding: 96px 0; background: var(--slate-50); }
.testi-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.testi-header { text-align: center; margin-bottom: 56px; }
.testi-slider-wrap {
	position: relative; overflow: hidden;
	mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.testi-track {
	display: flex; gap: 24px; width: max-content;
	animation: testi-scroll 36s linear infinite;
}
.testi-slider-wrap:hover .testi-track { animation-play-state: paused; }
@keyframes testi-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(calc(-50%)); }
}
.testi-card {
	background: #fff; border-radius: var(--radius-lg); padding: 28px;
	box-shadow: var(--shadow-sm); border: 1px solid var(--slate-200);
	flex-shrink: 0; width: 380px;
	transition: box-shadow .2s, transform .2s, border-color .2s;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-200); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars span { color: var(--yellow-400); font-size: 16px; }
.testi-quote { font-size: 14.5px; color: var(--slate-600); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
	width: 42px; height: 42px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 15px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--slate-800); }
.testi-role { font-size: 12px; color: var(--slate-400); }
.testi-company { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--slate-100); font-size: 12px; font-weight: 600; color: var(--blue-600); }
@media (prefers-reduced-motion: reduce) { .testi-track { animation: none; } }

/* ── BOTTOM CTA (this page uses a rounded gradient card, not the full-bleed default) ── */
.bottom-cta { padding: 60px 24px; background: var(--slate-50); }
.bottom-cta-card {
	max-width: 1200px; margin: 0 auto;
	background: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #9333ea 100%);
	border-radius: 20px; padding: 80px 48px; position: relative; overflow: hidden;
}
.bottom-cta-card::before {
	content: ''; position: absolute; inset: 0;
	background: radial-gradient(ellipse at 25% 70%, rgba(255,255,255,.09) 0%, transparent 55%),
				radial-gradient(ellipse at 80% 20%, rgba(139,92,246,.25) 0%, transparent 50%);
	pointer-events: none;
}
.bottom-cta-inner { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.bottom-cta .cta-tag {
	display: inline-flex; align-items: center; gap: 7px;
	background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
	color: rgba(255,255,255,.9); border-radius: 999px;
	padding: 6px 14px; font-size: 12.5px; font-weight: 600; margin-bottom: 24px;
}
.bottom-cta h2 {
	font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: #fff;
	line-height: 1.18; margin-bottom: 16px; letter-spacing: -.02em;
}
.bottom-cta h2 span { color: #facc15; }
.bottom-cta p { font-size: 17px; color: rgba(255,255,255,.75); margin-bottom: 32px; line-height: 1.7; }
.bottom-cta .cta-buttons { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.bottom-cta .cta-btn-white {
	display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px;
	background: #fff; color: var(--blue-700); font-size: 14.5px; font-weight: 700;
	border-radius: var(--radius-md); box-shadow: 0 4px 20px rgba(0,0,0,.18);
	transition: transform .15s, box-shadow .15s; border: none; cursor: pointer; font-family: var(--font);
}
.bottom-cta .cta-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }
.bottom-cta .cta-btn-ghost {
	display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px;
	background: transparent; color: #fff; font-size: 14.5px; font-weight: 600;
	border-radius: var(--radius-md); border: 1.5px solid rgba(255,255,255,.35);
	cursor: pointer; font-family: var(--font); transition: background .15s, transform .15s;
}
.bottom-cta .cta-btn-ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.cta-trust { font-size: 12.5px; color: rgba(255,255,255,.45); letter-spacing: .01em; }

/* ── RESPONSIVE (page-specific) ── */
@media (max-width: 1024px) {
	.features-grid { grid-template-columns: repeat(2,1fr); }
	.steps-grid { grid-template-columns: repeat(2,1fr); }
	.steps-grid::before { display: none; }
	.sources-grid { grid-template-columns: repeat(2,1fr); }
	.compliance-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
	.hero-media { margin-bottom: 32px; }
	.hero-media-frame {
		padding: 12px;
		border-radius: 24px;
	}
	.stats-inner { grid-template-columns: repeat(2,1fr); }
	.features-grid { grid-template-columns: 1fr; }
	.steps-grid { grid-template-columns: 1fr; }
	.deep-inner { grid-template-columns: 1fr; gap: 40px; }
	.deep-inner.reverse { direction: ltr; }
	.deep-inner-scan > :first-child { order: 2; }
	.deep-inner-scan > :last-child { order: 1; }
	.sources-grid { grid-template-columns: 1fr; }
	.compliance-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
	.hero-media-frame {
		padding: 10px;
		border-radius: 20px;
	}
	.stats-inner { grid-template-columns: 1fr 1fr; }
	.bottom-cta-card { padding: 48px 24px; }
}
