/**
 * About page — CTA strip + Our Team (webcirclez.com/about/)
 *
 * @package WebCircleZ_Pro
 */

.wcz-page-hero-about {
	height: var(--wcz-page-banner-height);
	min-height: var(--wcz-page-banner-height);
	max-height: var(--wcz-page-banner-height);
	padding: 0;
}

.wcz-page-hero-about .wcz-page-hero-banner-bg {
	height: 100%;
}

.wcz-page-hero-about .wcz-page-hero-banner-photo {
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center center;
}

.wcz-about-story.wcz-section {
	padding-top: var(--wcz-section-pad-y, clamp(36px, 4.5vw, 56px));
	padding-bottom: clamp(32px, 4vw, 48px);
}

.wcz-about-story-heading.wcz-page-hero-banner-title {
	color: #111827;
	text-shadow: none;
	margin: 0 0 26px;
	text-align: center;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
}

/* CTA — geometric pattern image only (no overlay / no fill color) */
.wcz-about-cta-live {
	position: relative;
	padding: clamp(40px, 5vw, 56px) 0;
	background-color: transparent;
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
	min-height: 220px;
}

.wcz-about-cta-live .wcz-about-cta-strip-overlay {
	display: none;
}

.wcz-about-cta-live.wcz-about-cta-strip .wcz-about-cta-strip-overlay {
	display: none;
	background: none;
}

.wcz-about-cta-live .wcz-about-cta-strip-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
}

.wcz-about-cta-live .wcz-about-cta-strip-inner h2 {
	font-family: var(--wcz-font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	line-height: 1.25;
	color: #111827;
	margin: 0 0 12px;
	text-transform: none;
}

.wcz-about-cta-live .wcz-about-cta-strip-inner p {
	font-size: 15px;
	line-height: 1.7;
	color: #6b7280;
	margin: 0 0 24px;
}

.wcz-about-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: 2px;
	background: var(--wcz-primary, #00c2e5);
	border: none;
	color: #fff;
}

.wcz-about-cta-btn:hover {
	background: #00b0d0;
	color: #fff;
}

/* Our Team — premium founder card */
.wcz-about-team-live {
	--wcz-about-team-photo-height: 584.16px;
	padding-top: clamp(48px, 6vw, 80px);
	padding-bottom: clamp(56px, 7vw, 96px);
	background: #f7fafc;
}

.wcz-about-team-live .wcz-about-team-intro {
	text-align: center;
	margin-bottom: clamp(28px, 4vw, 40px);
}

.wcz-about-team-eyebrow {
	display: block;
	margin: 0 auto 8px;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wcz-primary, #00c2e5);
}

.wcz-about-team-live .wcz-about-live-title {
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #0f172a;
	margin: 0 0 14px;
}

.wcz-about-team-divider--center {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	max-width: 220px;
	margin: 0 auto;
}

.wcz-about-team-divider-line {
	flex: 1;
	height: 1px;
	background: #d1d5db;
}

.wcz-about-team-divider-mark {
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 2px;
	background: var(--wcz-primary, #00c2e5);
	transform: rotate(45deg);
	box-shadow: 0 0 0 4px rgba(0, 194, 229, 0.12);
	flex-shrink: 0;
}

.wcz-about-team-cards {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: clamp(32px, 4vw, 48px);
	width: 100%;
}

.wcz-about-team-card {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-areas: 'info visual';
	grid-template-rows: minmax(0, 1fr);
	gap: clamp(24px, 3vw, 40px);
	align-items: stretch;
	width: 100%;
	max-width: 1080px;
	min-height: var(--wcz-team-card-min-h, 580px);
	margin: 0 auto;
	padding: clamp(22px, 3vw, 36px);
	background: #ffffff;
	border: 1px solid rgba(15, 23, 42, 0.06);
	border-radius: 28px;
	box-shadow:
		0 20px 60px rgba(15, 23, 42, 0.08),
		0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.wcz-about-team-card-info {
	grid-area: info;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	min-width: 0;
	height: 100%;
}

@media (min-width: 769px) {
	.wcz-about-team-card-info,
	.wcz-about-team-card-visual {
		height: 100%;
		min-height: 100%;
	}

	.wcz-about-team-card-visual {
		display: flex;
		flex-direction: column;
	}

	.wcz-about-team-photo-wrap {
		flex: none;
		width: 100%;
		height: var(--wcz-about-team-photo-height, 584.16px);
		min-height: var(--wcz-about-team-photo-height, 584.16px);
		max-height: var(--wcz-about-team-photo-height, 584.16px);
	}
}

.wcz-about-team-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	padding: 7px 14px;
	border-radius: 999px;
	background: #eef2f7;
	color: #64748b;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wcz-about-team-badge svg {
	color: var(--wcz-primary, #00c2e5);
}

.wcz-about-team-live .wcz-about-team-name {
	font-family: var(--wcz-font-display);
	font-size: clamp(1.25rem, 3vw, 2.35rem);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #0f172a;
	margin: 0 0 6px;
	line-height: 1.15;
	min-height: calc(2 * 1.15em);
}

.wcz-about-team-live .wcz-about-team-role {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--wcz-primary, #00c2e5);
	margin: 0 0 12px;
	min-height: calc(2 * 1.35em);
}

.wcz-about-team-accent {
	display: block;
	width: 48px;
	height: 3px;
	margin-bottom: 16px;
	border-radius: 999px;
	background: var(--wcz-primary, #00c2e5);
}

.wcz-about-team-bio {
	flex: 1 1 auto;
	margin: 0 0 22px;
	max-width: 100%;
	min-height: 5.1em;
	font-size: 0.98rem;
	line-height: 1.7;
	color: #64748b;
}

.wcz-about-team-stats {
	list-style: none;
	flex-shrink: 0;
	margin: 0 0 24px;
	padding: 16px 18px;
	width: 100%;
	max-width: 100%;
	background: #f8fafc;
	border: 1px solid #e8eef3;
	border-radius: 16px;
}

.wcz-about-team-stats li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
}

.wcz-about-team-stats li + li {
	border-top: 1px solid #e8eef3;
}

.wcz-about-team-stat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: var(--wcz-primary, #00c2e5);
	background: rgba(0, 194, 229, 0.12);
	flex-shrink: 0;
}

.wcz-about-team-stats strong {
	display: block;
	font-size: 0.95rem;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.25;
}

.wcz-about-team-stats span {
	display: flex;
	font-size: 0.8rem;
	color: #64748b;
	line-height: 1.35;
}

.wcz-about-team-live .wcz-about-team-social {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-shrink: 0;
	flex-wrap: nowrap;
	gap: 10px;
	margin-top: auto;
	padding-top: 4px;
}

.wcz-about-team-live .wcz-about-team-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	color: var(--wcz-primary, #00c2e5);
	background: #ffffff;
	border: 1px solid #e5eef3;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
	transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.wcz-about-team-live .wcz-about-team-social a:hover {
	color: #ffffff;
	background: var(--wcz-primary, #00c2e5);
	border-color: var(--wcz-primary, #00c2e5);
	transform: translateY(-2px);
}

.wcz-about-team-card-visual {
	grid-area: visual;
	min-width: 0;
	height: 100%;
}

.wcz-about-team-photo-wrap {
	position: relative;
	height: var(--wcz-about-team-photo-height, 584.16px);
	min-height: var(--wcz-about-team-photo-height, 584.16px);
	max-height: var(--wcz-about-team-photo-height, 584.16px);
	border-radius: 22px;
	overflow: hidden;
	background: linear-gradient(160deg, #e8f8fc 0%, #f1f5f9 45%, #e2e8f0 100%);
}

.wcz-about-team-shape {
	position: absolute;
	right: -8%;
	top: 8%;
	width: 72%;
	height: 72%;
	border-radius: 48% 52% 42% 58%;
	background: linear-gradient(145deg, #00c2e5 0%, #38bdf8 55%, #0891b2 100%);
	opacity: 0.95;
	z-index: 0;
	pointer-events: none;
}

.wcz-about-team-dots {
	position: absolute;
	right: 10%;
	top: 12%;
	width: 90px;
	height: 90px;
	z-index: 1;
	pointer-events: none;
	background-image: radial-gradient(rgba(255, 255, 255, 0.85) 1.4px, transparent 1.5px);
	background-size: 12px 12px;
	opacity: 0.85;
}

.wcz-about-team-live .wcz-about-team-photo {
	position: absolute;
	inset: 0;
	z-index: 2;
	margin: 0;
	overflow: hidden;
	background: transparent;
	aspect-ratio: auto;
	max-height: none;
	border-radius: 0;
	box-shadow: none;
}

.wcz-about-team-live .wcz-about-team-photo-img,
.wcz-about-team-live .wcz-hires-img.wcz-about-team-photo-img,
.wcz-about-team-live .wcz-about-team-photo-img.wcz-img-reveal,
.wcz-about-team-live .wcz-about-team-photo-img.wcz-img-reveal.is-revealed {
	display: block;
	width: 100%;
	height: var(--wcz-about-team-photo-height, 584.16px);
	min-height: var(--wcz-about-team-photo-height, 584.16px);
	max-height: var(--wcz-about-team-photo-height, 584.16px);
	object-fit: cover;
	object-position: center center;
}

.wcz-about-team-quote {
	position: absolute;
	right: 16px;
	bottom: 16px;
	left: auto;
	z-index: 3;
	width: min(100% - 32px, 280px);
	margin: 0;
	padding: 18px 18px 16px;
	border-radius: 14px;
	background: #0f172a;
	color: #ffffff;
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.28);
}

.wcz-about-team-quote-mark {
	display: block;
	margin-bottom: 4px;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 2rem;
	line-height: 1;
	color: var(--wcz-primary, #00c2e5);
}

.wcz-about-team-quote p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
}

.wcz-about-team-quote strong {
	color: var(--wcz-primary, #00c2e5);
	font-weight: 700;
}

/* Design / Development groups — premium cards */
.wcz-about-groups {
	padding-top: clamp(28px, 3.5vw, 44px);
	padding-bottom: clamp(28px, 3.5vw, 44px);
	background: #f3f4f6;
}

.wcz-about-groups-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 28px);
}

.wcz-about-group-card {
	position: relative;
	overflow: hidden;
	padding: clamp(28px, 3.5vw, 36px) clamp(24px, 3vw, 32px) clamp(32px, 3.5vw, 40px);
	text-align: left;
	background: #fff;
	border: 1px solid #e8ecef;
	border-radius: 8px;
	box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wcz-about-group-card::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: var(--wcz-primary, #00c2e5);
}

.wcz-about-group-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 194, 229, 0.24);
	box-shadow: 0 18px 44px rgba(0, 194, 229, 0.12);
}

.wcz-about-group-dots {
	position: absolute;
	top: 22px;
	right: 22px;
	width: 54px;
	height: 54px;
	background-image: radial-gradient(circle, #d1d5db 1.5px, transparent 1.5px);
	background-size: 10px 10px;
	opacity: 0.55;
	pointer-events: none;
}

.wcz-about-group-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 18px;
	border-radius: 50%;
	color: var(--wcz-primary, #00c2e5);
	background: rgba(0, 194, 229, 0.12);
	border: 1px solid rgba(0, 194, 229, 0.2);
}

.wcz-about-group-icon svg {
	display: block;
}

.wcz-about-group-title {
	font-family: var(--wcz-font-display);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #111827;
	margin: 0 0 10px;
}

.wcz-about-group-rule {
	display: block;
	width: 36px;
	height: 3px;
	margin: 0 0 16px;
	border-radius: 999px;
	background: var(--wcz-primary, #00c2e5);
}

.wcz-about-group-text {
	font-family: var(--wcz-font);
	font-size: 15px;
	line-height: 1.75;
	color: #6b7280;
	max-width: none;
	margin: 0;
}

@media (max-width: 768px) {
	.wcz-page-hero-about {
		height: var(--wcz-page-banner-height);
		min-height: var(--wcz-page-banner-height);
		max-height: var(--wcz-page-banner-height);
		padding: 0;
	}

	.wcz-about-story.wcz-section {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.wcz-about-story-heading.wcz-page-hero-banner-title {
		margin-bottom: 24px;
	}

	.wcz-about-cta-live {
		padding: clamp(32px, 4vw, 44px) 0;
	}

	.wcz-about-team-card {
		grid-template-columns: 1fr;
		grid-template-areas:
			'visual'
			'info';
		min-height: 0;
		padding: 20px;
		border-radius: 22px;
	}

	.wcz-about-team-card-info {
		align-items: center;
		text-align: center;
		height: auto;
	}

	.wcz-about-team-live .wcz-about-team-name {
		font-size: clamp(1.25rem, 5vw, 1.65rem);
		min-height: 0;
	}

	.wcz-about-team-live .wcz-about-team-role {
		min-height: 0;
	}

	.wcz-about-team-bio {
		min-height: 0;
		flex: none;
	}

	.wcz-about-team-badge {
		margin-left: auto;
		margin-right: auto;
	}

	.wcz-about-team-accent {
		margin-left: auto;
		margin-right: auto;
	}

	.wcz-about-team-bio,
	.wcz-about-team-stats {
		max-width: none;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.wcz-about-team-stats {
		display: flex;
		flex-direction: row;
		align-items: stretch;
		gap: 0;
		padding: 12px 8px;
	}

	.wcz-about-team-stats li {
		flex: 1 1 0;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 8px;
		padding: 8px 6px;
		text-align: center;
	}

	.wcz-about-team-stats li + li {
		border-top: none;
		border-left: 1px solid #e8eef3;
	}

	.wcz-about-team-stat-icon {
		width: 34px;
		height: 34px;
	}

	.wcz-about-team-stats strong {
		font-size: clamp(0.72rem, 2.8vw, 0.88rem);
	}

	.wcz-about-team-stats span {
		justify-content: center;
		font-size: clamp(0.62rem, 2.2vw, 0.72rem);
		line-height: 1.3;
	}

	.wcz-about-team-live .wcz-about-team-social {
		justify-content: center;
		flex-wrap: wrap;
		width: 100%;
	}

	.wcz-about-team-photo-wrap {
		height: var(--wcz-about-team-photo-height, 584.16px);
		min-height: var(--wcz-about-team-photo-height, 584.16px);
		max-height: var(--wcz-about-team-photo-height, 584.16px);
		flex: none;
	}

	.wcz-about-team-card-visual {
		width: 100%;
	}

	.wcz-about-team-quote {
		width: min(100% - 28px, 260px);
		right: 14px;
		bottom: 14px;
	}

	.wcz-about-groups-grid {
		grid-template-columns: 1fr;
	}

	.wcz-about-group-card {
		text-align: center;
	}

	.wcz-about-group-icon {
		display: inline-flex;
		margin-left: auto;
		margin-right: auto;
	}

	.wcz-about-group-rule {
		margin-left: auto;
		margin-right: auto;
	}
}
