/**
 * About Page
 *
 * @package A2Z_Woo_Solutions
 */


/* =========================================================
   BASE
========================================================= */

.about-page {
	position: relative;
	overflow: hidden;
	background: var(--bp-background);
	color: var(--bp-text);
}

.about-page *,
.about-page *::before,
.about-page *::after {
	box-sizing: border-box;
}

.about-page .container {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.section-space {
	padding: 120px 0;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.about-reveal {
	animation: aboutFadeUp 0.8s ease both;
}

.about-principle-card:nth-child(2),
.about-process-step:nth-child(2),
.about-audience-item:nth-child(2) {
	animation-delay: 0.1s;
}

.about-principle-card:nth-child(3),
.about-process-step:nth-child(3),
.about-audience-item:nth-child(3) {
	animation-delay: 0.2s;
}

.about-principle-card:nth-child(4),
.about-process-step:nth-child(4) {
	animation-delay: 0.3s;
}

@keyframes aboutFadeUp {

	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}

}


/* =========================================================
   COMMON ELEMENTS
========================================================= */

.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	color: var(--bp-blue);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.6px;
}

.section-eyebrow::before {
	width: 26px;
	height: 2px;
	background: var(--bp-pink);
	content: "";
}

.section-eyebrow--light {
	color: rgba(255, 255, 255, 0.8);
}

.section-heading {
	max-width: 700px;
	margin-bottom: 65px;
}

.section-heading--center {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.section-heading--center .section-eyebrow {
	justify-content: center;
}

.section-heading h2,
.about-story h2,
.about-audience h2,
.about-cta h2 {
	margin: 0 0 20px;
	font-size: clamp(36px, 5vw, 60px);
	line-height: 1.08;
	letter-spacing: -2px;
}

.section-heading h2 span,
.about-story h2 span {
	color: var(--bp-blue);
}

.section-heading p {
	margin: 0;
	color: var(--bp-text-muted);
	font-size: 17px;
	line-height: 1.8;
}


/* =========================================================
   BUTTONS
========================================================= */

.about-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 54px;
	padding: 0 24px;
	border-radius: 14px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease;
}

.about-button:hover {
	transform: translateY(-3px);
}

.about-button--primary {
	background: var(--bp-blue);
	color: var(--bp-white);
	box-shadow: var(--bp-shadow);
}

.about-button--primary:hover {
	background: var(--bp-blue-light);
	box-shadow: var(--bp-shadow-hover);
}

.about-button--secondary {
	border: 1px solid var(--bp-border-blue);
	background: rgba(255, 255, 255, 0.8);
	color: var(--bp-text);
}

.about-button--secondary:hover {
	border-color: var(--bp-blue);
	background: var(--bp-blue-soft);
}

.about-button__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transition: transform 0.25s ease;
}

.about-button:hover .about-button__arrow {
	transform: translateX(4px);
}


/* =========================================================
   HERO
========================================================= */

.about-hero {
	position: relative;
	min-height: 820px;
	padding: 150px 0 100px;
	background:
		linear-gradient(
			135deg,
			var(--bp-background) 0%,
			var(--bp-blue-soft) 50%,
			var(--bp-pink-soft) 100%
		);
	overflow: hidden;
}

.about-hero__background {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.about-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(
			rgba(33, 25, 201, 0.045) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(33, 25, 201, 0.045) 1px,
			transparent 1px
		);
	background-size: 55px 55px;
	mask-image: linear-gradient(
		to bottom,
		black,
		transparent
	);
}

.about-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(20px);
	opacity: 0.5;
	animation: aboutFloatOrb 8s ease-in-out infinite;
}

.about-orb--one {
	top: 5%;
	left: -8%;
	width: 420px;
	height: 420px;
	background: var(--bp-blue-pale);
}

.about-orb--two {
	top: 18%;
	right: -5%;
	width: 350px;
	height: 350px;
	background: var(--bp-pink-pale);
	animation-delay: 2s;
}

.about-orb--three {
	bottom: -150px;
	left: 35%;
	width: 300px;
	height: 300px;
	background: var(--bp-blue-pale);
	animation-delay: 4s;
}

@keyframes aboutFloatOrb {

	0%,
	100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(20px, -25px);
	}

}

.about-hero__container {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
	align-items: center;
	gap: 80px;
}

.about-hero__content {
	max-width: 650px;
}

.about-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
	padding: 9px 15px;
	border: 1px solid var(--bp-border-blue);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.7);
	color: var(--bp-blue);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.5px;
}

.about-eyebrow__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--bp-pink);
	box-shadow: 0 0 0 6px var(--bp-pink-pale);
}

.about-hero h1 {
	max-width: 750px;
	margin: 0;
	font-size: clamp(48px, 6vw, 76px);
	line-height: 1.03;
	letter-spacing: -3px;
}

.about-hero h1 span {
	display: block;
	background: linear-gradient(
		90deg,
		var(--bp-blue),
		var(--bp-pink)
	);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.about-hero__description {
	max-width: 620px;
	margin: 28px 0;
	color: var(--bp-text-muted);
	font-size: 18px;
	line-height: 1.8;
}

.about-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.about-hero__highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	margin-top: 42px;
}

.about-highlight {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--bp-text-muted);
	font-size: 13px;
	font-weight: 700;
}

.about-highlight__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	border-radius: 8px;
	background: var(--bp-blue-pale);
	color: var(--bp-blue);
}


/* =========================================================
   HERO DASHBOARD
========================================================= */

.about-hero__visual {
	position: relative;
}

.about-dashboard {
	position: relative;
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow:
		0 40px 100px rgba(33, 25, 201, 0.18);
	backdrop-filter: blur(20px);
	overflow: hidden;
	animation: aboutDashboardFloat 6s ease-in-out infinite;
}

@keyframes aboutDashboardFloat {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-12px);
	}

}

.about-dashboard__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 25px;
	border-bottom: 1px solid var(--bp-border);
}

.about-dashboard__brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.about-dashboard__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--bp-blue);
	color: var(--bp-white);
	font-size: 12px;
	font-weight: 900;
}

.about-dashboard__brand strong,
.about-dashboard__brand span {
	display: block;
}

.about-dashboard__brand strong {
	font-size: 14px;
}

.about-dashboard__brand span {
	margin-top: 3px;
	color: var(--bp-text-light);
	font-size: 11px;
}

.about-dashboard__status {
	display: flex;
	align-items: center;
	gap: 7px;
	color: var(--bp-text-muted);
	font-size: 11px;
	font-weight: 700;
}

.about-dashboard__status > span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #36B37E;
	animation: aboutPulse 2s infinite;
}

@keyframes aboutPulse {

	0% {
		box-shadow: 0 0 0 0 rgba(54, 179, 126, 0.5);
	}

	70% {
		box-shadow: 0 0 0 8px rgba(54, 179, 126, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(54, 179, 126, 0);
	}

}

.about-dashboard__body {
	display: flex;
	min-height: 350px;
}

.about-dashboard__sidebar {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: 65px;
	padding-top: 35px;
	border-right: 1px solid var(--bp-border);
	background: var(--bp-background-soft);
}

.about-dashboard__sidebar span {
	width: 22px;
	height: 6px;
	border-radius: 999px;
	background: var(--bp-border);
}

.about-dashboard__sidebar .active {
	background: var(--bp-blue);
}

.about-dashboard__content {
	flex: 1;
	padding: 28px;
}

.about-dashboard__title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 15px;
}

.about-dashboard__label {
	color: var(--bp-text-light);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 1px;
}

.about-dashboard h3 {
	margin: 8px 0 0;
	font-size: 25px;
	letter-spacing: -1px;
}

.about-dashboard__badge {
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--bp-pink-soft);
	color: var(--bp-pink);
	font-size: 10px;
	font-weight: 800;
}

.about-dashboard__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin-top: 28px;
}

.about-mini-card {
	padding: 18px;
	border: 1px solid var(--bp-border-blue);
	border-radius: 16px;
	background: var(--bp-blue-soft);
}

.about-mini-card--pink {
	border-color: var(--bp-border-pink);
	background: var(--bp-pink-soft);
}

.about-mini-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	margin-bottom: 14px;
	border-radius: 10px;
	background: var(--bp-white);
	color: var(--bp-blue);
	font-weight: 900;
}

.about-mini-card strong,
.about-mini-card small {
	display: block;
}

.about-mini-card strong {
	font-size: 13px;
}

.about-mini-card small {
	margin-top: 5px;
	color: var(--bp-text-muted);
	font-size: 10px;
}

.about-dashboard__chart {
	margin-top: 20px;
	padding: 18px;
	border: 1px solid var(--bp-border);
	border-radius: 16px;
}

.about-chart__header {
	display: flex;
	justify-content: space-between;
	color: var(--bp-text-muted);
	font-size: 10px;
}

.about-chart__header strong {
	color: var(--bp-blue);
}

.about-chart__bars {
	display: flex;
	align-items: flex-end;
	gap: 9px;
	height: 80px;
	margin-top: 15px;
}

.about-chart__bars span {
	flex: 1;
	border-radius: 6px 6px 2px 2px;
	background: linear-gradient(
		to top,
		var(--bp-blue),
		var(--bp-blue-light)
	);
	animation: aboutBarGrow 1.2s ease both;
}

.about-chart__bars span:nth-child(1) {
	height: 30%;
}

.about-chart__bars span:nth-child(2) {
	height: 48%;
}

.about-chart__bars span:nth-child(3) {
	height: 42%;
}

.about-chart__bars span:nth-child(4) {
	height: 68%;
}

.about-chart__bars span:nth-child(5) {
	height: 78%;
}

.about-chart__bars span:nth-child(6) {
	height: 100%;
	background: linear-gradient(
		to top,
		var(--bp-pink),
		var(--bp-pink-light)
	);
}

@keyframes aboutBarGrow {

	from {
		transform: scaleY(0);
		transform-origin: bottom;
	}

	to {
		transform: scaleY(1);
		transform-origin: bottom;
	}

}


/* =========================================================
   FLOATING CARDS
========================================================= */

.about-floating-card {
	position: absolute;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 16px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: var(--bp-shadow);
	backdrop-filter: blur(15px);
	animation: aboutCardFloat 5s ease-in-out infinite;
}

.about-floating-card--one {
	top: 20%;
	left: -50px;
}

.about-floating-card--two {
	right: -40px;
	bottom: 12%;
	animation-delay: 2s;
}

@keyframes aboutCardFloat {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}

}

.about-floating-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: var(--bp-blue-pale);
	color: var(--bp-blue);
	font-weight: 900;
}

.about-floating-card strong,
.about-floating-card span {
	display: block;
}

.about-floating-card strong {
	font-size: 12px;
}

.about-floating-card div span {
	margin-top: 3px;
	color: var(--bp-text-light);
	font-size: 10px;
}


/* =========================================================
   STORY
========================================================= */

.about-story {
	background: var(--bp-white);
}

.about-story__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 100px;
}

.about-story__content p {
	margin: 0 0 20px;
	color: var(--bp-text-muted);
	font-size: 16px;
	line-height: 1.9;
}

.about-story__quote {
	display: flex;
	gap: 15px;
	margin-top: 35px;
	padding: 25px;
	border-left: 4px solid var(--bp-pink);
	border-radius: 0 16px 16px 0;
	background: var(--bp-pink-soft);
}

.about-story__quote > span {
	color: var(--bp-pink);
	font-size: 40px;
	line-height: 0.8;
}

.about-story__quote p {
	margin: 0;
	color: var(--bp-text);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.5;
}

.about-story__visual {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.about-story-card {
	padding: 30px;
	border: 1px solid var(--bp-border);
	border-radius: 24px;
	background: var(--bp-background);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.about-story-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--bp-shadow);
}

.about-story-card--large {
	grid-row: span 2;
	padding-top: 55px;
	background: var(--bp-blue-soft);
}

.about-story-card--pink {
	background: var(--bp-pink-soft);
}

.about-story-card__number {
	display: block;
	margin-bottom: 35px;
	color: var(--bp-blue);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 1px;
}

.about-story-card--pink .about-story-card__number {
	color: var(--bp-pink);
}

.about-story-card h3 {
	margin: 0 0 12px;
	font-size: 24px;
}

.about-story-card p {
	margin: 0;
	color: var(--bp-text-muted);
	font-size: 14px;
	line-height: 1.7;
}


/* =========================================================
   MISSION
========================================================= */

.about-mission {
	padding: 30px 0;
	background: var(--bp-white);
}

.about-mission__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	align-items: center;
	gap: 80px;
	padding: 70px;
	border-radius: 35px;
	background:
		linear-gradient(
			135deg,
			var(--bp-deep),
			var(--bp-deep-2)
		);
	color: var(--bp-white);
	box-shadow: var(--bp-shadow);
}

.about-mission h2 {
	margin: 0 0 20px;
	font-size: clamp(38px, 5vw, 60px);
	line-height: 1.1;
	letter-spacing: -2px;
}

.about-mission p {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
	line-height: 1.8;
}

.about-mission__stats {
	display: grid;
	gap: 15px;
}

.about-stat {
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
}

.about-stat strong,
.about-stat span {
	display: block;
}

.about-stat strong {
	font-size: 20px;
}

.about-stat span {
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.55);
	font-size: 12px;
}


/* =========================================================
   PRINCIPLES
========================================================= */

.about-principles {
	background: var(--bp-background-soft);
}

.about-principles__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.about-principle-card {
	padding: 30px;
	border: 1px solid var(--bp-border);
	border-radius: 22px;
	background: var(--bp-white);
	transition:
		transform 0.3s ease,
		border-color 0.3s ease,
		box-shadow 0.3s ease;
}

.about-principle-card:hover {
	transform: translateY(-8px);
	border-color: var(--bp-border-blue);
	box-shadow: var(--bp-shadow);
}

.about-principle-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 24px;
	border-radius: 14px;
	background: var(--bp-blue-pale);
	color: var(--bp-blue);
	font-size: 20px;
	font-weight: 900;
}

.about-principle-card__icon--pink {
	background: var(--bp-pink-pale);
	color: var(--bp-pink);
}

.about-principle-card h3 {
	margin: 0 0 12px;
	font-size: 21px;
}

.about-principle-card p {
	margin: 0;
	color: var(--bp-text-muted);
	font-size: 14px;
	line-height: 1.75;
}


/* =========================================================
   AUDIENCE
========================================================= */

.about-audience {
	padding: 120px 0;
	background: var(--bp-white);
}

.about-audience__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 100px;
	align-items: start;
}

.about-audience__content {
	position: sticky;
	top: 120px;
}

.about-audience__content p {
	max-width: 480px;
	margin: 0;
	color: var(--bp-text-muted);
	font-size: 16px;
	line-height: 1.8;
}

.about-audience__list {
	display: grid;
	gap: 18px;
}

.about-audience-item {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 20px;
	padding: 28px;
	border: 1px solid var(--bp-border);
	border-radius: 20px;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.about-audience-item:hover {
	transform: translateX(8px);
	box-shadow: var(--bp-shadow);
}

.about-audience-item__number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 55px;
	border-radius: 16px;
	background: var(--bp-blue-soft);
	color: var(--bp-blue);
	font-size: 13px;
	font-weight: 900;
}

.about-audience-item h3 {
	margin: 0 0 8px;
	font-size: 21px;
}

.about-audience-item p {
	margin: 0;
	color: var(--bp-text-muted);
	line-height: 1.7;
}


/* =========================================================
   PROCESS
========================================================= */

.about-process {
	background: var(--bp-background-blue);
}

.about-process__timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.about-process__line {
	position: absolute;
	top: 37px;
	right: 12%;
	left: 12%;
	height: 2px;
	background:
		linear-gradient(
			90deg,
			var(--bp-blue),
			var(--bp-pink)
		);
	opacity: 0.2;
}

.about-process-step {
	position: relative;
	z-index: 2;
	text-align: center;
}

.about-process-step__number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	margin: 0 auto 25px;
	border: 7px solid var(--bp-background-blue);
	border-radius: 50%;
	background: var(--bp-blue);
	color: var(--bp-white);
	font-size: 15px;
	font-weight: 900;
	box-shadow: var(--bp-shadow);
}

.about-process-step:nth-child(5) .about-process-step__number {
	background: var(--bp-pink);
}

.about-process-step h3 {
	margin: 0 0 10px;
	font-size: 21px;
}

.about-process-step p {
	margin: 0;
	color: var(--bp-text-muted);
	font-size: 14px;
	line-height: 1.7;
}


/* =========================================================
   VISION
========================================================= */

.about-vision {
	padding: 120px 0;
	background: var(--bp-white);
}

.about-vision__inner {
	position: relative;
	padding: 100px 60px;
	border-radius: 40px;
	background:
		radial-gradient(
			circle at top right,
			rgba(229, 27, 120, 0.2),
			transparent 35%
		),
		linear-gradient(
			135deg,
			var(--bp-deep),
			var(--bp-blue)
		);
	color: var(--bp-white);
	text-align: center;
	overflow: hidden;
}

.about-vision__glow {
	position: absolute;
	top: -100px;
	left: 50%;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	filter: blur(30px);
	transform: translateX(-50%);
}

.about-vision__inner > *:not(.about-vision__glow) {
	position: relative;
	z-index: 2;
}

.about-vision h2 {
	max-width: 800px;
	margin: 0 auto 22px;
	font-size: clamp(42px, 6vw, 70px);
	line-height: 1.05;
	letter-spacing: -2px;
}

.about-vision p {
	max-width: 720px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.72);
	font-size: 17px;
	line-height: 1.8;
}

.about-vision__tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 40px;
}

.about-vision__tags span {
	padding: 9px 16px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	font-size: 12px;
	font-weight: 700;
}


/* =========================================================
   CTA
========================================================= */

.about-cta {
	background: var(--bp-background);
}

.about-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 55px;
	border: 1px solid var(--bp-border);
	border-radius: 30px;
	background: var(--bp-white);
	box-shadow: var(--bp-shadow);
}

.about-cta h2 {
	margin-bottom: 12px;
	font-size: clamp(32px, 4vw, 50px);
}

.about-cta p {
	max-width: 650px;
	margin: 0;
	color: var(--bp-text-muted);
	line-height: 1.7;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

	.about-hero__container {
		grid-template-columns: 1fr;
		gap: 70px;
	}

	.about-hero__content {
		max-width: 750px;
		text-align: center;
		margin: 0 auto;
	}

	.about-hero__description {
		margin-right: auto;
		margin-left: auto;
	}

	.about-hero__actions,
	.about-hero__highlights {
		justify-content: center;
	}

	.about-hero__visual {
		max-width: 600px;
		width: 100%;
		margin: 0 auto;
	}

	.about-story__grid,
	.about-mission__inner,
	.about-audience__grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.about-audience__content {
		position: static;
	}

	.about-principles__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-process__timeline {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 60px;
	}

	.about-process__line {
		display: none;
	}

}


@media (max-width: 700px) {

	.section-space,
	.about-audience,
	.about-vision {
		padding: 80px 0;
	}

	.about-page .container {
		width: min(100% - 30px, 1180px);
	}

	.about-hero {
		min-height: auto;
		padding: 120px 0 70px;
	}

	.about-hero h1 {
		font-size: 45px;
		letter-spacing: -2px;
	}

	.about-hero__description {
		font-size: 16px;
	}

	.about-floating-card {
		display: none;
	}

	.about-dashboard__body {
		min-height: 310px;
	}

	.about-dashboard__sidebar {
		width: 50px;
	}

	.about-dashboard__content {
		padding: 20px;
	}

	.about-dashboard h3 {
		font-size: 20px;
	}

	.about-story__visual {
		grid-template-columns: 1fr;
	}

	.about-story-card--large {
		grid-row: auto;
	}

	.about-mission__inner {
		padding: 40px 25px;
	}

	.about-principles__grid {
		grid-template-columns: 1fr;
	}

	.about-process__timeline {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-vision__inner {
		padding: 70px 25px;
	}

	.about-cta__inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 35px 25px;
	}

	.about-hero__actions {
		flex-direction: column;
	}

	.about-button {
		width: 100%;
	}

}


@media (prefers-reduced-motion: reduce) {

	.about-page *,
	.about-page *::before,
	.about-page *::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

}