.pe-oc-wrap * {
	box-sizing: border-box;
	font-family: 'Roboto', Arial, sans-serif;
}
.pe-oc-wrap {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	padding: 48px 24px;
	text-align: center;
}

.pe-oc-eyebrow {
	font-size: 13px;
	font-weight: 500;
	color: #4C8FD9;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0 0 12px;
}
.pe-oc-heading {
	font-size: 34px;
	font-weight: 700;
	color: #0B2545;
	margin: 0 0 14px;
}
.pe-oc-lead {
	font-size: 16px;
	color: #5A6B85;
	line-height: 1.6;
	max-width: 560px;
	margin: 0 auto 44px;
}

.pe-oc-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

@keyframes pe-oc-ring { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pe-oc-fadeup { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.pe-oc-card {
	position: relative;
	border-radius: 20px;
	padding: 2px;
	background: linear-gradient(150deg, rgba(255,255,255,0.55), rgba(11,37,69,0.15) 45%, rgba(76,143,217,0.35));
	animation: pe-oc-fadeup 0.6s ease-out both;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	cursor: default;
}
.pe-oc-card:hover {
	transform: translateY(-10px) scale(1.03);
}

.pe-oc-inner {
	background: linear-gradient(160deg, #12345f, #0B2545 65%);
	border-radius: 19px;
	padding: 34px 18px;
	text-align: center;
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.25),
		inset 0 -12px 24px rgba(0,0,0,0.18),
		0 14px 30px rgba(11,37,69,0.28);
	transition: box-shadow 0.3s ease;
}
.pe-oc-card:hover .pe-oc-inner {
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.35),
		inset 0 -12px 24px rgba(0,0,0,0.22),
		0 22px 44px rgba(11,37,69,0.4);
}

.pe-oc-badge {
	margin: 0 auto 16px;
	display: block;
}
.pe-oc-ring {
	animation: pe-oc-ring 6s linear infinite;
	transform-origin: center;
	transition: animation-duration 0.3s ease;
}
.pe-oc-card:hover .pe-oc-ring {
	animation-duration: 2s;
}

.pe-oc-label {
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0;
}

@media (max-width: 900px) {
	.pe-oc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.pe-oc-grid { grid-template-columns: 1fr; }
	.pe-oc-heading { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
	.pe-oc-ring, .pe-oc-card {
		animation: none;
	}
	.pe-oc-card:hover {
		transform: none;
	}
}
