@charset "utf-8";

/* ================================================
   Partner Solutions — Theme-Integrated Styles
   ================================================ */

/* ── VALUE STRIP ─────────────────────────── */
.ps-value-strip {
	background: #fff;
	border-top: 1px solid rgba(0,0,0,0.06);
	border-bottom: 1px solid rgba(0,0,0,0.06);
	padding: 18px 0;
}
.ps-value-strip-inner {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
	justify-content: center;
}
.ps-value-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #232031;
	letter-spacing: 0.02em;
	font-weight: 500;
}
.ps-value-item .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #2c00ff;
	flex-shrink: 0;
}

/* ── SECTION LABELS ──────────────────────── */
.ps-section-label {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #2c00ff;
	margin-bottom: 8px;
}
.ps-section-heading {
	font-size: 26px;
	font-weight: 700;
	color: #232031;
	line-height: 1.4;
	margin-bottom: 12px;
}
.ps-section-sub {
	font-size: 14px;
	color: #6B7280;
	max-width: 560px;
	line-height: 1.9;
	margin-bottom: 44px;
}

/* ── TABS ─────────────────────────────────── */
.ps-tabs {
	display: flex;
	gap: 0;
	border-bottom: 1px solid rgba(0,0,0,0.09);
	margin-bottom: 32px;
}
.ps-tab-btn {
	padding: 10px 22px;
	font-size: 13px;
	font-weight: 500;
	color: #6B7280;
	background: transparent;
	border: none;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	font-family: inherit;
	letter-spacing: 0.03em;
	transition: color .18s, border-color .18s;
}
.ps-tab-btn.active {
	color: #2c00ff;
	border-bottom-color: #2c00ff;
}
.ps-tab-btn:hover:not(.active) {
	color: #232031;
}
.ps-tab-panel {
	display: none;
}
.ps-tab-panel.active {
	display: block;
}

/* ── SOLUTIONS GRID ──────────────────────── */
.ps-sol-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}
.ps-sol-card {
	cursor: default;
	background: #fff;
	padding: 32px 28px;
	border-radius: 8px;
	border: 1px solid rgba(0,0,0,0.06);
	transition: box-shadow .25s, border-color .25s, transform .25s;
	position: relative;
	display: flex;
	flex-direction: column;
}
.ps-sol-card:hover {
	box-shadow: 0 8px 28px rgba(0,0,0,0.07);
	border-color: rgba(0,0,0,0.12);
	transform: translateY(-2px);
}

/* Logo / name + category */
.ps-sol-left {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 14px;
}
.ps-sol-logo-badge {
	position: absolute;
	top: -8px;
	right: 16px;
	width: 96px;
	height: 96px;
	object-fit: contain;
	opacity: 0.7;
	pointer-events: none;
}
.ps-sol-name-text {
	font-size: 17px;
	font-weight: 700;
	color: #232031;
	letter-spacing: 0.02em;
	line-height: 1.2;
}
.ps-sol-cat {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #9CA3AF;
}

/* Title + desc + tags */
.ps-sol-card h3 {
	font-size: 14.5px;
	font-weight: 600;
	color: #232031;
	line-height: 1.5;
	margin-bottom: 10px;
}
.ps-sol-card > p {
	font-size: 13px;
	color: #6B7280;
	line-height: 1.8;
	margin-bottom: 16px;
}
.ps-sol-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: auto;
}
.ps-tag {
	font-size: 10px;
	font-weight: 500;
	padding: 4px 8px;
	border: none;
	color: #6B7280;
	border-radius: 4px;
	background: #F3F4F6;
	letter-spacing: 0.01em;
}
.ps-tag-primary {
	color: #374151;
	background: #E5E7EB;
	font-weight: 600;
}

/* Clickable card */
.ps-sol-card.ps-sol-card-link {
	position: relative;
	cursor: pointer;
}
.ps-sol-card.ps-sol-card-link:hover {
	border-color: rgba(0,0,0,0.15);
	box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}
.ps-sol-card.ps-sol-card-link .ps-sol-card-more {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	color: #9CA3AF;
	margin-top: 14px;
	letter-spacing: 0.02em;
	pointer-events: none;
	transition: color .2s;
}
.ps-sol-card.ps-sol-card-link:hover .ps-sol-card-more {
	color: #374151;
}
.ps-sol-card-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: 5px;
}

/* ── WHY SECTION ─────────────────────────── */
.ps-why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.ps-why-item {
	padding: 24px 24px 28px;
	background: #fff;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 5px;
	transition: box-shadow .2s;
}
.ps-why-item:hover {
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.ps-why-num {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: #2c00ff;
	margin-bottom: 10px;
}
.ps-why-item h4 {
	font-size: 15px;
	font-weight: 700;
	color: #232031;
	margin-bottom: 8px;
}
.ps-why-item p {
	font-size: 13px;
	color: #4B5563;
	line-height: 1.8;
}

/* ── STEPS ───────────────────────────────── */
.ps-steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}
.ps-step {
	background: #fff;
	padding: 28px 22px;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 5px;
}
.ps-step-num {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: #2c00ff;
	margin-bottom: 10px;
	display: block;
}
.ps-step h4 {
	font-size: 14px;
	font-weight: 700;
	color: #232031;
	margin-bottom: 8px;
	line-height: 1.4;
}
.ps-step p {
	font-size: 12.5px;
	color: #4B5563;
	line-height: 1.75;
}

/* ── CTA SECTION ─────────────────────────── */
.ps-cta-section {
	background: #232031;
	padding: 80px 0;
}
.ps-cta-grid {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
}
.ps-cta-section .ps-section-label {
	color: rgba(255,255,255,0.5);
}
.ps-cta-section .ps-section-heading {
	color: #fff;
	margin-bottom: 16px;
}
.ps-cta-desc {
	font-size: 14px;
	color: rgba(255,255,255,0.7);
	line-height: 1.9;
	margin-bottom: 40px;
}
.ps-cta-buttons {
	display: flex;
	justify-content: center;
}
.ps-cta-buttons .btnMv {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 280px;
	padding: 18px 40px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 60px;
	border: 2px solid #fff;
	background: #fff;
	color: #232031;
	text-decoration: none;
	transition: all 0.3s;
	letter-spacing: 0.04em;
}
.ps-cta-buttons .btnMv:hover {
	background: transparent;
	color: #fff;
}
.ps-cta-buttons .btnMv svg path {
	transition: fill 0.3s;
}
.ps-cta-buttons .btnMv:hover svg path {
	fill: #fff;
}
.ps-cta-info {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 5px;
}
.ps-cta-info-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ps-cta-info-item:last-child {
	border-bottom: none;
}
.ps-cta-info-label {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,0.5);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.ps-cta-info-value {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
}

/* ── RESPONSIVE ──────────────────────────── */
@media screen and (max-width: 768px) {
	.ps-value-strip {
		gap: 12px 24px;
		padding: 16px 0;
	}
	.ps-value-item {
		font-size: 12px;
	}
	.ps-why-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.ps-steps {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.ps-sol-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.ps-cta-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.ps-tabs {
		flex-wrap: wrap;
		gap: 0;
	}
	.ps-tab-btn {
		padding: 8px 16px;
		font-size: 12px;
	}
}
