/* Platform Page Styles */

/* ============================================
   Platform Why CTEM Section (moved to top for CSS parsing)
   ============================================ */

.why-ctem-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto;
}

.why-ctem-problems,
.why-ctem-solutions {
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 4px 20px var(--black-06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-ctem-problems:hover,
.why-ctem-solutions:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px var(--black-10);
}

.why-ctem-problems {
	border-top: 4px solid var(--threats-color);
	background: linear-gradient(180deg, var(--threats-05) 0%, var(--card-bg) 100%);
}

.why-ctem-solutions {
	border-top: 4px solid var(--uncovery-color);
	background: linear-gradient(180deg, var(--uncovery-05) 0%, var(--card-bg) 100%);
}

.why-ctem-problems h3 {
	color: var(--threats-color);
	font-size: 1.15rem;
	margin: 0 0 1.5rem 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.why-ctem-solutions h3 {
	color: var(--uncovery-color);
	font-size: 1.15rem;
	margin: 0 0 1.5rem 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.problem-list,
.solution-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.problem-list li,
.solution-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--border-color);
	font-size: 0.95rem;
	line-height: 1.5;
	transition: background 0.2s ease;
}

.problem-list li:last-child,
.solution-list li:last-child {
	border-bottom: none;
}

.problem-icon,
.solution-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.problem-icon {
	background: var(--threats-10);
	color: var(--threats-color);
}

.solution-icon {
	background: var(--uncovery-10);
	color: var(--uncovery-color);
}

.problem-list li span:last-child,
.solution-list li span:last-child {
	padding-top: 5px;
}

.why-ctem-grid-three {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.why-ctem-card {
	padding: 2.5rem;
	border-radius: 16px;
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	text-align: center;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.why-ctem-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px var(--black-10);
}

.why-ctem-card .card-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.why-ctem-card h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.why-ctem-card p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--text-secondary);
	margin: 0 !important;
}

.why-ctem-card.uncovery {
	border-top: 4px solid var(--uncovery-color);
}

.why-ctem-card.uncovery .card-icon {
	background: var(--uncovery-10);
	color: var(--uncovery-color);
}

.why-ctem-card.uncovery h3 {
	color: var(--uncovery-color);
}

.why-ctem-card.security {
	border-top: 4px solid var(--security-color);
}

.why-ctem-card.security .card-icon {
	background: var(--security-10);
	color: var(--security-color);
}

.why-ctem-card.security h3 {
	color: var(--security-color);
}

.why-ctem-card.threats {
	border-top: 4px solid var(--threats-color);
}

.why-ctem-card.threats .card-icon {
	background: var(--threats-10);
	color: var(--threats-color);
}

.why-ctem-card.threats h3 {
	color: var(--threats-color);
}

@media (max-width: 900px) {
	.why-ctem-grid-three {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* ============================================ */
.platform-hero {
	min-height: 120vh;
	background: radial-gradient(circle at 0% 0%, var(--dark-navy) 0%, var(--dark-navy-light) 100%);
	color: var(--white-color);
	padding: 15rem 0 4rem;
	margin: 0;
	border-radius: 0;
	position: relative;
	overflow: hidden;

	h1 {
		text-align: left;
	}
}

.platform-hero .hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 4rem;
	align-items: center;
	text-align: left;
}

/* Animated mesh gradient and orbs */
.platform-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -20%;
	width: 140%;
	height: 140%;
	background:
		radial-gradient(ellipse at 20% 30%, var(--uncovery-15) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 70%, var(--threats-12) 0%, transparent 50%),
		radial-gradient(ellipse at 50% 10%, var(--security-10) 0%, transparent 40%);
	filter: blur(60px);
	animation: heroMeshReveal 10s ease-in-out infinite alternate;
	pointer-events: none;
	z-index: 0;
}

@keyframes heroMeshReveal {
	0% {
		transform: scale(1) translate(0, 0);
		opacity: 0.7;
	}

	100% {
		transform: scale(1.1) translate(2%, 2%);
		opacity: 1;
	}
}

.platform-hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	right: -10%;
	width: 60%;
	height: 150%;
	background: radial-gradient(ellipse at center, var(--threats-12) 0%, transparent 55%);
	animation: heroOrbFloat 15s ease-in-out infinite reverse;
	pointer-events: none;
}

@keyframes heroOrbFloat {

	0%,
	100% {
		transform: translateY(0) scale(1);
	}

	50% {
		transform: translateY(-20px) scale(1.05);
	}
}

/* Grid overlay for tech feel */
.platform-hero .container {
	position: relative;
	z-index: 1;
}

.platform-hero .container::before {
	content: '';
	position: absolute;
	top: -500px;
	left: -100%;
	right: -100%;
	bottom: -500px;
	background-image:
		linear-gradient(to right, var(--white-05) 1px, transparent 1px),
		linear-gradient(to bottom, var(--white-05) 1px, transparent 1px);
	background-size: 40px 40px;
	mask-image: radial-gradient(circle at center, black, transparent 80%);
	-webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
	pointer-events: none;
	z-index: -1;
}



.platform-hero .hero-cta {
	margin-top: 3rem;
}

.hero-image {
	position: relative;
	perspective: 1000px;
}

.hero-image .browser-frame {
	transform: rotateY(-10deg) rotateX(5deg);
	transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
	box-shadow: -20px 40px 80px var(--black-50);
	border: 1px solid var(--white-10);
	border-radius: 12px;
	overflow: hidden;
}

.hero-image:hover .browser-frame {
	transform: rotateY(-5deg) rotateX(2deg) translateY(-10px);
}

.agent-price a {
	color: var(--uncovery-color);
	text-decoration: none;
	font-weight: 700;
	transition: color 0.3s ease;
	border-bottom: 1px dashed var(--uncovery-color);
}

.agent-price a:hover {
	color: #fff;
	background: var(--uncovery-color);
	border-bottom-color: transparent;
	padding: 2px 4px;
	border-radius: 4px;
}

@media (max-width: 1100px) {
	.platform-hero .hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
		padding-top: 4rem;
	}

	.platform-hero .intro {
		margin: 0 auto;
	}

	.hero-image .browser-frame {
		transform: none;
		max-width: 700px;
		margin: 3rem auto 0;
	}
}

.platform-pricing {
	padding: 3rem 0;
	background: var(--foreground-color);
}

.platform-pricing h2 {
	text-align: center;
	margin-bottom: 3rem;
}

.pricing-module {
	margin-bottom: 2.5rem;
	background: var(--card-bg);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 5px 30px var(--black-08);
	border: 1px solid var(--border-color);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pricing-module:hover {
	box-shadow: 0 8px 40px var(--black-12);
	transform: translateY(-2px);
}

.module-header {
	display: flex;
	align-items: center;
	padding: 1.5rem 2rem;
	color: white;
	gap: 1.5rem;
	border-radius: 16px 16px 0 0;
}

/* Gradient headers for visual depth */
.module-header.uncovery-bg {
	background: linear-gradient(135deg, var(--uncovery-color) 0%, #0a9f74 60%, #088a65 100%) !important;
}

.module-header.security-bg {
	background: linear-gradient(135deg, #0078d4 0%, var(--security-color) 50%, #5542e8 100%) !important;
}

.module-header.threats-bg {
	background: linear-gradient(135deg, #8b2fc9 0%, var(--threats-color) 50%, #c044ff 100%) !important;
}

.module-header img {
	width: 50px;
	height: 50px;
	filter: brightness(0) invert(1);
}

.module-header h3 {
	margin: 0 0 0.25rem 0;
	font-size: 1.4rem;
}

/* Offering type badges for pricing modules */
.offering-badge {
	display: inline-block;
	padding: 0.2rem 0.6rem;
	border-radius: 4px;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.5rem;
}

.offering-badge.offering-product {
	background: var(--white-20);
	color: white;
	border: 1px solid var(--white-30);
}

.offering-badge.offering-service {
	background: rgba(255, 204, 0, 0.2);
	color: var(--accent-color);
	border: 1px solid var(--accent-40);
}

.module-header p {
	margin: 0;
	opacity: 0.9;
	font-size: 0.95rem;
}

.pricing-table-wrapper {
	overflow-x: auto;
	padding: 1.5rem;
}

.pricing-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.pricing-table th,
.pricing-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid var(--background-color);
}

.pricing-table th {
	font-weight: 600;
	color: var(--primary-color);
	background: var(--background-color);
}

.pricing-table .offer-name {
	font-weight: 600;
}

.pricing-table tr.highlight {
	background: rgba(85, 66, 232, 0.05);
}

.pricing-table tr.highlight .offer-name {
	color: var(--primary-color);
}

.pricing-cards {
	display: flex;
	justify-content: center;
	gap: 2rem;
	padding: 2rem;
	flex-wrap: wrap;
}

.pricing-card {
	background: var(--background-color);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	min-width: 220px;
	flex: 1;
	max-width: 280px;
	position: relative;
}

.pricing-card.popular {
	border: 2px solid var(--security-color);
	transform: scale(1.05);
}

.pricing-card .badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--security-color);
	color: white;
	padding: 0.25rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.pricing-card h4 {
	margin: 0 0 1rem 0;
	font-size: 1.3rem;
}

.pricing-card .price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
}

.pricing-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
}

.pricing-card ul li {
	padding: 0.5rem 0;
	font-size: 0.9rem;
	border-top: 1px solid var(--foreground-color);
}

.threats-cards .pricing-card {
	min-width: 180px;
}

.features-list {
	padding: 1.5rem 2rem 2rem;
	border-top: 1px solid var(--background-color);
}

.features-list h4 {
	text-align: center;
	margin: 0 0 1.5rem 0;
	color: var(--security-color);
}

.pricing-module.threats .features-list h4 {
	color: var(--threats-color);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 0.75rem 1.5rem;
}

.features-grid span {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	padding: 0.4rem 0;
}

/* Security module check icons */
.pricing-module.security .features-grid i,
.pricing-module.security .features-grid svg {
	color: var(--security-color);
	flex-shrink: 0;
}

/* Threats module check icons */
.pricing-module.threats .features-grid i,
.pricing-module.threats .features-grid svg {
	color: var(--threats-color);
	flex-shrink: 0;
}

/* Final CTA Section */
.platform-final-cta {
	text-align: center;
	padding: 4rem 0;
	background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy-light) 100%);
	color: var(--white-color);
}

.platform-final-cta .container {
	text-align: center;
}

.platform-final-cta h2 {
	font-size: 2rem;
	margin-bottom: 0.75rem;
	color: var(--white-color);
	text-align: center;
}

.platform-final-cta p {
	font-size: 1.1rem;
	color: var(--white-85);
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.platform-final-cta .button.primary {
	background: linear-gradient(135deg, var(--uncovery-color) 0%, #0a9f74 100%) !important;
	border: none !important;
	padding: 0.9rem 2.5rem;
	font-size: 1.05rem;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(11, 183, 131, 0.3);
	transition: all 0.3s ease;
	color: #fff !important;
}

.platform-final-cta .button.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(11, 183, 131, 0.4);
}

/* Uncovery Agents Pricing */
.agents-pricing {
	padding: 1.5rem 2rem 2rem;
	border-top: 1px solid var(--background-color);
}

.agents-pricing h4 {
	text-align: center;
	margin: 0 0 0.5rem;
	color: var(--uncovery-color);
}

.agents-intro {
	text-align: center;
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin: 0 0 1.5rem;
}

.agents-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.agent-card {
	background: var(--background-color);
	border-radius: 8px;
	padding: 1rem;
	text-align: center;
	position: relative;
}

.agent-type {
	display: inline-block;
	padding: 0.15rem 0.5rem;
	border-radius: 4px;
	font-size: 0.65rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.5rem;
}

.agent-type.passive {
	background: var(--uncovery-10);
	color: var(--uncovery-color);
}

.agent-type.active {
	background: var(--security-10);
	color: var(--security-color);
}

.agent-card h5 {
	font-size: 0.9rem;
	margin: 0 0 0.5rem;
	color: var(--text-primary);
}

.agent-card p {
	font-size: 0.75rem;
	margin: 0 0 0.75rem;
	color: var(--text-secondary);
	line-height: 1.4;
}

.agent-price {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--primary-color);
}

@media (max-width: 900px) {
	.agents-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.agents-grid {
		grid-template-columns: 1fr;
	}
}

/* CTEM Cycle Section Redesign */
.ctem-grid {
	display: grid;
	grid-template-columns: 40% 60%;
	gap: 4rem;
	align-items: start;
}

.ctem-left {
	position: sticky;
	top: 120px;

	h2 {
		text-align: left;
	}

	p {
		text-align: left;
	}
}

.ctem-right {
	padding-left: 2rem;
}

.ctem-timeline {
	position: relative;
}

.timeline-line {
	position: absolute;
	left: 20px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom,
			var(--uncovery-color) 0%,
			var(--security-color) 50%,
			var(--threats-color) 100%);
	opacity: 0.3;
}

.ctem-steps-vertical {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.ctem-step-v {
	display: flex;
	gap: 2.5rem;
	align-items: flex-start;
	position: relative;
	transition: all 0.3s ease;
}

.step-num {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--card-bg);
	border: 2px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--text-primary);
	flex-shrink: 0;
	z-index: 2;
	position: relative;
	transition: all 0.3s ease;
}

.ctem-step-v[data-step="1"] .step-num {
	border-color: var(--uncovery-color);
	box-shadow: 0 0 10px rgba(11, 183, 131, 0.2);
}

.ctem-step-v[data-step="2"] .step-num,
.ctem-step-v[data-step="3"] .step-num,
.ctem-step-v[data-step="4"] .step-num {
	border-color: var(--security-color);
	box-shadow: 0 0 10px rgba(0, 137, 247, 0.2);
}

.ctem-step-v[data-step="5"] .step-num {
	border-color: var(--threats-color);
	box-shadow: 0 0 10px rgba(161, 51, 255, 0.2);
}

.ctem-step-v:hover .step-num {
	/* transform: scale(1.1); */
	background: var(--white-color);
}

.ctem-step-v[data-step="1"]:hover .step-num {
	box-shadow: 0 0 20px rgba(11, 183, 131, 0.4);
}

.ctem-step-v[data-step="2"]:hover .step-num,
.ctem-step-v[data-step="3"]:hover .step-num,
.ctem-step-v[data-step="4"]:hover .step-num {
	box-shadow: 0 0 20px var(--security-40);
}

.ctem-step-v[data-step="5"]:hover .step-num {
	box-shadow: 0 0 20px rgba(161, 51, 255, 0.4);
}

.step-content {
	background: var(--card-bg);
	padding: 1.5rem 2rem;
	border-radius: 16px;
	border: 1px solid var(--border-color);
	flex: 1;
	transition: all 0.3s ease;

	p {
		margin-bottom: 0 !important;
	}
}

.ctem-step-v:hover .step-content {
	border-color: var(--primary-color);
	transform: translateX(10px);
	box-shadow: 0 10px 30px var(--black-05);
}

.ctem-step-v[data-step="1"]:hover .step-content {
	border-color: var(--uncovery-color);
}

.ctem-step-v[data-step="2"]:hover .step-content,
.ctem-step-v[data-step="3"]:hover .step-content,
.ctem-step-v[data-step="4"]:hover .step-content {
	border-color: var(--security-color);
}

.ctem-step-v[data-step="5"]:hover .step-content {
	border-color: var(--threats-color);
}

.step-content h4 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.step-content p {
	font-size: 1rem;
	color: var(--text-secondary);
	margin: 0;
	line-height: 1.5;
	text-align: left;
}

.ctem-cycle-return {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-top: 1rem;
	padding-left: 20px;
	position: relative;
}

.return-arrow-dotted {
	width: 2px;
	height: 60px;
	border-left: 2px dotted var(--primary-color);
	position: absolute;
	left: 0;
	bottom: 100%;
	opacity: 0.5;
}

.return-arrow-dotted::after {
	content: '';
	position: absolute;
	top: 0;
	left: -5px;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-bottom: 6px solid var(--primary-color);
}

.cycle-label {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-left: 2.5rem;
}

@media (max-width: 1024px) {
	.ctem-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.ctem-left {
		position: static;
		text-align: center;
	}

	.ctem-left h2,
	.ctem-left .section-intro {
		text-align: center;
	}

	.ctem-right {
		padding-left: 0;
	}
}

@media (max-width: 600px) {
	.ctem-step-v {
		gap: 1.5rem;
	}

	.step-content {
		padding: 1.25rem 1.5rem;
	}

	.step-content h4 {
		font-size: 1.1rem;
	}

	.step-content p {
		font-size: 0.9rem;
	}
}


.ctem-step:not(:last-child):hover::after {
	border-left-color: var(--primary-color);
}

@media (max-width: 1000px) {
	.ctem-steps {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}

	.ctem-step:nth-child(3)::after {
		display: none;
	}
}

@media (max-width: 600px) {
	.ctem-steps {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.ctem-step::after {
		display: none !important;
	}
}

.step-number {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
	margin: 0 auto 1rem;
}

.ctem-step h4 {
	font-size: 1rem;
	margin: 0 0 0.5rem;
	color: var(--text-primary);
}

.ctem-step p {
	font-size: 0.85rem;
	margin: 0;
	color: var(--text-secondary);
	line-height: 1.4;
	/* Flex-grow to push badge to bottom - ensures equal card heights */
	flex: 1;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	text-align: center;
	padding-top: 0.25rem;
}

/* Step Module Badges */
.step-module {
	display: inline-block;
	padding: 0.25rem 0.65rem;
	border-radius: 12px;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	/* Auto margin pushes badge to bottom of flex container */
	margin-top: auto;
	flex-shrink: 0;
}

.step-module.uncovery {
	background: rgba(11, 183, 131, 0.12);
	color: var(--uncovery-color);
}

.step-module.security {
	background: var(--security-12);
	color: var(--security-color);
}

.step-module.threats {
	background: var(--threats-12);
	color: var(--threats-color);
}

.step-module.platform-all {
	background: linear-gradient(135deg, var(--uncovery-10), var(--security-10), var(--threats-10));
	color: var(--primary-color);
	border: 1px solid rgba(0, 137, 247, 0.2);
}

/* Platform Features Section */
.features-intro {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 3rem;
	color: var(--text-secondary);
}

.features-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 1000px;
	margin: 0 auto;
	/* Ensure equal height cards */
	align-items: stretch;
}

.platform-features .feature-card {
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 1.75rem;
	text-align: center;
	transition: all 0.25s ease;
	/* Flexbox for equal heights */
	display: flex;
	flex-direction: column;
	min-height: 200px;
}

.platform-features .feature-card:hover {
	transform: translateY(-4px);
}

.feature-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--security-10), rgba(85, 66, 232, 0.1));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: var(--primary-color);
}

/* Cycle icon colors: green, blue, purple */
.platform-features .feature-card:nth-child(3n+1) .feature-icon {
	background: linear-gradient(135deg, var(--uncovery-10), rgba(10, 159, 116, 0.1));
	color: var(--uncovery-color);
}

.platform-features .feature-card:nth-child(3n+2) .feature-icon {
	background: linear-gradient(135deg, var(--security-10), rgba(85, 66, 232, 0.1));
	color: var(--primary-color);
}

.platform-features .feature-card:nth-child(3n) .feature-icon {
	background: linear-gradient(135deg, var(--threats-10), rgba(192, 68, 255, 0.1));
	color: var(--threats-color);
}

/* Match hover border color to icon color */
.platform-features .feature-card:nth-child(3n+1):hover {
	border-color: var(--uncovery-color);
	box-shadow: 0 8px 24px rgba(11, 183, 131, 0.12);
}

.platform-features .feature-card:nth-child(3n+2):hover {
	border-color: var(--primary-color);
	box-shadow: 0 8px 24px var(--security-12);
}

.platform-features .feature-card:nth-child(3n):hover {
	border-color: var(--threats-color);
	box-shadow: 0 8px 24px var(--threats-12);
}

.feature-icon svg {
	width: 24px;
	height: 24px;
}

.platform-features .feature-card h4 {
	font-size: 1.1rem;
	margin: 0 0 0.5rem;
	color: var(--text-primary);
}

.platform-features .feature-card p {
	font-size: 0.95rem;
	margin: 0;
	color: var(--text-secondary);
	line-height: 1.5;
	/* Push content to fill available space */
	flex-grow: 1;
}

@media (max-width: 900px) {
	.features-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.platform-hero h1 {
		font-size: 2rem;
	}

	.module-header {
		flex-direction: column;
		text-align: center;
	}

	.pricing-cards {
		flex-direction: column;
		align-items: center;
	}

	.pricing-card.popular {
		transform: none;
	}

	.pricing-card {
		max-width: 100%;
		width: 100%;
	}

	.features-cards {
		grid-template-columns: 1fr;
	}
}


/* ============================================
   Platform Strengths Section
   ============================================ */

.platform-strengths .container {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 6rem;
	align-items: flex-start;
}

.strengths-badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: var(--security-10);
	color: var(--security-color);
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 30px;
	margin-bottom: 1.5rem;
}

.strengths-content h2 {
	text-align: left;
	font-size: 3rem;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
	max-width: 600px;
}

.strengths-content .subtitle {
	text-align: left;
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
	line-height: 1.3;
}

.strengths-content p:not(.subtitle) {
	text-align: left;
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	max-width: 700px;
}

.strengths-grid-items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem;
	margin-bottom: 4rem;
}

.strength-item {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	transition: transform 0.3s ease;
}

.strength-item:hover {
	transform: translateX(5px);
}

.strength-icon {
	width: 48px;
	height: 48px;
	background: var(--white-color);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 16px var(--black-06);
	color: var(--security-color);
	flex-shrink: 0;
	border: 1px solid var(--border-color);
}

.strength-text h4 {
	font-size: 1.1rem;
	margin-bottom: 0.4rem;
	color: var(--text-primary);
	font-weight: 700;
	text-align: left;
}

.strength-text p {
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0 !important;
	color: var(--text-secondary);
}

.strengths-visual {
	position: sticky;
	top: 15vh;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: visible;
	/* We want the ornament to glow, but clip it if needed at a higher level */
}

.strength-badge-card {
	background: var(--white-color);
	padding: 3.5rem 2.5rem;
	border-radius: 32px;
	box-shadow: 0 40px 80px var(--black-12);
	border: 1px solid var(--black-05);
	text-align: center;
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 360px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.strength-badge-card:hover {
	transform: translateY(-12px) rotate(1deg);
	box-shadow: 0 50px 100px var(--black-15);
}

.expert-avatar {
	position: relative;
	width: 120px;
	height: 120px;
	margin: 0 auto 1.5rem;
}

.expert-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #fff;
	box-shadow: 0 8px 20px var(--black-10);
}

.avatar-ring {
	position: absolute;
	top: -8px;
	left: -8px;
	right: -8px;
	bottom: -8px;
	border-radius: 50%;
	border: 2px dashed var(--security-color);
	animation: rotateAvatarRing 20s linear infinite;
	opacity: 0.4;
}

@keyframes rotateAvatarRing {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.live-indicator {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--uncovery-10);
	padding: 0.35rem 0.85rem;
	border-radius: 20px;
	margin-bottom: 2rem;
}

.live-indicator .dot {
	width: 8px;
	height: 8px;
	background: #0bb783;
	border-radius: 50%;
	animation: pulseLive 2s infinite;
}

@keyframes pulseLive {
	0% {
		transform: scale(1);
		opacity: 1;
		box-shadow: 0 0 0 0 rgba(11, 183, 131, 0.7);
	}

	70% {
		transform: scale(1.1);
		opacity: 0.7;
		box-shadow: 0 0 0 8px rgba(11, 183, 131, 0);
	}

	100% {
		transform: scale(1);
		opacity: 1;
		box-shadow: 0 0 0 0 rgba(11, 183, 131, 0);
	}
}

.live-indicator .text {
	font-size: 0.75rem;
	font-weight: 700;
	color: #0bb783;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.strength-badge-card .badge-text {
	display: block;
	font-weight: 800;
	font-size: 1.5rem;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.strength-badge-card .badge-subtext {
	color: var(--text-secondary);
	font-size: 0.95rem;
	font-weight: 500;
}

.badge-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 140%;
	height: 140%;
	background: radial-gradient(circle, rgba(0, 137, 247, 0.08) 0%, transparent 70%);
	z-index: -1;
	pointer-events: none;
}

@media (max-width: 1200px) {
	.platform-strengths .container {
		gap: 3rem;
	}
}

@media (max-width: 1024px) {
	.platform-strengths {
		padding: 6rem 0;
	}

	.platform-strengths .container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 4rem;
	}

	.strengths-content h2,
	.strengths-content p:not(.subtitle) {
		margin-left: auto;
		margin-right: auto;
	}

	.strengths-grid-items {
		text-align: left;
		max-width: 800px;
		margin-left: auto;
		margin-right: auto;
	}

	.strengths-visual {
		position: static;
	}
}

@media (max-width: 600px) {
	.strengths-grid-items {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.strengths-content h2 {
		font-size: 2.2rem;
	}

	.strength-badge-card {
		padding: 2.5rem 1.5rem;
	}
}



/* ============================================
   Module Banners Sections (Flow Layout)
   ============================================ */

.module-banner-section {
	position: relative;
	transition: background-color 0.4s ease;
	padding: 3rem 0;
	font-size: 4rem !important;

	img {
		width: 3.5rem !important;
	}
}

.module-banner-section:last-of-type {
	border-bottom: none;
}

.module-banner {
	display: block;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	margin: 0;
	color: inherit;
	z-index: 1;
}

/* Centered Header */
.banner-header {
	text-align: center;
	margin-bottom: 3rem;
}

.banner-header p {
	font-size: 1.35rem;
	font-weight: 500;
	color: var(--text-secondary);
	max-width: 850px;
	margin: 1rem auto 0;
	line-height: 1.4;
	opacity: 0.85;
	letter-spacing: -0.01em;
}

.header-main {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
}

.header-main img {
	height: 48px;
	width: auto;
	object-fit: contain;
	transition: filter 0.3s ease;
}

.header-main h2 {
	font-size: 3rem;
	font-weight: 800;
	margin: 0;
	line-height: 1.1;
	color: var(--text-primary);
	transition: color 0.3s ease;
}

/* Flow Grid: Step -> Arrow -> Work -> Arrow -> Output */
.banner-flow-grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	gap: 1.5rem;
	align-items: stretch;
	max-width: 1250px;
	margin: 0 auto;
}

.flow-step {
	padding: 1.5rem;
	background: var(--gray-50);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	transition: all 0.3s ease;
}

.step-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0 0 1rem 0;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	position: relative;
	padding-bottom: 0.6rem;
	border-bottom: 2px solid var(--black-05);
}

.step-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.step-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	font-size: 1.1rem;
	line-height: 1.5;
	color: var(--text-secondary);
	transition: color 0.3s ease;
	text-align: left;
}

.step-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
	flex-shrink: 0;
	opacity: 0.8;
}

.flow-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.3s ease;
}

/* Module-specific color overrides */
.uncovery .flow-arrow,
.uncovery .feature-item svg,
.uncovery .banner-cta,
.uncovery .agent-price {
	color: var(--uncovery-color) !important;
}

.uncovery .feature-item svg {
	filter: drop-shadow(0 0 8px rgba(11, 183, 131, 0.3));
}

.security .flow-arrow,
.security .feature-item svg,
.security .banner-cta,
.security .agent-price {
	color: var(--security-color) !important;
}

.security .feature-item svg {
	filter: drop-shadow(0 0 8px rgba(0, 137, 247, 0.3));
}

.threats .flow-arrow,
.threats .feature-item svg,
.threats .banner-cta,
.threats .agent-price {
	color: var(--threats-color) !important;
}

.threats .feature-item svg {
	filter: drop-shadow(0 0 8px rgba(133, 76, 255, 0.3));
}

/* Footer CTA */
.banner-footer {
	display: flex;
	justify-content: center;
	margin-top: 3rem;
}

.banner-cta {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.banner-cta svg {
	transition: transform 0.3s ease;
}

/* Hover States (Full Section) */
.module-banner-section.uncovery:hover {
	background-color: var(--uncovery-color) !important;
}

.module-banner-section.security:hover {
	background-color: var(--security-color) !important;
}

.module-banner-section.threats:hover {
	background-color: var(--threats-color) !important;
}

.module-banner-section:hover .header-main h2,
.module-banner-section:hover .banner-header p,
.module-banner-section:hover .step-title,
.module-banner-section:hover .step-list li,
.module-banner-section:hover .banner-cta,
.module-banner-section:hover .flow-arrow {
	color: var(--white-color) !important;
}

.module-banner-section:hover .step-title {
	border-bottom-color: var(--white-20);
}

.module-banner-section:hover .flow-step {
	background-color: var(--white-15);
	border-color: var(--white-30);
}

.module-banner-section:hover .header-main img {
	filter: brightness(0) invert(1);
}

.module-banner-section:hover .banner-cta svg {
	transform: translateX(10px);
}

/* Responsive */
@media (max-width: 1100px) {
	.banner-flow-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		max-width: 600px;
	}

	.flow-arrow {
		transform: rotate(90deg) !important;
		height: 40px;
	}

	.header-main h3 {
		font-size: 2.8rem;
	}
}

/* Integrated Pricing Sections within Banners */
.banner-pricing {
	margin-top: 3rem;
	padding-top: 3rem;
	border-top: 1px solid var(--border-color);
}

.pricing-intro {
	font-size: 1.25rem;
	color: var(--text-secondary);
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.5;
}

/* Agents Grid */
.agents-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	max-width: 1250px;
	margin: 0 auto;
}

.agent-card {
	background: var(--gray-50);
	padding: 2.5rem 2rem;
	border-radius: 16px;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	text-align: left;
}

.agent-type {
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1.2rem;
	display: inline-block;
}

.agent-type.passive {
	color: var(--security-color);
}

.agent-type.active {
	color: var(--uncovery-color);
}

.agent-card h5 {
	font-size: 1.45rem;
	margin-bottom: 1rem;
	color: var(--text-primary);
	font-weight: 700;
}

.agent-card p {
	font-size: 1.1rem;
	line-height: 1.5;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	flex-grow: 1;
}

.agent-price {
	font-weight: 800;
	color: var(--primary-color);
	font-size: 1.1rem;
	margin-top: auto;
}

.agent-price a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* Features Grid */
.features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: .5rem 4rem;
	max-width: 1100px;
	margin: 0 auto;
	padding-left: 3.5rem;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	font-size: 1.4rem;
	color: var(--text-secondary);
	text-align: left;
	padding: 0.5rem 0;
}

.feature-item svg {
	color: var(--primary-color);
	flex-shrink: 0;
	opacity: 1;
	filter: drop-shadow(0 0 8px rgba(0, 137, 247, 0.3));
}

/* Hover States for Integrated Pricing */
.module-banner-section:hover .banner-pricing {
	border-top-color: var(--white-20);
}

.module-banner-section:hover .pricing-header h3,
.module-banner-section:hover .pricing-intro,
.module-banner-section:hover .agent-card h5,
.module-banner-section:hover .agent-card p,
.module-banner-section:hover .agent-price,
.module-banner-section:hover .feature-item,
.module-banner-section:hover .agent-type {
	color: var(--white-color) !important;
}

.module-banner-section:hover .agent-card {
	background-color: var(--white-10);
	border-color: var(--white-20);
}

.module-banner-section:hover .agent-card:hover {
	background-color: var(--white-15);
	transform: translateY(-5px);
}

.module-banner-section:hover .feature-item svg {
	color: var(--white-color) !important;
}

/* Responsive Integrated Pricing */
@media (max-width: 1250px) {
	.agents-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 800px) {
	.features-grid {
		grid-template-columns: 1fr;
		gap: 1.2rem;
	}

	.pricing-header h3 {
		font-size: 2rem;
	}

	.pricing-header {
		margin-bottom: 2.5rem;
	}
}

@media (max-width: 600px) {
	.agents-grid {
		grid-template-columns: 1fr;
	}

	.agent-card {
		padding: 2rem 1.5rem;
	}
}