/* ─── About Hero ─────────────────────────────────── */
.about-hero {
	height: 100vh;
	max-height: 1075px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-color: #000;
}

.about-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.about-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius);
}

.about-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 100px;
	max-width: 978px;
	padding: 0 var(--section-padding);
}

.about-hero__text {
	display: flex;
	flex-direction: column;
	gap: 30px;
	text-align: center;
	color: var(--text-dark);
}

.about-hero__title {
	font-size: 64px;
	font-weight: var(--font-weight-regular);
	color: var(--text-dark);
}

.about-hero__subtitle {
	font-size: 40px;
	font-weight: var(--font-weight-regular);
	color: var(--text-dark);
}

.about-hero__buttons {
	display: flex;
	gap: 100px;
	align-items: center;
}

/* ─── Green Button (shared style for about + CTA) ── */
.btn-green {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 40px;
	background: var(--accent-green);
	border-radius: var(--radius);
	font-size: 20px;
	font-weight: var(--font-weight-bold);
	color: var(--text-dark);
	cursor: pointer;
	transition: opacity 0.2s;
}

.btn-green:hover {
	opacity: 0.9;
}

.btn-green--lg {
	font-size: 40px;
}

/* ─── Intro Section ─────────────────────────────── */
.about-intro {
	display: flex;
	gap: 150px;
	align-items: flex-start;
	padding: var(--section-padding);
}

.about-intro__heading {
	font-size: 48px;
	font-weight: var(--font-weight-regular);
	color: var(--primary-red);
	width: 570px;
	flex-shrink: 0;
	line-height: 1.15;
}

.about-intro__body {
	flex: 1;
	font-size: 20px;
	font-weight: var(--font-weight-regular);
	color: var(--text-dark);
	line-height: 1.6;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.about-intro__bold {
	font-weight: var(--font-weight-bold);
}

/* ─── Solutions Section ─────────────────────────── */
.about-solutions {
	padding: var(--section-padding);
	display: flex;
	flex-direction: column;
	gap: 100px;
}

.about-solutions__list {
	display: flex;
	flex-direction: column;
	gap: 200px;
}

/* Solution block — full width two-column row */
.solution-block {
	display: flex;
	align-items: center;
	gap: 60px;
	width: 100%;
}

/* Image side */
.solution-block__image {
	flex: 1 1 50%;
	min-width: 0;
	aspect-ratio: 500 / 350;
	overflow: hidden;
	border-radius: var(--radius);
	/* expanded state */
	clip-path: inset(0% 0% 0% 0% round var(--radius));
	transition: clip-path 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Collapsed — image shrinks to a corner point */
.solution-block--left .solution-block__image.image--collapsed {
	clip-path: inset(0% 100% 100% 0% round var(--radius));
}

.solution-block--right .solution-block__image.image--collapsed {
	clip-path: inset(0% 0% 100% 100% round var(--radius));
}

/* Text side */
.solution-block__content {
	flex: 1 1 50%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.solution-block__title {
	font-size: 36px;
	font-weight: var(--font-weight-bold);
	line-height: 1.2;
	color: var(--text-dark);
}

/* Body text — hidden until image finishes expanding */
.solution-block__body {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transform: translateY(30px);
	opacity: 0;
	transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
	            opacity 0.45s ease;
}

.solution-block.text--revealed .solution-block__body {
	transform: translateY(0);
	opacity: 1;
}

.solution-block__highlight {
	font-size: 32px;
	font-weight: var(--font-weight-bold);
	color: var(--text-dark);
	line-height: 1.3;
}

.solution-block__detail {
	font-size: 20px;
	font-weight: var(--font-weight-regular);
	color: var(--text-dark);
	line-height: 1.6;
}

/* ─── Our Approach Section ──────────────────────── */
.about-approach {
	padding: 100px var(--section-padding) 200px;
	display: flex;
	flex-direction: column;
	gap: 100px;
}

.about-approach__title {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.about-approach__heading {
	font-size: 48px;
	font-weight: var(--font-weight-regular);
	color: var(--text-dark);
}

.about-approach__subtitle {
	font-size: 20px;
	font-weight: var(--font-weight-regular);
	color: var(--text-dark);
}

.about-approach__cards {
	display: flex;
	gap: 35px;
	width: 100%;
}

.approach-card {
	width: 315px;
	height: 200px;
	flex-shrink: 0;
	border-left: 3px solid var(--primary-red);
	border-radius: var(--radius);
	padding: 30px 50px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.approach-card:hover {
	transform: translateY(-4px);
}

.approach-card__title {
	font-size: 24px;
	font-weight: var(--font-weight-bold);
	color: var(--text-dark);
}

.approach-card__desc {
	font-size: 20px;
	font-weight: var(--font-weight-regular);
	color: var(--text-dark);
	line-height: 1.4;
}

/* ─── ID8NXT Principles Section ─────────────────── */
.about-principles {
	background: var(--primary-red);
	padding: var(--section-padding);
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.about-principles__left {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.about-principles__heading {
	font-size: 48px;
	font-weight: var(--font-weight-regular);
	color: var(--text-white);
	width: 570px;
}

.about-principles__subtitle {
	font-size: 20px;
	font-weight: var(--font-weight-regular);
	color: var(--text-white);
}

.about-principles__right {
	width: 880px;
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.principle-item {
	display: flex;
	gap: 30px;
	align-items: center;
	white-space: nowrap;
}

.principle-item__number {
	font-size: 48px;
	font-weight: var(--font-weight-bold);
	color: var(--text-white);
}

.principle-item__text {
	font-size: 64px;
	font-weight: var(--font-weight-light);
	color: var(--text-white);
}

/* ─── Team Section ──────────────────────────────── */
.about-team {
	padding: 200px var(--section-padding) 300px;
	display: flex;
	flex-direction: column;
	gap: 100px;
}

.about-team__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.team-card {
	position: relative;
	width: 100%;
	aspect-ratio: 327 / 396;
	overflow: hidden;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover {
	transform: translateY(-4px);
}

.team-card__image img {
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-card__image img {
	transform: scale(1.05);
}

.team-card__image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 23.23%;
	background: var(--text-white);
	overflow: hidden;
}

.team-card__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(220, 31, 62, 0.15);
	mix-blend-mode: multiply;
	pointer-events: none;
}

.team-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-card__placeholder {
	width: 100%;
	height: 100%;
	background: var(--bg-light);
}

.team-card__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 62.88%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.95) 100%);
	padding: 12px 17px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2px;
}

.team-card__name {
	font-size: 20px;
	font-weight: var(--font-weight-light);
	color: var(--text-white);
	line-height: 1.36;
}

.team-card__role {
	font-size: 14px;
	font-weight: var(--font-weight-regular);
	color: var(--text-white);
	line-height: 1.39;
}

.team-card__quote {
	font-size: 12px;
	font-weight: var(--font-weight-regular);
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.49;
	margin-top: 4px;
}

.team-card__linkedin {
	font-size: 12px;
	font-weight: var(--font-weight-bold);
	color: rgba(255, 255, 255, 0.75);
	text-decoration: underline;
	margin-top: 8px;
	display: inline-block;
}

.team-card__linkedin:hover {
	color: #fff;
}

/* ─── Contact CTA Section ───────────────────────── */
.about-cta {
	background: var(--primary-red);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 220px var(--section-padding);
	gap: 80px;
}

.about-cta__heading {
	font-size: 70px;
	font-weight: var(--font-weight-light);
	color: var(--text-white);
	line-height: 1.1;
	max-width: 872px;
}

.about-cta__buttons {
	display: flex;
	gap: 100px;
	align-items: center;
}

/* ─── Responsive: 16:10 laptops (1440×900, 1536×864, 1600×900, 1680×1050) ─── */
@media (max-width: 1680px) {
	.about-intro {
		gap: 80px;
	}

	.about-intro__heading {
		width: auto;
		flex: 0 1 480px;
	}

	/* Principles row: shrink the heading column to give the right column
	   enough room to render each principle on a single line at every
	   breakpoint above 1200px (where the layout stacks vertically). */
	.about-principles {
		gap: 48px;
	}

	.about-principles__left {
		flex: 0 0 28%;
	}

	.about-principles__heading {
		width: auto;
		max-width: none;
		font-size: 42px;
	}

	.about-principles__right {
		width: auto;
		flex: 1 1 0;
		min-width: 0;
		gap: 40px;
	}

	.principle-item {
		white-space: nowrap;
		gap: 24px;
	}

	.principle-item__number {
		font-size: 36px;
	}

	.principle-item__text {
		font-size: 44px;
	}
}

/* ─── Responsive: 1200px ────────────────────────── */
@media (max-width: 1200px) {
	.about-hero__title {
		font-size: 48px;
	}

	.about-hero__subtitle {
		font-size: 30px;
	}

	.about-hero__content {
		gap: 60px;
	}

	.about-hero__buttons {
		gap: 40px;
	}

	.btn-green--lg {
		font-size: 30px;
	}

	.about-intro {
		gap: 80px;
	}

	.about-intro__heading {
		font-size: 36px;
		width: 400px;
	}

	.solution-block {
		gap: 40px;
	}

	.about-approach__cards {
		flex-wrap: wrap;
	}

	.approach-card {
		width: calc(33.333% - 24px);
	}

	.about-approach {
		padding: 80px var(--section-padding) 150px;
		gap: 60px;
	}

	.about-principles {
		flex-direction: column;
		gap: 60px;
	}

	.about-principles__heading {
		font-size: 40px;
	}

	.about-principles__right {
		width: 100%;
	}

	.principle-item__text {
		font-size: 48px;
	}

	.principle-item__number {
		font-size: 36px;
	}

	.about-team {
		padding: 150px var(--section-padding) 200px;
		gap: 60px;
	}

	.about-team__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.about-cta {
		padding: 200px var(--section-padding);
	}

	.about-cta__heading {
		font-size: 54px;
	}

	.about-cta__buttons {
		gap: 40px;
	}
}

/* ─── Responsive: 1024px ────────────────────────── */
@media (max-width: 1024px) {
	.about-hero {
		height: 80vh;
	}

	.about-intro {
		flex-direction: column;
		gap: 40px;
		padding: 80px 40px;
	}

	.about-intro__heading {
		width: 100%;
		font-size: 32px;
	}

	.about-solutions {
		padding: 80px 40px;
		gap: 60px;
	}

	.solution-block {
		flex-direction: column;
		gap: 32px;
	}

	.solution-block--right {
		flex-direction: column-reverse;
	}

	.solution-block__image,
	.solution-block__content {
		flex: none;
		width: 100%;
	}

	.approach-card {
		width: calc(50% - 18px);
	}

	.about-approach {
		padding: 60px 40px 100px;
		gap: 40px;
	}

	.about-approach__heading {
		font-size: 36px;
	}

	.about-principles__heading {
		width: 100%;
		font-size: 36px;
	}

	.principle-item {
		white-space: normal;
	}

	.principle-item__text {
		font-size: 36px;
	}

	.principle-item__number {
		font-size: 28px;
	}

	.about-team {
		padding: 100px 40px 150px;
		gap: 40px;
	}

	.about-team__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.about-cta {
		padding: 150px 40px;
	}

	.about-cta__heading {
		font-size: 42px;
	}
}

/* ─── Responsive: 768px ─────────────────────────── */
@media (max-width: 768px) {
	.about-hero {
		height: 600px;
	}

	.about-hero__content {
		gap: 40px;
	}

	.about-hero__title {
		font-size: 36px;
	}

	.about-hero__subtitle {
		font-size: 22px;
	}

	.about-hero__buttons {
		flex-direction: column;
		gap: 20px;
	}

	.btn-green--lg {
		font-size: 22px;
	}

	.about-intro {
		padding: 60px 20px;
	}

	.about-intro__heading {
		font-size: 28px;
	}

	.about-intro__body {
		font-size: 16px;
	}

	.about-solutions {
		padding: 60px 20px;
		gap: 50px;
	}

	.about-solutions__list {
		gap: 50px;
	}

	.solution-block {
		flex-direction: column;
		gap: 24px;
	}

	.solution-block--right {
		flex-direction: column;
	}

	.solution-block__title {
		font-size: 24px;
	}

	.solution-block__highlight {
		font-size: 22px;
	}

	.solution-block__detail {
		font-size: 16px;
	}

	.about-approach {
		padding: 60px 20px 100px;
		gap: 40px;
	}

	.about-approach__heading {
		font-size: 32px;
	}

	.about-approach__cards {
		flex-direction: column;
		gap: 20px;
	}

	.approach-card {
		width: 100%;
		height: auto;
		min-height: 160px;
		padding: 20px 30px;
	}

	.approach-card__title {
		font-size: 20px;
	}

	.approach-card__desc {
		font-size: 16px;
	}

	.about-principles {
		padding: 60px 20px;
		gap: 40px;
	}

	.about-principles__heading {
		font-size: 32px;
	}

	.about-principles__right {
		gap: 30px;
	}

	.principle-item {
		gap: 16px;
	}

	.principle-item__number {
		font-size: 22px;
	}

	.principle-item__text {
		font-size: 24px;
	}

	.about-team {
		padding: 80px 20px 120px;
		gap: 40px;
	}

	.about-team__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.team-card__name {
		font-size: 16px;
	}

	.team-card__role {
		font-size: 13px;
	}

	.team-card__quote {
		font-size: 12px;
	}

	.about-cta {
		padding: 120px 20px;
		gap: 20px;
	}

	.about-cta__heading {
		font-size: 32px;
	}

	.about-cta__buttons {
		flex-direction: column;
		gap: 20px;
	}
}

/* ─── Responsive: 1680px+ ────────────────────────── */
@media (min-width: 1680px) {
	/* Hero */
	.about-hero__content {
		max-width: 1180px;
		gap: 120px;
	}
	.about-hero__title {
		font-size: 76px;
	}
	.about-hero__subtitle {
		font-size: 46px;
	}
	.about-hero__buttons {
		gap: 120px;
	}
	.btn-green--lg {
		font-size: 44px;
	}

	/* Intro */
	.about-intro {
		gap: 180px;
	}
	.about-intro__heading {
		font-size: 56px;
		width: 640px;
	}
	.about-intro__body {
		font-size: 22px;
	}

	/* Solutions */
	.about-solutions {
		gap: 120px;
	}
	.about-solutions__list {
		gap: 220px;
	}
	.solution-block {
		gap: 80px;
	}
	.solution-block__title {
		font-size: 42px;
	}
	.solution-block__highlight {
		font-size: 36px;
	}
	.solution-block__detail {
		font-size: 22px;
	}

	/* Approach */
	.about-approach {
		gap: 120px;
	}
	.about-approach__heading {
		font-size: 56px;
	}
	.about-approach__subtitle {
		font-size: 22px;
	}
	.about-approach__cards {
		gap: 40px;
	}
	.approach-card {
		flex: 1;
		width: auto;
		height: 220px;
		padding: 36px 56px;
	}
	.approach-card__title {
		font-size: 28px;
	}
	.approach-card__desc {
		font-size: 22px;
	}

	/* Principles — keep single-line text by tightening left column ratio
	   and sizing principle text against the right column's actual width. */
	.about-principles {
		gap: 64px;
	}
	.about-principles__left {
		flex: 0 0 30%;
	}
	.about-principles__heading {
		width: auto;
		font-size: 52px;
	}
	.about-principles__subtitle {
		font-size: 22px;
	}
	.about-principles__right {
		flex: 1 1 0;
		min-width: 0;
		width: auto;
		gap: 48px;
	}
	.principle-item {
		white-space: nowrap;
		gap: 28px;
	}
	.principle-item__number {
		font-size: 44px;
	}
	.principle-item__text {
		font-size: 56px;
	}

	/* Team */
	.about-team {
		gap: 120px;
	}
	.about-team__grid {
		gap: 24px;
	}
	.team-card__overlay {
		padding: 16px 22px;
	}
	.team-card__name {
		font-size: 24px;
	}
	.team-card__role {
		font-size: 16px;
	}
	.team-card__quote {
		font-size: 14px;
	}

	/* CTA */
	.about-cta {
		padding: 240px var(--section-padding);
	}
	.about-cta__heading {
		font-size: 84px;
		max-width: 1020px;
	}
	.about-cta__buttons {
		gap: 120px;
	}
}

/* ─── Responsive: 1920px+ ────────────────────────── */
@media (min-width: 1920px) {
	/* Hero */
	.about-hero__content {
		max-width: 1320px;
	}
	.about-hero__title {
		font-size: 88px;
	}
	.about-hero__subtitle {
		font-size: 52px;
	}
	.btn-green--lg {
		font-size: 48px;
	}

	/* Intro */
	.about-intro__heading {
		font-size: 64px;
		width: 720px;
	}
	.about-intro__body {
		font-size: 24px;
	}

	/* Solutions */
	.solution-block__title {
		font-size: 48px;
	}
	.solution-block__highlight {
		font-size: 40px;
	}
	.solution-block__detail {
		font-size: 24px;
	}

	/* Approach */
	.about-approach__heading {
		font-size: 64px;
	}
	.about-approach__subtitle {
		font-size: 24px;
	}
	.approach-card {
		height: 240px;
		padding: 40px 60px;
	}
	.approach-card__title {
		font-size: 32px;
	}
	.approach-card__desc {
		font-size: 24px;
	}

	/* Principles */
	.about-principles__heading {
		font-size: 60px;
	}
	.about-principles__subtitle {
		font-size: 24px;
	}
	.about-principles__right {
		gap: 56px;
	}
	.principle-item {
		white-space: nowrap;
		gap: 32px;
	}
	.principle-item__number {
		font-size: 52px;
	}
	.principle-item__text {
		font-size: 68px;
	}

	/* Team — keep 4 cols; bump card text */
	.team-card__overlay {
		padding: 20px 26px;
	}
	.team-card__name {
		font-size: 28px;
	}
	.team-card__role {
		font-size: 18px;
	}
	.team-card__quote {
		font-size: 15px;
	}

	/* CTA */
	.about-cta {
		padding: 260px var(--section-padding);
	}
	.about-cta__heading {
		font-size: 96px;
		max-width: 1140px;
	}
}

/* ─── Responsive: 2400px+ ────────────────────────── */
@media (min-width: 2400px) {
	/* Hero */
	.about-hero__content {
		max-width: 1480px;
	}
	.about-hero__title {
		font-size: 104px;
	}
	.about-hero__subtitle {
		font-size: 60px;
	}
	.btn-green--lg {
		font-size: 56px;
	}

	/* Intro */
	.about-intro__heading {
		font-size: 76px;
		width: 880px;
	}
	.about-intro__body {
		font-size: 28px;
	}

	/* Solutions */
	.solution-block__title {
		font-size: 56px;
	}
	.solution-block__highlight {
		font-size: 48px;
	}
	.solution-block__detail {
		font-size: 28px;
	}

	/* Approach */
	.about-approach__heading {
		font-size: 76px;
	}
	.about-approach__subtitle {
		font-size: 28px;
	}
	.approach-card {
		height: 280px;
		padding: 48px 72px;
	}
	.approach-card__title {
		font-size: 36px;
	}
	.approach-card__desc {
		font-size: 28px;
	}

	/* Principles */
	.about-principles__heading {
		font-size: 72px;
	}
	.about-principles__subtitle {
		font-size: 28px;
	}
	.about-principles__right {
		gap: 64px;
	}
	.principle-item {
		white-space: nowrap;
		gap: 40px;
	}
	.principle-item__number {
		font-size: 64px;
	}
	.principle-item__text {
		font-size: 88px;
	}

	/* Team — keep 4 cols; bump card text further */
	.team-card__overlay {
		padding: 24px 32px;
	}
	.team-card__name {
		font-size: 32px;
	}
	.team-card__role {
		font-size: 21px;
	}
	.team-card__quote {
		font-size: 18px;
	}

	/* CTA */
	.about-cta {
		padding: 280px var(--section-padding);
	}
	.about-cta__heading {
		font-size: 116px;
		max-width: 1340px;
	}
}
