.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 22px 0 28px;
}

.hero-badges span {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, .08);
    font-size: 14px;
}

.hero-trust-strip {
    background: #ffffff;
    border-bottom: 1px solid rgba(3, 196, 255, 0.12);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
    padding: 22px 0;
}

.hero-trust-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    text-align: center;
}

.hero-trust-item {
    border-radius: 12px;
    padding: 16px 12px;
    background: #f7fbff;
    border: 1px solid rgba(3, 196, 255, 0.14);
    color: #1d2b4f;
    font-weight: 700;
    font-size: 14px;
}

.hero-trust-item i {
    color: #03c4ff;
    margin-right: 6px;
}

@media only screen and (max-width: 991px) {
    .hero-trust-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 575px) {
    .hero-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


.proof-section {
    background: #ffffff;
}

.proof-card {
    height: 100%;
    padding: 32px 28px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(3, 196, 255, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(3, 196, 255, 0.16);
    border-color: rgba(3, 196, 255, 0.35);
}

.proof-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #09c6ff 0%, #008cff 100%);
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 10px 24px rgba(0, 140, 255, 0.24);
}

.proof-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
    color: #2d275e;
}

.proof-card p {
    margin-bottom: 18px;
}

.proof-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.proof-tags li {
    font-size: 13px;
    font-weight: 600;
    color: #1d2b4f;
    background: #f4f7fb;
    border-radius: 999px;
    padding: 7px 11px;
}

.tech-stack-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.tech-stack-list li {
    background: #f4f7fb;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    color: #1d2b4f;
}

.case-card-note {
    color: #6b7280;
    margin-top: 10px;
}

.home-inline-cta {
    margin-top: 28px;
}

.process-step {
    padding: 30px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .07);
    height: 100%;
}

.process-step span {
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 50%;
    text-align: center;
    background: #ff5d22;
    color: #fff;
    font-weight: 800;
    margin-bottom: 18px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.availability-box {
    background: #0b1736;
    color: #fff;
    padding: 34px;
    border-radius: 10px;
}

.availability-box h3,
.availability-box p {
    color: #fff;
}

.footer-list p,
.footer-nav-links a,
.footer-contact-list li,
.footer-contact-list a {
    color: #d9e2f1;
}
.process-section {
    background: #f7f9fc;
}

.process-step {
    border-radius: 14px;
    border: 1px solid rgba(3, 196, 255, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(3, 196, 255, 0.14);
    border-color: rgba(3, 196, 255, 0.35);
}

.process-step span {
    background: linear-gradient(135deg, #09c6ff 0%, #008cff 100%);
    box-shadow: 0 10px 24px rgba(0, 140, 255, 0.22);
}

.process-step p {
    margin-bottom: 0;
}

.final-cta-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 24px 0 30px;
    list-style: none;
}

.final-cta-list li {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 14px;
}

.final-cta-list i {
    color: #03c4ff;
    margin-right: 6px;
}

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

@media only screen and (max-width: 575px) {
    .final-cta-actions .default-btn,
    .final-cta-actions .default-btn-one {
        width: 100%;
        margin-right: 0;
    }
}

/* Services page polish */
.services-page-intro {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
}

.services-page-intro p {
    font-size: 16px;
    line-height: 1.8;
}

.single-services-two {
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
}

.single-services-two .services-two-img img {
    width: 100%;
    height: 235px;
    object-fit: cover;
}

.single-services-two .services-two-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.single-services-two .services-two-info p {
    flex: 1;
}

/* Good Fit interactive grid */
.service-fit-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    padding: 0 !important;
    margin: 28px 0 0 !important;
    list-style: none !important;
}

.service-fit-list li {
    margin: 0 !important;
    width: 100% !important;
    min-height: 88px;
    background: #ffffff;
    border-left: 2px solid #03c4ff;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    color: #2d275e;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: stretch;
    overflow: hidden;
}

.service-fit-list li span {
    width: 100%;
    min-height: 88px;
    padding: 18px 22px;
    display: flex !important;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    line-height: 1.45;
    background: transparent !important;
}

.service-fit-list li:hover,
.service-fit-list li.active {
    background: linear-gradient(135deg, #09c6ff 0%, #008cff 100%);
    color: #ffffff;
    border-left-color: transparent;
    box-shadow: 0 10px 28px rgba(0, 140, 255, 0.22);
    transform: translateY(-3px);
}

.service-fit-list li i {
    color: #03c4ff;
    transition: color 0.3s ease;
    flex: 0 0 auto;
}

.service-fit-list li:hover i,
.service-fit-list li.active i {
    color: #ffffff;
}

/* Good Fit image treatment */
.service-fit-image {
    max-width: 560px;
    margin-left: auto;
}

.service-fit-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.service-fit-image img.is-changing {
    opacity: 0;
    transform: scale(0.98);
}

.services-cta-box {
    background: #0b1736;
    border-radius: 16px;
    padding: 48px 38px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta-box h2,
.services-cta-box p {
    color: #ffffff;
}

.services-cta-box p {
    max-width: 760px;
    margin: 0 auto 26px;
}

@media only screen and (max-width: 991px) {
    .service-fit-image {
        max-width: 100%;
        margin: 35px auto 0;
    }

    .service-fit-image img {
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    .service-fit-list {
        grid-template-columns: 1fr !important;
    }

    .service-fit-list li,
    .service-fit-list li span {
        min-height: 76px;
    }
}

.service-fit-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center center;
    border-radius: 18px;
}

.engagement-fit-list {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 18px !important;
	padding: 0 !important;
	margin: 28px 0 0 !important;
	list-style: none !important;
}

.engagement-fit-list li {
	margin: 0 !important;
	min-height: 88px;
	width: 100% !important;
	background: #ffffff;
	border-left: 2px solid #03c4ff;
	border-radius: 10px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
	color: #2d275e;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
}

.engagement-fit-list li span {
	width: 100%;
	min-height: 88px;
	padding: 18px 22px;
	display: flex;
	align-items: center;
	gap: 10px;
	border-radius: 10px;
	line-height: 1.45;
}

.engagement-fit-list li:hover,
.engagement-fit-list li.active {
	background: linear-gradient(135deg, #09c6ff 0%, #008cff 100%);
	color: #ffffff;
	border-left-color: transparent;
	box-shadow: 0 10px 28px rgba(0, 140, 255, 0.22);
	transform: translateY(-3px);
}

.engagement-fit-list li i {
	color: #03c4ff;
	transition: color 0.3s ease;
}

.engagement-fit-list li:hover i,
.engagement-fit-list li.active i {
	color: #ffffff;
}

.engagement-image {
	max-width: 560px;
	margin-right: auto;
}

.engagement-image img {
	width: 100%;
	height: 380px;
	object-fit: contain;
	object-position: center;
	background: #061529;
	border-radius: 18px;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.engagement-image img.is-changing {
	opacity: 0;
	transform: scale(0.98);
}

@media only screen and (max-width: 767px) {
	.engagement-fit-list {
		grid-template-columns: 1fr !important;
	}

	.engagement-image img {
		height: auto;
	}
}
