/* ==========================================================================
   About Us Page – story-led layout
   ========================================================================== */

body.pws-about-page #content-wrapper.pws-about-page-content {
	width: 100%;
	max-width: none;
	padding: 0;
	margin: 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

/* ---- Reveal motion ---- */
[data-pws-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-pws-reveal].is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	[data-pws-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ---- Company story ---- */
.pws-about-story {
	background:
		radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.08) 0%, transparent 42%),
		linear-gradient(180deg, #f8fbff 0%, var(--pws-white) 55%);
	padding-top: 56px;
	overflow: hidden;
}

.pws-about-story-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 64px;
	align-items: center;
}

.pws-about-story-copy {
	max-width: 560px;
}

.pws-eyebrow-line {
	position: relative;
	padding-top: 18px;
}

.pws-eyebrow-line::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: var(--pws-primary);
	border-radius: 2px;
}

.pws-about-story-copy h2 {
	font-size: clamp(1.7rem, 3.2vw, 2.35rem);
	font-weight: 800;
	color: var(--pws-heading);
	margin: 0 0 18px;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.pws-about-story-copy > p {
	font-size: 16px;
	line-height: 1.75;
	color: var(--pws-text);
	margin: 0 0 22px;
	max-width: 540px;
}

.pws-about-page-editor {
	display: none;
}

.pws-about-story-points {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}

.pws-about-story-points li {
	position: relative;
	padding: 8px 0 8px 32px;
	font-size: 15px;
	font-weight: 500;
	color: var(--pws-heading);
}

.pws-about-story-points li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--pws-primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 5l3.5 3.5L11 1'/%3E%3C/svg%3E") center/10px no-repeat;
}

.pws-about-page-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.pws-about-phone-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--pws-heading);
	font-size: 15px;
	font-weight: 600;
	transition: color 0.2s;
}

.pws-about-phone-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: var(--pws-primary);
	color: var(--pws-white);
	border-radius: 50%;
	flex-shrink: 0;
	transition: background 0.2s, transform 0.2s;
}

.pws-about-phone-link:hover {
	color: var(--pws-primary);
}

.pws-about-phone-link:hover .pws-about-phone-icon {
	background: var(--pws-primary-dark);
	transform: scale(1.04);
}

.pws-about-story-media {
	position: relative;
	min-height: 460px;
}

.pws-about-story-frame {
	position: absolute;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.pws-about-story-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pws-about-story-frame-main {
	inset: 0 18% 8% 0;
	z-index: 1;
	background: linear-gradient(145deg, var(--pws-navy) 0%, var(--pws-navy-mid) 100%);
}

.pws-about-story-frame-main img {
	object-fit: contain;
	object-position: center bottom;
	padding: 24px 16px 0;
}

.pws-about-story-frame-side {
	width: 48%;
	height: 58%;
	right: 0;
	bottom: 0;
	z-index: 2;
	border: 4px solid var(--pws-white);
}

.pws-about-story-badge {
	position: absolute;
	left: -8px;
	bottom: 36px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 18px 22px;
	background: var(--pws-primary);
	color: var(--pws-white);
	border-radius: 14px;
	box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
	animation: pws-about-float 4.5s ease-in-out infinite;
}

.pws-about-story-badge span {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	opacity: 0.85;
	line-height: 1.3;
}

.pws-about-story-badge strong {
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
}

@keyframes pws-about-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
	.pws-about-story-badge {
		animation: none;
	}
}

/* ---- Stats ---- */
.pws-about-stats {
	padding: 0 0 24px;
	margin-top: -8px;
	background: var(--pws-white);
}

.pws-about-stats-row {
	position: relative;
	z-index: 2;
}

.pws-about-stats-row.is-counting .pws-stat-icon {
	animation: pws-about-stat-pulse 1.3s ease-out;
}

@keyframes pws-about-stat-pulse {
	0% { transform: scale(1); }
	35% { transform: scale(1.08); }
	100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
	.pws-about-stats-row.is-counting .pws-stat-icon {
		animation: none;
	}
}

/* ---- Mission & vision ---- */
.pws-about-purpose {
	background: var(--pws-white);
	padding-top: 40px;
}

.pws-about-purpose-head {
	margin-bottom: 40px;
}

.pws-about-purpose-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.pws-about-purpose-block {
	position: relative;
	padding: 40px 36px;
	border-radius: 20px;
	overflow: hidden;
	isolation: isolate;
}

.pws-about-purpose-block::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: 1;
}

.pws-about-purpose-mission {
	background: linear-gradient(145deg, var(--pws-navy) 0%, var(--pws-navy-mid) 100%);
	color: var(--pws-white);
}

.pws-about-purpose-mission::after {
	content: '';
	position: absolute;
	width: 220px;
	height: 220px;
	right: -60px;
	bottom: -80px;
	border-radius: 50%;
	background: rgba(37, 99, 235, 0.35);
	pointer-events: none;
}

.pws-about-purpose-vision {
	background: linear-gradient(160deg, var(--pws-light) 0%, var(--pws-light-2) 100%);
	border: 1px solid #dbeafe;
	color: var(--pws-heading);
}

.pws-about-purpose-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.pws-about-purpose-mission .pws-about-purpose-label {
	color: #93c5fd;
}

.pws-about-purpose-vision .pws-about-purpose-label {
	color: var(--pws-primary);
}

.pws-about-purpose-block h3 {
	font-size: clamp(1.25rem, 2.2vw, 1.55rem);
	font-weight: 800;
	line-height: 1.35;
	margin: 0 0 14px;
	letter-spacing: -0.015em;
}

.pws-about-purpose-mission h3 {
	color: var(--pws-white);
}

.pws-about-purpose-block p {
	font-size: 15px;
	line-height: 1.75;
	margin: 0;
	max-width: 420px;
}

.pws-about-purpose-mission p {
	color: rgba(255, 255, 255, 0.78);
}

.pws-about-purpose-vision p {
	color: var(--pws-text);
}

/* ---- Values ---- */
.pws-about-values {
	background: linear-gradient(180deg, #f8fbff 0%, var(--pws-white) 100%);
}

.pws-about-values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px 24px;
}

.pws-about-value {
	padding-top: 8px;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.55s ease, transform 0.55s ease;
	transition-delay: calc(var(--value-index, 1) * 0.08s);
}

.pws-about-values.is-visible .pws-about-value {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.pws-about-value {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.pws-about-value-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 18px;
	border-radius: 14px;
	background: var(--pws-light);
	color: var(--pws-primary);
	border: 1px solid #dbeafe;
}

.pws-about-value h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--pws-heading);
	margin: 0 0 10px;
	line-height: 1.35;
}

.pws-about-value p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--pws-text);
	margin: 0;
}

/* ---- Process ---- */
.pws-about-process {
	background:
		radial-gradient(circle at 8% 20%, rgba(37, 99, 235, 0.04) 0%, transparent 42%),
		radial-gradient(circle at 92% 75%, rgba(37, 99, 235, 0.03) 0%, transparent 38%),
		linear-gradient(180deg, #f8fbff 0%, var(--pws-white) 55%, var(--pws-white) 100%);
}

.pws-about-process-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	counter-reset: none;
	position: relative;
}

.pws-about-process-list::before {
	content: '';
	position: absolute;
	top: 48px;
	left: 6%;
	right: 6%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #bfdbfe 10%, #93c5fd 50%, #bfdbfe 90%, transparent);
	pointer-events: none;
	z-index: 0;
}

.pws-about-process-step {
	position: relative;
	z-index: 1;
}

.pws-about-process-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 24px 22px 26px;
	background: var(--pws-white);
	border: 1px solid #e8eef5;
	border-radius: 18px;
	box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
	transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.pws-about-process-step:hover .pws-about-process-card {
	border-color: #bfdbfe;
	box-shadow: 0 14px 36px rgba(37, 99, 235, 0.1);
	transform: translateY(-4px);
}

.pws-about-process-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.pws-about-process-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(145deg, #eff6ff, #dbeafe);
	color: var(--pws-primary);
	box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.pws-about-process-icon svg {
	display: block;
}

.pws-about-process-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 32px;
	padding: 0 10px;
	border-radius: 999px;
	background: #0f172a;
	color: var(--pws-white);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	box-shadow: none;
	border: none;
	margin: 0;
	transition: background 0.25s;
}

.pws-about-process-step:hover .pws-about-process-num {
	background: var(--pws-primary);
	color: var(--pws-white);
}

.pws-about-process-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 10px;
}

.pws-about-process-title-row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px 12px;
}

.pws-about-process-body h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--pws-heading);
	margin: 0;
	line-height: 1.3;
}

.pws-about-process-duration {
	font-size: 12px;
	font-weight: 600;
	color: var(--pws-primary);
	background: #eff6ff;
	border: 1px solid #dbeafe;
	border-radius: 999px;
	padding: 4px 10px;
	white-space: nowrap;
	letter-spacing: 0.01em;
}

.pws-about-process-body p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--pws-text);
	margin: 0;
	max-width: none;
}

.pws-about-process-outputs {
	list-style: none;
	margin: 6px 0 0;
	padding: 14px 0 0;
	border-top: 1px dashed #e2e8f0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pws-about-process-outputs li {
	position: relative;
	padding-left: 18px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
	color: #334155;
}

.pws-about-process-outputs li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--pws-primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

@media (prefers-reduced-motion: reduce) {
	.pws-about-process-step:hover .pws-about-process-card {
		transform: none;
	}
}

/* ---- Why choose us ---- */
.pws-about-why {
	background: linear-gradient(180deg, #f8fbff 0%, var(--pws-white) 100%);
}

.pws-about-why-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.pws-about-why-img-wrap {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.pws-about-why-img-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, transparent 55%);
	pointer-events: none;
}

.pws-about-why-img-wrap img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	display: block;
}

.pws-about-why-badge {
	position: absolute;
	left: 24px;
	bottom: 24px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 18px 22px;
	background: var(--pws-white);
	border-radius: 14px;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
}

.pws-about-why-badge strong {
	font-size: 2rem;
	font-weight: 800;
	color: var(--pws-primary);
	line-height: 1;
}

.pws-about-why-badge span {
	font-size: 13px;
	font-weight: 600;
	color: var(--pws-heading);
	max-width: 100px;
	line-height: 1.3;
}

.pws-about-why-copy .pws-eyebrow {
	margin-bottom: 12px;
}

.pws-about-why-copy h2 {
	font-size: clamp(1.55rem, 3vw, 2.1rem);
	font-weight: 800;
	color: var(--pws-heading);
	margin: 0 0 16px;
	line-height: 1.28;
	letter-spacing: -0.02em;
}

.pws-about-why-copy > p {
	font-size: 16px;
	line-height: 1.75;
	color: var(--pws-text);
	margin: 0 0 22px;
	max-width: 520px;
}

.pws-about-services-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 24px;
	margin-top: 8px;
}

/* ---- Team section tweaks ---- */
.pws-about-team .pws-section-head .pws-eyebrow {
	display: block;
	margin-bottom: 10px;
}

.pws-about-team .pws-team-card img {
	height: 320px;
}

/* ---- Partners ---- */
.pws-about-partners {
	padding-bottom: 48px;
}

.pws-about-partners .pws-section-head .pws-eyebrow {
	display: block;
	margin-bottom: 10px;
}

/* ---- Closing CTA ---- */
.pws-about-cta {
	position: relative;
	padding: 72px 0 88px;
	background:
		radial-gradient(circle at 18% 40%, rgba(37, 99, 235, 0.35) 0%, transparent 42%),
		radial-gradient(circle at 88% 20%, rgba(14, 165, 233, 0.2) 0%, transparent 40%),
		linear-gradient(135deg, var(--pws-navy) 0%, #0a1628 55%, var(--pws-navy-mid) 100%);
	overflow: hidden;
}

.pws-about-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
	pointer-events: none;
	mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

.pws-about-cta-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.pws-about-cta-copy {
	max-width: 560px;
}

.pws-about-cta .pws-eyebrow-light {
	color: #93c5fd;
}

.pws-about-cta h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 800;
	color: var(--pws-white);
	margin: 10px 0 14px;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.pws-about-cta p {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.72);
	margin: 0;
}

.pws-about-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.pws-about-cta a.pws-btn-hero-ghost,
.pws-about-cta a.pws-btn-hero-ghost:link,
.pws-about-cta a.pws-btn-hero-ghost:visited,
.pws-about-cta .pws-btn-hero-ghost {
	border-color: rgba(255, 255, 255, 0.4);
	color: var(--pws-white);
	background: transparent;
	backdrop-filter: none;
}

.pws-about-cta a.pws-btn-hero-ghost:hover,
.pws-about-cta .pws-btn-hero-ghost:hover {
	border-color: var(--pws-white);
	background: rgba(255, 255, 255, 0.1);
	color: var(--pws-white);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.pws-about-story-inner,
	.pws-about-why-inner,
	.pws-about-purpose-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.pws-about-story-media {
		min-height: 380px;
		max-width: 520px;
		margin: 0 auto;
		width: 100%;
	}

	.pws-about-values-grid,
	.pws-about-process-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.pws-about-process-list::before {
		display: none;
	}

	.pws-about-process-card {
		padding: 22px 20px 24px;
	}

	.pws-about-why-img-wrap img {
		min-height: 320px;
	}

	.pws-about-cta-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	.pws-about-story {
		padding-top: 36px;
	}

	.pws-about-story-media {
		min-height: 320px;
	}

	.pws-about-story-frame-main {
		inset: 0 12% 12% 0;
	}

	.pws-about-story-badge {
		left: 0;
		bottom: 16px;
		padding: 14px 16px;
	}

	.pws-about-values-grid,
	.pws-about-process-list {
		grid-template-columns: 1fr;
	}

	.pws-about-purpose-block {
		padding: 28px 24px;
	}

	.pws-about-page-actions,
	.pws-about-cta-actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.pws-about-process-body p {
		max-width: none;
	}
}
