/**
 * Estatein About page sections.
 * Values taken from the Figma frame "About Us Page - Desktop" at 1920 wide.
 */

.estat-about {
	--estat-accent: #703bf7;
	--estat-accent-hover: #a685fa;
	--estat-surface: #141414;
	--estat-surface-2: #1a1a1a;
	--estat-border: #262626;
	--estat-border-strong: #333333;
	--estat-grey-30: #4d4d4d;
	--estat-grey-40: #666666;
	--estat-grey-50: #808080;
	--estat-text: #ffffff;
	--estat-muted: #999999;

	--estat-wrap: 1596px;
	--estat-gap: 30px;
	--estat-cols: 3;
	--estat-radius: 10px;
	--estat-radius-lg: 12px;
	--estat-head-gap: 80px;

	width: 100%;
	max-width: var(--estat-wrap);
	margin: 0 auto;
	color: var(--estat-text);
	font-family: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 18px;
	line-height: 1.5;
}

.estat-about *,
.estat-about *::before,
.estat-about *::after {
	box-sizing: border-box;
}

/* Section heading
------------------------------------------------------------------ */
.estat-about .estat-section-head {
	margin-bottom: var(--estat-head-gap);
}

.estat-about .estat-section-head h2 {
	margin: 0;
	font-size: 48px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: -0.01em;
}

.estat-about .estat-section-head p {
	max-width: 1297px;
	margin: 14px 0 0;
	color: var(--estat-muted);
	font-size: 18px;
	line-height: 1.5;
}

.estat-about .estat-section-head--split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
}

.estat-sparkle-mark {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 10px;
}

.estat-sparkle-mark span {
	display: block;
	background: var(--estat-border-strong);
	border-radius: 50%;
}

.estat-sparkle-mark span:nth-child(1) {
	width: 30px;
	height: 30px;
	background: transparent;
	color: var(--estat-muted);
	font-size: 26px;
	line-height: 30px;
	text-align: center;
}

.estat-sparkle-mark span:nth-child(2) {
	width: 18px;
	height: 18px;
}

.estat-sparkle-mark span:nth-child(3) {
	width: 8.4px;
	height: 8.4px;
}

/* Buttons
------------------------------------------------------------------ */
.estat-about .estat-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 18px 24px;
	border: 1px solid var(--estat-border);
	border-radius: var(--estat-radius);
	background: var(--estat-surface);
	color: var(--estat-text);
	font-family: inherit;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.estat-about .estat-btn:hover {
	border-color: var(--estat-accent);
	transform: translateY(-2px);
}

.estat-about .estat-btn--primary {
	background: var(--estat-accent);
	border-color: var(--estat-accent);
}

.estat-about .estat-btn--primary:hover {
	background: var(--estat-accent-hover);
	border-color: var(--estat-accent-hover);
	color: #0a0a0a;
}

.estat-about .estat-round {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border: 1px solid var(--estat-border);
	border-radius: 50%;
	background: var(--estat-surface);
	color: var(--estat-text);
	cursor: pointer;
	transition: border-color 0.25s ease, transform 0.25s ease;
}

.estat-about .estat-round:hover {
	border-color: var(--estat-accent);
	transform: translateY(-2px);
}

.estat-about .estat-round svg {
	width: 30px;
	height: 30px;
	stroke: currentColor;
	stroke-width: 1.6;
	fill: none;
}

.estat-about .estat-round.is-disabled {
	opacity: 0.35;
	pointer-events: none;
}

/* Shared card grid
------------------------------------------------------------------ */
.estat-about-grid {
	display: grid;
	grid-template-columns: repeat(var(--estat-cols), minmax(0, 1fr));
	gap: var(--estat-gap);
}

.estat-about-card {
	padding: 50px;
	border: 5px solid #262626;
	border-radius: var(--estat-radius-lg);
	background: var(--estat-surface);
	transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.estat-about-card:hover {
	border-color: var(--estat-accent);
	background: var(--estat-surface-2);
	transform: translateY(-4px);
}

.estat-about-card__title {
	margin: 0;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.5;
}

.estat-about-card__text {
	margin: 30px 0 0;
	color: var(--estat-muted);
	font-size: 18px;
	line-height: 1.5;
}

/* Journey
------------------------------------------------------------------ */
.estat-journey__layout {
	display: grid;
	grid-template-columns: 755fr 755fr;
	gap: 80px;
	align-items: center;
}

.estat-journey__copy h2 {
	margin: 0;
	font-size: 48px;
	font-weight: 500;
	line-height: 1.5;
}

.estat-journey__copy p {
	margin: 14px 0 0;
	color: var(--estat-muted);
	font-size: 18px;
	line-height: 1.5;
}

.estat-journey__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin: 80px 0 0;
	padding: 0;
	list-style: none;
}

.estat-journey__stats li {
	padding: 24px;
	border: 1px solid var(--estat-border);
	border-radius: var(--estat-radius-lg);
	background: #1A1A1A;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.estat-journey__stats li:hover {
	border-color: var(--estat-accent);
	transform: translateY(-3px);
}

.estat-journey__stats strong {
	display: block;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.5;
}

.estat-journey__stats span {
	display: block;
	margin-top: 2px;
	color: var(--estat-muted);
	font-size: 18px;
	line-height: 1.5;
}

.estat-journey__media {
	overflow: hidden;
	border-radius: var(--estat-radius-lg);
	aspect-ratio: 755 / 546;
	background: var(--estat-surface);
}

.estat-journey__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.estat-journey__media:hover img {
	transform: scale(1.04);
}

/* Values
------------------------------------------------------------------ */
.estat-values__layout {
	display: grid;
	grid-template-columns: 517fr 999fr;
	gap: 80px;
	align-items: center;
}

.estat-values__panel {
	padding: 60px;
	border: 5px solid #262626;
	border-radius: var(--estat-radius-lg);
	background: var(--estat-surface);
}

.estat-values__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 60px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.estat-values__list li {
	position: relative;
}

.estat-values__list li::after {
	content: "";
	position: absolute;
	top: 0;
	right: -30px;
	width: 1px;
	height: 100%;
	background: var(--estat-border);
}

.estat-values__list li:nth-child(2n)::after {
	display: none;
}

.estat-values__head {
	display: flex;
	align-items: center;
	gap: 14px;
}

.estat-values__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	flex: 0 0 74px;
	border: 1px solid var(--estat-border);
	border-radius: var(--estat-radius-lg);
	background: var(--estat-surface-2);
	color: var(--estat-accent);
	transition: border-color 0.3s ease, color 0.3s ease;
}

.estat-values__list li:hover .estat-values__icon {
	border-color: var(--estat-accent);
	color: var(--estat-accent-hover);
}

.estat-values__icon svg,
.estat-values__icon img {
	width: 34px;
	height: 34px;
	object-fit: contain;
}

.estat-values__icon i {
	font-size: 34px;
	line-height: 1;
}

.estat-values__head h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5;
}

.estat-values__list p {
	margin: 20px 0 0;
	color: var(--estat-muted);
	font-size: 18px;
	line-height: 1.5;
}

/* Steps
------------------------------------------------------------------ */
.estat-steps__list {
	display: grid;
	grid-template-columns: repeat(var(--estat-cols), minmax(0, 1fr));
	gap: 50px 30px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: estat-step;
}

.estat-step {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--estat-border);
	border-radius: var(--estat-radius-lg);
	background: var(--estat-surface);
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.estat-step:hover {
	border-color: var(--estat-accent);
	transform: translateY(-4px);
}

.estat-step__number {
	padding: 16px 20px;
	border-bottom: 1px solid var(--estat-border);
	background: var(--estat-surface-2);
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
}

.estat-step__body {
	flex: 1;
	padding: 50px;
	background: linear-gradient(135deg, rgba(112, 59, 247, 0.32) 0%, rgba(112, 59, 247, 0.10) 18%, rgba(112, 59, 247, 0) 42%), #141414;
}

.estat-step__body h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.625;
}

.estat-step__body p {
	margin: 20px 0 0;
	color: var(--estat-muted);
	font-size: 18px;
	line-height: 1.5;
}

/* Team
------------------------------------------------------------------ */
.estat-team__list {
	display: grid;
	grid-template-columns: repeat(var(--estat-cols), minmax(0, 1fr));
	gap: var(--estat-gap);
	margin: 0;
	padding: 0;
	list-style: none;
}

.estat-team__card {
	position: relative;
	height: 100%;
	padding: 30px;
	border: 1px solid var(--estat-border);
	border-radius: var(--estat-radius-lg);
	background: var(--estat-surface);
	text-align: center;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.estat-team__card:hover {
	border-color: var(--estat-accent);
	transform: translateY(-4px);
}

.estat-team__photo {
	position: relative;
	overflow: hidden;
	border-radius: var(--estat-radius);
	aspect-ratio: 316 / 253;
	background: var(--estat-surface-2);
}

.estat-team__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.estat-team__card:hover .estat-team__photo img {
	transform: scale(1.05);
}

.estat-team__badge {
	position: absolute;
	left: 50%;
	bottom: -26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 76px;
	height: 52px;
	transform: translateX(-50%);
	border: 1px solid var(--estat-border);
	border-radius: var(--estat-radius);
	background: var(--estat-surface-2);
	color: var(--estat-text);
	transition: background-color 0.25s ease, border-color 0.25s ease;
}

.estat-team__badge:hover {
	border-color: var(--estat-accent);
	background: var(--estat-accent);
}

.estat-team__badge svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.estat-team__name {
	margin: 50px 0 0;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4;
}

.estat-team__role {
	margin: 6px 0 0;
	color: var(--estat-muted);
	font-size: 16px;
	line-height: 1.5;
}

.estat-team__quote {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 24px;
	padding: 14px 14px 14px 24px;
	border: 1px solid var(--estat-border);
	border-radius: var(--estat-radius);
	background: var(--estat-surface-2);
	text-align: left;
}

.estat-team__quote span {
	font-size: 18px;
	line-height: 1.5;
}

.estat-team__social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	border-radius: 50%;
	background: var(--estat-surface);
	color: var(--estat-text);
	transition: background-color 0.25s ease;
}

.estat-team__social:hover {
	background: var(--estat-accent);
}

.estat-team__social svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

/* Clients
------------------------------------------------------------------ */
.estat-clients__list {
	display: grid;
	grid-template-columns: repeat(var(--estat-cols), minmax(0, 1fr));
	gap: 50px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.estat-client {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 50px;
	border: 1px solid var(--estat-border);
	border-radius: var(--estat-radius-lg);
	background: var(--estat-surface);
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.estat-client:hover {
	border-color: var(--estat-accent);
	transform: translateY(-4px);
}

.estat-client__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.estat-client__head span {
	display: block;
	color: var(--estat-muted);
	font-size: 18px;
	line-height: 1.5;
}

.estat-client__head h3 {
	margin: 6px 0 0;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.5;
}

.estat-client__meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 60px;
	margin-top: 40px;
}

.estat-client__meta > div + div {
	position: relative;
}

.estat-client__meta > div + div::before {
	content: "";
	position: absolute;
	top: 0;
	left: -30px;
	width: 1px;
	height: 100%;
	background: var(--estat-border);
}

.estat-client__label {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--estat-muted);
	font-size: 18px;
	line-height: 1.5;
}

.estat-client__label svg {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	stroke: currentColor;
	stroke-width: 1.6;
	fill: none;
}

.estat-client__meta strong {
	display: block;
	margin-top: 8px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
}

.estat-client__quote {
	margin-top: 40px;
	padding: 30px;
	border: 1px solid var(--estat-border);
	border-radius: var(--estat-radius);
	background: var(--estat-surface-2);
}

.estat-client__quote h4 {
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
}

.estat-client__quote p {
	margin: 14px 0 0;
	color: var(--estat-muted);
	font-size: 18px;
	line-height: 1.5;
}

.estat-clients__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 50px;
}

.estat-clients__count {
	margin: 0;
	color: var(--estat-muted);
	font-size: 20px;
	line-height: 1.5;
}

.estat-clients__count strong {
	color: var(--estat-text);
	font-weight: 500;
}

.estat-clients__nav {
	display: flex;
	gap: 10px;
}

/* CTA
------------------------------------------------------------------ */
.estat-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	padding: 100px 0;
}

.estat-cta__copy h2 {
	margin: 0;
	max-width: 1154px;
	font-size: 48px;
	font-weight: 500;
	line-height: 1.5;
}

.estat-cta__copy p {
	max-width: 1154px;
	margin: 14px 0 0;
	color: var(--estat-muted);
	font-size: 18px;
	line-height: 1.5;
}

/* Responsive
------------------------------------------------------------------ */
@media (max-width: 1600px) {
	.estat-about {
		padding: 0 40px;
	}
}

@media (max-width: 1280px) {
	.estat-about {
		font-size: 17px;
	}

	.estat-about .estat-section-head h2,
	.estat-journey__copy h2,
	.estat-cta__copy h2 {
		font-size: 38px;
	}

	.estat-journey__layout,
	.estat-values__layout {
		gap: 50px;
	}

	.estat-values__panel {
		padding: 40px;
	}

	.estat-about-card,
	.estat-step__body,
	.estat-client {
		padding: 36px;
	}
}

@media (max-width: 1024px) {
	.estat-journey__layout,
	.estat-values__layout {
		grid-template-columns: 1fr;
	}

	.estat-about-grid,
	.estat-steps__list,
	.estat-team__list,
	.estat-clients__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.estat-cta {
		flex-direction: column;
		align-items: flex-start;
		padding: 70px 0;
	}
}

@media (max-width: 782px) {
	.estat-about {
		padding: 0 20px;
		font-size: 16px;
	}

	.estat-about .estat-section-head {
		margin-bottom: 40px;
	}

	.estat-about .estat-section-head--split {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.estat-about .estat-section-head h2,
	.estat-journey__copy h2,
	.estat-cta__copy h2 {
		font-size: 30px;
	}

	.estat-about-card__title,
	.estat-client__head h3 {
		font-size: 24px;
	}

	.estat-journey__stats {
		grid-template-columns: 1fr;
		margin-top: 40px;
	}

	.estat-values__list {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.estat-values__list li::after {
		display: none;
	}

	.estat-about-grid,
	.estat-steps__list,
	.estat-team__list,
	.estat-clients__list {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.estat-client__meta {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.estat-client__meta > div + div::before {
		display: none;
	}

	.estat-about .estat-round {
		width: 48px;
		height: 48px;
	}

	.estat-about .estat-round svg {
		width: 22px;
		height: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.estat-about *,
	.estat-about *::before,
	.estat-about *::after {
		transition-duration: 0.01ms !important;
	}
}



.estat-hello {
	--estat-accent: #703bf7;
	--estat-accent-hover: #a685fa;
	--estat-surface: #141414;
	--estat-border: #262626;
	--estat-text: #ffffff;
	--estat-muted: #999999;

	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	max-width: 423px;
	height: 66px;
	padding: 9px 9px 9px 24px;
	border: 1px solid var(--estat-border);
	border-radius: 999px;
	background: var(--estat-surface);
	transition: border-color 0.25s ease;
	margin-top: 30px;
}

.estat-hello:hover,
.estat-hello:focus-within {
	border-color: var(--estat-accent);
}

.estat-hello__label {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

.estat-hello__input {
	flex: 1;
	min-width: 0;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--estat-text);
	font-family: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 18px;
	line-height: 1.5;
}

.estat-hello__input:focus {
	outline: none;
}

.estat-hello__input::placeholder {
	color: var(--estat-text);
	opacity: 1;
}

.estat-hello__send {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--estat-accent);
	color: #ffffff;
	cursor: pointer;
	transition: background-color 0.25s ease, transform 0.25s ease;
}

.estat-hello__send:hover {
	background: var(--estat-accent-hover);
	transform: translateX(2px);
}

.estat-hello__send:focus-visible {
	outline: 2px solid var(--estat-accent-hover);
	outline-offset: 3px;
}

.estat-hello__send svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	transform: translateX(-1px);
}

@media (max-width: 480px) {
	.estat-hello {
		height: 58px;
		padding-left: 18px;
	}

	.estat-hello__input {
		font-size: 16px;
	}

	.estat-hello__send {
		width: 42px;
		height: 42px;
		flex-basis: 42px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.estat-hello,
	.estat-hello__send {
		transition: none;
	}

	.estat-hello__send:hover {
		transform: none;
	}
}