/* ==========================================================================
   About Us Page Stylesheet
   ========================================================================== */

/* --- Hero Section --- */
.about-hero-section {
	position: relative;
	height: 100vh;
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-color: var(--color-black);
}

.about-hero-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.about-hero-grid {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-hero-content {
	max-width: 768px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.about-hero-title {
	font-family: var(--font-heading);
	font-size: 64px;
	font-weight: 700;
	line-height: 0.9;
	letter-spacing: -1.92px;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0;
}

.about-hero-title span {
	color: var(--color-red);
}

.about-hero-subtitle {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-white);
	margin: 0;
}

/* --- Social Sidebar --- */
.about-hero-section .hero-socials {
	position: absolute;
	right: 80px;
	top: calc(50% - 100px);
	/* Center vertically on hero */
	display: flex;
	flex-direction: column;
	gap: 7px;
	z-index: 10;
}

.about-hero-section .hero-social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background-color: var(--color-red);
	transition: var(--transition);
	text-decoration: none;
}

.about-hero-section .hero-social-btn:hover {
	background-color: #a00000;
}

.about-hero-section .hero-social-btn img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

/* Align socials with container right border at wider screens */
@media (min-width: 1440px) {
	.about-hero-section .hero-socials {
		right: calc(50% - 640px);
	}
}



/* --- Creation Section --- */
.about-creation-section {
	position: relative;
	padding: 80px 0;
	background-color: var(--color-black);
	overflow: visible;
}

.about-creation-section::after {
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 0;
	width: 615px;
	height: 588px;
	border-radius: 50%;
	background: #BC0000;
	filter: blur(400px);
	top: 150px;
	left: 65%;
}

.about-creation-section .gohard-container {
	position: relative;
	z-index: 2;
}

.about-creation-title {
	font-family: var(--font-heading);
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0 0 32px 0;
}

.about-creation-title span {
	color: var(--color-red);
}

.about-creation-container {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.about-creation-image-wrapper {
	flex-shrink: 0;
	width: 630px;
	height: 583px;
	overflow: hidden;
}

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

.about-creation-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	flex-grow: 1;
}

.about-creation-list-title {
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-red);
	margin: 0;
}

/* Custom list dots styling */
.about-creation-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.about-creation-list li {
	position: relative;
	padding-left: 23px;
	/* 14px width + 9px gap */
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-white);
}

.about-creation-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 5px;
	/* Alignment for 1.2 line height */
	width: 14px;
	height: 10px;
	background: url('../img/sync/list_bullet.svg') no-repeat center;
	background-size: contain;
}

/* --- Functions Section --- */
.about-functions-section {
	position: relative;
	padding: 80px 0;
	background-color: var(--color-black);
	overflow: visible;
}

.about-functions-section::before {
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 0;
	width: 615px;
	height: 588px;
	border-radius: 50%;
	background: #BC0000;
	filter: blur(400px);
	top: -150px;
	left: -200px;
	opacity: 0.8;
}

.about-functions-section::after {
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 0;
	width: 615px;
	height: 588px;
	border-radius: 50%;
	background: #BC0000;
	filter: blur(400px);
	bottom: -150px;
	right: -200px;
	opacity: 0.8;
}

.about-functions-section .gohard-container {
	position: relative;
	z-index: 2;
}

.about-functions-title {
	font-family: var(--font-heading);
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-white);
	text-align: center;
	margin: 0 0 48px 0;
}

.about-functions-title span {
	color: var(--color-red);
}

.about-functions-rows-container {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.about-functions-row {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.about-functions-row.layout-image-left {
	flex-direction: row-reverse;
}

.about-functions-image-wrapper {
	flex-shrink: 0;
	width: 630px;
	height: 583px;
	overflow: hidden;
}

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

.about-functions-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	flex-grow: 1;
}

.about-functions-row-title {
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-red);
	margin: 0;
}

.about-functions-row-title .num {
	margin-right: 8px;
}

.about-functions-row-title .text-upper {
	text-transform: uppercase;
}

.about-functions-intro {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-white);
	margin: 0;
}

/* Custom list dots styling (functions block) */
.about-functions-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.about-functions-list li {
	position: relative;
	padding-left: 23px;
	/* 14px width + 9px gap */
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-white);
}

.about-functions-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 5px;
	/* Alignment for 1.2 line height */
	width: 14px;
	height: 10px;
	background: url('../img/sync/list_bullet.svg') no-repeat center;
	background-size: contain;
}

/* --- CTA Section --- */
.about-cta-section {
	position: relative;
	padding: 100px 80px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--color-white);
}

.about-cta-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.about-cta-container {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
}

.about-cta-title {
	font-family: var(--font-heading);
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-red);
	margin: 0;
}

.about-cta-description {
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0;
}

.about-cta-description span {
	color: var(--color-red);
}

.about-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	background-color: var(--color-red);
	color: var(--color-white);
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
}

.about-cta-btn:hover {
	background-color: #a00000;
}

/* --- Why Choose Us Section --- */
.why-section {
	position: relative;
	padding: 80px 0;
	background-color: transparent;
	overflow: hidden;
}

.why-section::after {
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 0;
	width: 615px;
	height: 588px;
	border-radius: 50%;
	background: #BC0000;
	filter: blur(400px);
	bottom: -150px;
	right: -150px;
	opacity: 0.8;
}

.why-section .gohard-container {
	position: relative;
	z-index: 2;
}

.why-header {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	text-align: center;
	margin-bottom: 40px;
}

.why-title {
	font-family: var(--font-heading);
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0;
}

.why-subtitle {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-white);
	margin: 0;
}

.why-grid {
	display: grid;
	grid-template-columns: 522px 1fr;
	gap: 20px;
	align-items: center;
}

.why-image-wrapper {
	position: relative;
	width: 522px;
	height: 100%;
	overflow: hidden;
}

.why-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.why-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 12px;
	width: 100%;
}

.why-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 24px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	min-height: 253px;
	box-sizing: border-box;
}

.why-card-index-1,
.why-card-index-2 {
	min-height: 272px;
}

.why-card-red {
	background-color: var(--color-red);
}

.why-card-grey {
	background-color: rgba(125, 125, 125, 0.15);
}

.why-card-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	height: 100%;
	justify-content: flex-start;
}

.why-card-icon-wrapper {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
}

.why-card-icon {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.why-card-text {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.why-card-title {
	font-family: var(--font-main);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--color-white);
	margin: 0;
}

.why-card-desc {
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-white);
	margin: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
	.about-hero-section {
		min-height: auto;
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.about-hero-grid {
		padding-left: 16px;
		padding-right: 16px;
	}

	.about-hero-title {
		font-size: 48px;
		letter-spacing: -1.44px;
	}

	.about-hero-subtitle {
		font-size: 16px;
	}

	.about-hero-section .hero-socials {
		display: none;
	}

	/* --- Creation Section Mobile --- */
	.about-creation-section {
		padding: 40px 0;
	}

	.about-creation-section::after {
		width: 244px;
		height: 242px;
		filter: blur(250px);
		top: -85px;
		left: -150px;
	}

	.about-creation-title {
		font-size: 32px;
		margin-bottom: 24px;
	}

	.about-creation-container {
		flex-direction: column;
		gap: 32px;
	}

	.about-creation-image-wrapper {
		width: 100%;
		height: 320px;
	}

	.about-creation-content {
		gap: 16px;
	}

	.about-creation-list-title {
		font-size: 24px;
	}

	.about-creation-list li {
		font-size: 16px;
		padding-left: 23px;
	}

	.about-creation-list li::before {
		top: 4px;
	}

	/* --- Functions Section Mobile --- */
	.about-functions-section {
		padding: 40px 0;
	}

	.about-functions-section::before {
		width: 244px;
		height: 242px;
		filter: blur(250px);
		top: -85px;
		left: -150px;
	}

	.about-functions-section::after {
		width: 244px;
		height: 242px;
		filter: blur(250px);
		bottom: -85px;
		right: -150px;
	}

	.about-functions-title {
		font-size: 32px;
		margin-bottom: 32px;
		text-align: left;
	}

	.about-functions-rows-container {
		gap: 56px;
	}

	.about-functions-row {
		flex-direction: column-reverse !important;
		gap: 32px;
	}

	.about-functions-image-wrapper {
		width: 100%;
		height: 320px;
	}

	.about-functions-content {
		gap: 16px;
	}

	.about-functions-row-title {
		font-size: 24px;
	}

	.about-functions-intro {
		font-size: 16px;
	}

	.about-functions-list li {
		font-size: 16px;
		padding-left: 23px;
	}

	.about-functions-list li::before {
		top: 4px;
	}

	/* --- CTA Section Mobile --- */
	.about-cta-section {
		padding: 80px 16px;
		min-height: auto;
	}

	.about-cta-container {
		gap: 32px;
		padding-left: 0;
		padding-right: 0;
	}

	.about-cta-title {
		font-size: 32px;
	}

	.about-cta-description {
		font-size: 20px;
		line-height: 1.5;
	}

	.about-cta-btn {
		width: 100%;
	}

	/* --- Why Choose Us Mobile --- */
	.why-section {
		padding: 40px 0;
	}

	.why-section::after {
		width: 244px;
		height: 242px;
		filter: blur(250px);
		bottom: -100px;
		right: -100px;
	}

	.why-title {
		font-size: 32px;
	}

	.why-subtitle {
		font-size: 16px;
	}

	.why-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.why-image-wrapper {
		width: 100%;
		height: 360px;
	}

	.why-cards-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.why-card {
		height: auto;
		min-height: 240px;
		padding: 24px;
	}

	.why-card-title {
		font-size: 20px;
	}

	.why-card-desc {
		font-size: 16px;
	}

	.why-card-content {
		gap: 16px;
	}
}