@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

.sfta-wrap,
.sfta-wrap * {
	box-sizing: border-box;
}

.sfta-wrap {
	--navy: #06386d;
	--navy-dark: #042d59;
	--orange: #f58220;
	--text: #16243a;
	--muted: #606b78;
	--light: #f5f8fb;
	--border: #e4e9ef;
	--why-start: #063d77;
	--why-end: #032e5e;
	width: 100%;
	font-family: 'Poppins', sans-serif;
	color: var(--text);
	overflow: hidden;
}

.sfta-wrap img {
	max-width: 100%;
	display: block;
}

.sfta-wrap svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.sfta-container {
	width: min(1180px, 92%);
	margin: auto;
}

.sfta-section-pad {
	padding-top: 60px;
	padding-bottom: 60px;
}

.sfta-title {
	text-align: center;
	font-size: 34px;
	line-height: 1.2;
	font-weight: 700;
	color: #11213a;
	margin: 0;
}

.sfta-line {
	width: 42px;
	height: 3px;
	margin: 12px auto 34px;
	background: var(--orange);
	border-radius: 20px;
}

.sfta-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 14px;
	box-shadow: 0 6px 25px rgba(17, 43, 75, .06);
}

.sfta-who {
	background: #fff;
}

.sfta-who-grid {
	display: grid;
	grid-template-columns: 1fr 1.06fr;
	gap: 45px;
	align-items: center;
}

.sfta-who-image {
	height: 365px;
	overflow: hidden;
	border-radius: 18px;
}

.sfta-who-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sfta-who-content h2 {
	font-size: 34px;
	line-height: 1.2;
	margin: 0;
	font-weight: 700;
	color: #11213a;
}

.sfta-left-line {
	width: 38px;
	height: 3px;
	background: var(--orange);
	margin: 12px 0 22px;
	border-radius: 20px;
}

.sfta-who-content p {
	margin: 0 0 18px;
	color: #505b69;
	font-size: 14px;
	line-height: 1.85;
}

.sfta-journey {
	background: linear-gradient(180deg, var(--light) 0%, #ffffff 100%);
}

.sfta-timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 17px;
	padding-top: 30px;
}

.sfta-timeline::before {
	content: "";
	position: absolute;
	top: 11px;
	left: 9%;
	right: 9%;
	height: 2px;
	background: #244e79;
}

.sfta-journey-card {
	position: relative;
	padding: 38px 18px 25px;
	min-height: 285px;
	text-align: center;
	transition: .3s ease;
}

.sfta-journey-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 35px rgba(18, 55, 92, .11);
}

.sfta-node {
	position: absolute;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--orange);
	top: -29px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}

.sfta-node::after {
	content: "";
	position: absolute;
	width: 7px;
	height: 7px;
	background: var(--orange);
	border-radius: 50%;
	top: 3px;
	left: 3px;
}

.sfta-journey-icon {
	font-size: 40px;
	color: var(--navy);
	margin-bottom: 16px;
}

.sfta-journey-card:nth-child(odd) .sfta-journey-icon {
	color: var(--orange);
}

.sfta-journey-card h3 {
	margin: 0 0 12px;
	font-size: 17px;
	line-height: 1.35;
	color: #12335d;
}

.sfta-journey-card h3 strong {
	display: block;
	font-size: 24px;
	margin-bottom: 3px;
}

.sfta-journey-card p {
	font-size: 12px;
	line-height: 1.75;
	margin: 0;
	color: var(--muted);
}

.sfta-mvv {
	background: #fff;
}

.sfta-mvv-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1.2fr;
	gap: 22px;
}

.sfta-mvv-card {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 30px;
	min-height: 190px;
}

.sfta-mvv-icon {
	width: 70px;
	height: 70px;
	flex: 0 0 70px;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
}

.sfta-mvv-card h3 {
	font-size: 18px;
	margin: 3px 0 12px;
	color: #17365e;
}

.sfta-mvv-card p {
	margin: 0;
	font-size: 12.5px;
	line-height: 1.75;
	color: var(--muted);
}

.sfta-values {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 11px 18px;
	margin-top: 7px;
}

.sfta-value {
	position: relative;
	padding-left: 16px;
	font-size: 12.5px;
	color: #4a5665;
}

.sfta-value::before {
	content: "";
	width: 6px;
	height: 6px;
	position: absolute;
	left: 0;
	top: 7px;
	background: var(--orange);
	border-radius: 50%;
}

.sfta-why {
	background: linear-gradient(120deg, var(--why-start), var(--why-end));
	color: #fff;
}

.sfta-why-inner {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	min-height: 260px;
}

.sfta-why-content {
	padding: 42px 0;
}

.sfta-why-content h2 {
	font-size: 31px;
	line-height: 1.25;
	margin: 0;
	color: #fff;
}

.sfta-why-line {
	width: 40px;
	height: 3px;
	background: var(--orange);
	margin: 12px 0 23px;
}

.sfta-benefits {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px 30px;
}

.sfta-benefit {
	display: flex;
	align-items: center;
	gap: 11px;
	font-size: 14px;
}

.sfta-benefit i {
	width: 21px;
	height: 21px;
	flex: 0 0 21px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--orange);
	font-size: 11px;
	color: #fff;
}

.sfta-tools-image {
	position: relative;
	min-height: 260px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
}

.sfta-tools-image img {
	width: 100%;
	height: 100%;
	min-height: 260px;
	object-fit: cover;
	object-position: center;
	opacity: .95;
}

.sfta-tools-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #06386d 0%, rgba(6, 56, 109, .18) 45%, rgba(6, 56, 109, .05) 100%);
}

.sfta-commitment {
	background: #fff;
}

.sfta-commit-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.sfta-commit-card {
	padding: 27px 25px;
	display: flex;
	gap: 20px;
	min-height: 170px;
	transition: .3s;
}

.sfta-commit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 34px rgba(10, 50, 90, .1);
}

.sfta-commit-icon {
	width: 65px;
	height: 65px;
	flex: 0 0 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--navy);
	font-size: 39px;
}

.sfta-commit-card h3 {
	margin: 3px 0 9px;
	font-size: 16px;
	color: #12355f;
}

.sfta-commit-card p {
	margin: 0;
	font-size: 12.5px;
	line-height: 1.75;
	color: var(--muted);
}

@media (max-width: 1024px) {
	.sfta-who-grid {
		gap: 30px;
	}

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

	.sfta-timeline::before {
		display: none;
	}

	.sfta-node {
		top: -10px;
	}

	.sfta-journey-card {
		padding-top: 32px;
	}

	.sfta-mvv-grid,
	.sfta-commit-grid {
		grid-template-columns: 1fr 1fr;
	}

	.sfta-mvv-card:last-child,
	.sfta-commit-card:last-child {
		grid-column: 1 / -1;
	}

	.sfta-why-inner {
		grid-template-columns: 1fr .7fr;
	}
}

@media (max-width: 767px) {
	.sfta-title {
		font-size: 27px;
	}

	.sfta-section-pad {
		padding-top: 45px;
		padding-bottom: 45px;
	}

	.sfta-who-grid,
	.sfta-mvv-grid,
	.sfta-why-inner,
	.sfta-commit-grid {
		grid-template-columns: 1fr;
	}

	.sfta-who-grid {
		gap: 28px;
	}

	.sfta-who-image {
		height: 260px;
	}

	.sfta-who-content h2 {
		font-size: 28px;
	}

	.sfta-who-content p {
		font-size: 13.5px;
	}

	.sfta-timeline {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
		padding-top: 10px;
	}

	.sfta-node {
		display: none;
	}

	.sfta-journey-card {
		min-height: 260px;
		padding: 24px 14px;
	}

	.sfta-journey-icon {
		font-size: 34px;
	}

	.sfta-journey-card h3 {
		font-size: 15px;
	}

	.sfta-journey-card h3 strong {
		font-size: 21px;
	}

	.sfta-mvv-card:last-child,
	.sfta-commit-card:last-child {
		grid-column: auto;
	}

	.sfta-mvv-card {
		min-height: auto;
		padding: 24px 20px;
	}

	.sfta-mvv-icon {
		width: 58px;
		height: 58px;
		flex: 0 0 58px;
		font-size: 27px;
	}

	.sfta-why-content {
		padding: 35px 0;
	}

	.sfta-why-content h2 {
		font-size: 25px;
	}

	.sfta-benefits {
		grid-template-columns: 1fr;
	}

	.sfta-tools-image,
	.sfta-tools-image img {
		min-height: 220px;
	}

	.sfta-tools-image::after {
		background: linear-gradient(180deg, #06386d 0%, rgba(6, 56, 109, .15) 50%, rgba(6, 56, 109, .03) 100%);
	}
}

@media (max-width: 480px) {
	.sfta-container {
		width: 91%;
	}

	.sfta-who-image {
		height: 215px;
	}

	.sfta-timeline,
	.sfta-values {
		grid-template-columns: 1fr;
	}

	.sfta-journey-card {
		min-height: auto;
		padding: 28px 22px;
	}

	.sfta-mvv-card,
	.sfta-commit-card {
		flex-direction: column;
	}
}
